.editorial-block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  * {
    font-family: Figtree, sans-serif;
  }
  @media (max-width: 768px) {
    padding: 0 15px;
  }
  .editorial-block__inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
    > * {
      flex: 1;
      width: 50%;
    }
    @media (max-width: 768px) {
      gap: 15px;
    }
    &.stacked-on-mobile {
      @media (max-width: 768px) {
      flex-direction: column;
      gap: 0;
      img {
        // aspect-ratio: 16/9;
        object-position: top center;
        object-fit: cover;
      }
      > * {
        width: 100%;
      }
    }
    }
  }
  .editorial-block__image {
    display: flex;
    flex-direction: column;
    .editorial-block__title {
      background-color: #0b2a4b;
      padding: 20px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      h2 {
        font-size: 32px;
        font-weight: 600;
        margin: 0;
        color: white;
        font-family: var(--font-body-bold);
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
        a {
          color: white;
          text-decoration: none;
        }
      }
      p {
        font-size: 16px;
        font-weight: 400;
        margin: 0;
        color: #e19bbc;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
        margin: 0;
      }
    }
    @media (max-width: 768px) {
      .editorial-block__title {
        h2 {
          font-size: 18px;
          text-align: center;
          line-height: 1.2;
          margin-top: 10px;
        }
        p {
          font-size: 14px;
          text-align: center;
        }
      }
    }
    img {
      aspect-ratio: 4.5/5;
      width: 100%;
      object-fit: cover;
      object-position: top center;
    }
  }
  .editorial-block__quotes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    p {
      font-family: Quarto Light, sans-serif;
      font-size: 28px;
      max-width: 450px;
      margin: 0 auto;
      a {
        color: #e19bbc;
        font-size: 20px;
        text-transform: uppercase;
        font-family: var(--font-body-bold);
        letter-spacing: 1px;
      }
    }
    @media (max-width: 768px) {
      padding-top: 0;
      padding-bottom: 25px;
      gap: 10px;
      p {
        max-width: 300px;
        font-size: 16px;
        line-height: 1.2;
        a {
          font-size: 14px;
          display: none;
        }
      }
    }
  }
  .editorial-block__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    padding: 50px;
    * {
      font-size: 16px;
    }
    @media (max-width: 768px) {
      padding: 15px;
    }
  }
}