/**
 * vital_and_to_the_section.css — centered serif heading + 2-col /collage.
 */

.ncm-vital {
    padding: clamp(3.750rem, calc(-0.536rem + 8.929vw), 7.500rem) 0;
    background: linear-gradient(180deg, #FCFAF8 50%, var(--clr-bg-warm) 100%);
    padding-bottom: 0;
}

.ncm-vital__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(2.500rem, calc(0.174rem + 4.845vw), 5.625rem);
    padding-bottom: clamp(3.750rem, calc(-0.536rem + 8.929vw), 7.500rem);
    border-bottom: 1px solid #2F3E3480;
}

.ncm-vital__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2.375rem, calc(1.661rem + 1.488vw), 3.000rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    text-align: center;
    margin: 0;
}

.ncm-vital__heading span {
    font-family: 'Marcellus', serif;
    font-weight: inherit;
    font-size: 0.92em;
    display: inline-block;
}

.ncm-vital__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.500rem, calc(-0.384rem + 6.008vw), 6.375rem);
    align-items: flex-start;
}

.ncm-vital__col-left {
    display: flex;
    flex-direction: column;
    gap: clamp(1.875rem, calc(1.410rem + 0.969vw), 2.500rem);
    max-width: 497px;
}

.ncm-vital__col-right {
    position: relative;
    min-height: 548px;
    margin: 0 auto;
    width: 100%;
}

.ncm-vital__intro {
    font-family: var(--ff-primary);
    font-weight: 400;
    font-size: 21px;
    line-height: 28px;
    color: var(--clr-text);
}

.ncm-vital__intro p {
    margin: 0 0 20px;
}

.ncm-vital__followup {
    font-family: var(--ff-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--clr-text);
}

.ncm-vital__followup p {
    margin: 0 0 16px;
}

.ncm-vital__cta {
    align-self: flex-start;
}

/* Collage sizing — primary 442x548; secondary 271x336 overlapping bottom-left */
.ncm-vital .ncm-collage {
    height: 548px;
    width: 621px;
    margin: 0 auto;
}

.ncm-vital .ncm-collage__primary {
    width: 442px;
    margin-left: auto;
    height: 100%;
}

.ncm-vital .ncm-collage__primary img {
    height: 100%;
    object-position: 0% 9%;
}

.ncm-vital .ncm-collage__secondary {
    width: 271px;
    bottom: 48px;
    left: 0;
}

.ncm-vital .ncm-collage__secondary img {
    aspect-ratio: 271 / 336;
    object-position: 0% 9%;
}


@media (max-width: 1024px) {
    .ncm-vital {
        min-height: auto;
    }

    .ncm-vital__col-left {
        max-width: 100%;
        width: 100%;
    }

    .ncm-vital .ncm-collage__primary {
        width: 100%;
        max-width: 442px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .ncm-vital__row{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    

    .ncm-vital__intro {
        font-size: 17px;
        line-height: 24px;
    }

    .ncm-vital__followup {
        font-size: 20px;
        line-height: 26px;
    }


    .ncm-vital .ncm-collage {
        height: auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .ncm-vital .ncm-collage__primary {
        height: auto;
        aspect-ratio: 442 / 548;
    }

    .ncm-vital .ncm-collage__primary img {
        height: 100%;
    }
}