.cosamirai-about-hero {
  padding-top: 6.125rem;
  color: var(--c-oak-text);

  .inner {
    display: flex;
    flex-direction: column;

    .first-row {
      display: flex;
      gap: 1.875rem;

      .title-wrapper {
        padding-top: 10.5rem;
        padding-left: 9.375rem;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;

        .subtitle {
          margin-bottom: 0;
          font-family: "PP Fragment Sans", sans-serif;
          font-size: var(--fs-L-Overline-L);
          font-weight: 300;
          line-height: 1.2;
        }

        .title {
          margin-bottom: 0;
          font-size: var(--fs-L-H1-M);
          font-family: "PP Fragment Glare", sans-serif;
          font-weight: 300;
          line-height: 1.2;
        }
      }

      .top-right-image-container {
        width: 50%;
        flex-shrink: 0;
        aspect-ratio: 1 / 1.08;
        overflow: hidden;
        --scroll-progress: 0;

        img {
          width: 100%;
          height: 124%;
          object-fit: cover;
          object-position: 50%;
          transform: translateY(calc(-12% + var(--scroll-progress) * 12%));
          will-change: transform;
          transition: none;
        }
      }

      .text {
        font-size: var(--fs-L-body-Regular);
        line-height: 1.6;
      }
    }

    .second-row {
      margin-top: -6.625rem;
      display: flex;
      gap: 12.375rem;

      .bottom-left-image-container {
        width: 30%;
        flex-shrink: 0;
        aspect-ratio: 1 / 1.9;
        overflow: hidden;
        --scroll-progress: 0;

        img {
          width: 100%;
          height: 124%;
          object-fit: cover;
          object-position: 50%;
          transform: translateY(calc(-12% + var(--scroll-progress) * 12%));
          will-change: transform;
          transition: none;
        }
      }

      .text {
        margin: 20.5rem 9.375rem 6rem 0;
        font-size: var(--fs-L-body-M);
        line-height: 1.6;

        :not(:last-child) {
          margin-bottom: 2.2em;
        }
      }
    }
  }
}

@media (max-width: 1330px) {
  .cosamirai-about-hero {
    .inner {
      gap: 1.5rem;

      .first-row {
        .title-wrapper {
          padding-top: 4rem;
          padding-left: 4rem;
        }
      }

      .second-row {
        margin-top: 0;
        gap: 8.375rem;

        .text {
          margin: 5rem 4.375rem 6rem 0;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .cosamirai-about-hero {
    .inner {
      .first-row {
        flex-direction: column-reverse;
        gap: 3.25rem;

        .top-right-image-container {
          width: 100%;
          aspect-ratio: 1.8 / 1;
        }

        .title-wrapper {
          padding: 0 1.5rem;
          gap: 1rem;

          .subtitle {
            font-size: var(--fs-L-H4-SM);
            line-height: 1.4;
            font-weight: 400;
          }

          .title {
            font-size: var(--fs-S-H1-SM);
            line-height: 1.3;
          }
        }
      }

      .second-row {
        margin-top: 0;
        flex-direction: column-reverse;
        gap: 5rem;

        .text {
          margin: 0;
          padding: 2.5rem 1.5rem 0;
          font-size: var(--fs-L-body-Regular);
        }

        .bottom-left-image-container {
          width: 75%;
          margin-bottom: 2.5rem;
          aspect-ratio: 1.2 / 1;
        }
      }
    }
  }
}
