.page-articles {
  .page-articles__page-banner {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    .page-articles--banner-image {
      position: absolute;
      top: 0;
      height: 600px;
      > picture > img {
        object-fit: cover;
        width: auto;
        height: 600px;
      }
    }
    .page-articles--image-overlay {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 78.84%, rgba(255, 255, 255, 0) 100%);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 5;
      display: none;
    }
    .page-articles--head {
      z-index: 10;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding: 0 1rem;
      max-width: 77rem;
      width: 100%;
      margin: 0 auto;
      .page-articles--title {
        border-radius: 8px;
        background: var(--orange);
        color: var(--white);
        padding: 0 1rem;
        font-family: var(--font-family-poppins);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 37.24px; /* 266% */
        letter-spacing: 1px;
        text-transform: uppercase;
      }
      .page-articles--subtitle {
        color: var(--white);
        font-family: var(--font-family-poppins);
        font-size: 2rem;
        font-style: normal;
        font-weight: 700;
        line-height: 60px; /* 187.5% */
      }
      .page-articles--description {
        width: 20rem;
        p {
          color: var(--white);
          text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
          font-family: var(--font-family-poppins);
          font-size: 1rem;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }
      }
    }
  }
  .page-articles--algolia-content {
    padding: 0 1rem;
    margin-bottom: 3.69rem;
    .articles-list--list.articles {
      display: flex;
      min-height: 21.6rem;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      margin: 0 auto;
      .articles-list--card-article {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        align-self: stretch;
        border-radius: 0.5rem;
        background: #fff;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12);
        transition: background-color var(--transition-time, 0.2s);
        overflow: hidden;
        .articles-list--card-article--article {
          display: flex;
          flex-direction: column;
          gap: 1.5rem;
          align-self: stretch;
          picture > img {
            width: 100%;
            height: auto;
          }

          .articles-list--card-article--content {
            display: flex;
            min-height: 14.688rem;
            padding: 0 1.5rem;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            align-self: stretch;
            .articles-list--card-article--title-summary {
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: flex-start;
              gap: 0.5rem;
              align-self: stretch;
              margin-bottom: auto;
              .articles-list--card-article--title {
                color: var(--blue8);
                font-family: var(--font-family-poppins);
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
                line-height: normal;
              }
              .articles-list--card-article--summary {
                color: var(--grey);
                font-family: var(--font-family-poppins);
                font-size: 1rem;
                font-style: normal;
                font-weight: 400;
                line-height: 1.5rem; /* 150% */
              }
            }
            .articles-list--card-article--cta {
              display: flex;
              padding: 0.5rem 1rem;
              justify-content: center;
              align-items: center;
              gap: 0.625rem;
              align-self: stretch;
              border-radius: 0.5rem;
              background: var(--blue8);
              color: var(--white);
              text-align: center;
              font-family: var(--font-family-poppins);
              font-size: 1rem;
              font-style: normal;
              font-weight: 600;
              line-height: normal;
              margin-bottom: 1rem;
              &:hover {
                background-color: var(--blue7);
                border-color: var(--blue7);
              }
            }
          }
        }
      }
    }
  }
}
@media (min-width: 64rem) {
  .pageGeneric.page-articles {
    margin-bottom: 3.06rem;
    .page-articles__page-banner {
      .page-articles--banner-image {
        > picture > img {
          height: auto;
          width: 100vw;
          min-height: 600px;
          object-fit: cover;
          max-width: none;
        }
      }
      .page-articles--head {
        .page-articles--subtitle {
          font-size: 3rem;
          font-style: normal;
          font-weight: 700;
          line-height: 3.75rem; /* 125% */
        }
        .page-articles--description {
          width: 41.25rem;
          p {
            font-size: 1.25rem;
            font-style: normal;
            font-weight: 400;
            line-height: 2rem; /* 160% */
          }
        }
      }
    }

    .page-articles--algolia-content {
      max-width: 77rem;
      width: 100%;
      margin: 0 auto;
      .articles-list--list.articles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        .articles-list--card-article {
          .articles-list--card-article--article {
            .articles-list--card-article--content {
              .articles-list--card-article--title-summary {
                gap: 1.66rem;
              }
            }
          }
        }
      }
    }
  }
}
