.about-section__copy {
    position: absolute;
    top: clamp(72px, 12vh, 140px);
    right: clamp(24px, 4vw, 56px);
    left: clamp(24px, 4vw, 48px);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(20px, 3vh, 32px);
    pointer-events: none;
}

.about-section__rotator {
    position: relative;
    width: min(720px, 100%);
    font-size: clamp(22px, 3.2vw, 42px);
    line-height: 1.35;
    min-height: calc(1.35em * 1);
    max-height: calc(1.35em * 4);
    overflow: hidden;
}

.about-section__slide--measure {
    position: relative;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    inset: auto;
}

.about-section__slide {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    margin: 0;
    padding: 0;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: inherit;
    font-weight: 300;
    line-height: inherit;
    letter-spacing: -0.03em;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity, filter;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-section__slide.is-active {
    visibility: visible;
}

.about-section__slide em {
    font-style: normal;
    font-weight: 500;
    color: #111;
}

.about-section__progress {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    width: min(400px, 100%);
}

.about-section__progress-item {
    flex: 1 1 0;
    min-width: 14px;
    height: 2px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.12);
    overflow: hidden;
    transition: flex 0.45s ease;
}

.about-section__progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: #111;
    border-radius: inherit;
    transform-origin: right center;
    will-change: width;
}

@media (max-width: 768px) {
    .about-section__copy {
        top: clamp(56px, 10vh, 96px);
    }

    .about-section__rotator {
        font-size: clamp(18px, 5.2vw, 28px);
        line-height: 1.4;
        min-height: calc(1.4em * 1);
        max-height: calc(1.4em * 4);
    }

}

@media (prefers-reduced-motion: reduce) {
    .about-section__slide {
        transition: none;
    }
}
