/**
 * The base file that should be imported by every file.
 * There should be no CSS generation in this or from imported scss files at all!
 */
/**
 * Library
 */
/**
 * Variables and functions
 */
.card-item {
  display: flex;
  flex-direction: column;
  position: relative; }
  .card-item .card-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    height: 45px;
    width: 45px;
    z-index: 1; }
    .card-item .card-icon img {
      height: 100%;
      width: 100%; }
  .card-item .image-overlay {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    margin: 0; }
    .card-item .image-overlay:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 180px;
      width: 100%;
      background: linear-gradient(transparent, var(--white)); }
    .card-item .image-overlay img {
      height: 100%;
      width: 100%;
      position: absolute;
      inset: 0;
      -o-object-fit: cover;
         object-fit: cover;
      transform: scale(1);
      transition: transform .3s ease-in-out; }
  .card-item .content {
    padding: .75em .75em 2em;
    flex: 2;
    position: relative;
    width: 100%;
    background-color: var(--white); }
    @media (min-width: 981px) {
      .card-item .content {
        flex: 1;
        padding: 30px 30px 90px; } }
    .card-item .content .content-wrapper {
      display: flex;
      height: 100%;
      flex-direction: column;
      gap: 15px; }
      .card-item .content .content-wrapper h3 {
        margin: 0;
        padding: 0;
        word-break: break-word; }
      .card-item .content .content-wrapper p {
        margin-top: 15px;
        margin-bottom: 0; }
      .card-item .content .content-wrapper .call-to-action {
        position: absolute;
        z-index: 1;
        bottom: 15px;
        right: 15px;
        transition: transform .3s ease-in-out; }
        @media (min-width: 981px) {
          .card-item .content .content-wrapper .call-to-action {
            bottom: 30px;
            right: 30px; } }
        @media (min-width: 981px) {
          .card-item .content .content-wrapper .call-to-action a {
            font-size: 27px; } }
  .card-item:hover .image-overlay img {
    transform: scale(1.1); }
  .card-item:hover h3 a {
    text-decoration: none; }
  .card-item:hover .call-to-action {
    transform: translateX(10px); }
    .card-item:hover .call-to-action a {
      text-decoration: none; }
  .card-item.blue .image-overlay:after {
    background: linear-gradient(transparent, var(--dark-blue)); }
  .card-item.blue .content {
    background-color: var(--dark-blue);
    color: var(--white); }
    .card-item.blue .content h3 {
      color: var(--white); }
      .card-item.blue .content h3 a {
        color: var(--white); }
    .card-item.blue .content .call-to-action a {
      color: var(--white); }
  .card-item.green .image-overlay:after {
    background: linear-gradient(transparent, var(--green)); }
  .card-item.green .content {
    background-color: var(--green); }

.card-item .image-overlay:after {
  height: 40px; }
  @media (min-width: 981px) {
    .card-item .image-overlay:after {
      height: 180px; } }

.card-item:first-of-type .image-overlay:after {
  height: 180px; }

.post-item {
  flex-direction: row;
  position: relative; }
  @media (min-width: 981px) {
    .post-item {
      flex-direction: column; } }
  .post-item .icon {
    height: 15px;
    width: 15px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 999; }
    @media (min-width: 981px) {
      .post-item .icon {
        height: 50px;
        width: 50px;
        top: 30px;
        left: 30px; } }
  .post-item .image-overlay {
    padding: 0;
    flex: 1.5; }
    @media (min-width: 981px) {
      .post-item .image-overlay {
        padding-top: 100%;
        flex: none; } }
  @media (min-width: 981px) {
    .post-item .content {
      padding: 15px 30px 60px; } }
  .post-item .content .upper-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .post-item .content .upper-info .date {
      flex-basis: 100%;
      color: var(--green);
      font-family: "JetBrains Mono", Helvetica, Arial, sans-serif;
      font-size: 12px; }
      @media (min-width: 768px) {
        .post-item .content .upper-info .date {
          font-size: 14px; } }
  .post-item:first-of-type {
    flex-direction: column; }
    @media (min-width: 981px) {
      .post-item:first-of-type {
        margin-bottom: 45px;
        grid-column: span 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 500px; } }
    .post-item:first-of-type .image-overlay {
      flex: none;
      padding-top: inherit; }
      .post-item:first-of-type .image-overlay:after {
        background: linear-gradient(transparent, var(--white)); }
    .post-item:first-of-type .content {
      padding: 45px;
      background-color: var(--white);
      color: var(--dark-blue); }
      .post-item:first-of-type .content .date {
        color: var(--dark-blue); }
      .post-item:first-of-type .content h3 {
        font-size: 22px;
        line-height: 24px; }
        .post-item:first-of-type .content h3 a {
          color: var(--dark-blue); }
        @media (min-width: 981px) {
          .post-item:first-of-type .content h3 {
            font-size: 32px;
            line-height: 32px; } }
      .post-item:first-of-type .content .call-to-action a {
        color: var(--dark-blue); }

/*# sourceMappingURL=item.css.map */
