.section-editorial-cta {
    background: #ffffff;
    color: #0a0a0a;
    /* padding: clamp(4rem, 10vw, 9rem) clamp(1.25rem, 5vw, 4rem); */
    position: relative;
    overflow: hidden;
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Will position it over previous section during animation */
    z-index: 5;
}

.cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ---------------- Label ---------------- */
.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
    color: #0a0a0a;
    margin: 0 0 clamp(4rem, 8vw, 6rem);
}

.cta-label__divider {
    color: #8a8a8a;
}

/* ---------------- Headline ---------------- */
.cta-headline {
    font-weight: 800;
    font-size: clamp(2rem, 10vw, 11rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 clamp(2rem, 10vw, 1rem);
    display: flex;
    flex-direction: column;
}

.cta-line-wrap {
    overflow: hidden;
    perspective: 400px;
}

.cta-headline [data-cta="line"] {
    display: block;
}

.cta-line-wrap:nth-child(1) {
    align-self: flex-start;
}

.cta-line-wrap:nth-child(2) {
    align-self: flex-start;
    margin-left: 10vw;
}

.cta-line-wrap:nth-child(3) {
    align-self: flex-end;
    margin-right: 25vw;
}

.cta-line-wrap:nth-child(4) {
    align-self: flex-end;
}

.cta-line {
    display: block;
}

/* ---------------- Footer ---------------- */
.cta-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #e0e0e0;
    padding-top: clamp(2rem, 5vw, 4rem);
}



.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-radius: 50px;
    padding: 1em 2em;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #0a0a0a;
    color: #ffffff;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
    .cta-line-wrap:nth-child(2) {
        margin-left: 8vw;
    }

    .cta-headline {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .cta-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-line-wrap:nth-child(2) {
        margin-left: 15vw;
    }

}

@media (max-width: 480px) {


    .cta-line-wrap:nth-child(2) {
        margin-left: 10vw;
    }

}