/**
 * what_we_do_section.css — cream BG, heading band, hero graphic, 3 pillars.
 */

.ncm-what-we-do {
    padding: clamp(3.750rem, calc(-0.536rem + 8.929vw), 7.500rem) 0;
    background-color: var(--clr-bg-warm);
    color: var(--clr-text);
    min-height: 994px;
}

.ncm-what-we-do__inner {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.ncm-what-we-do__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 102px;
    align-items: flex-start;
}

.ncm-what-we-do__title {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -0.02em;
    color: var(--clr-text);
}

.ncm-what-we-do__head-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.ncm-what-we-do__description p {
    margin: 0 0 30px;
}

.ncm-what-we-do__graphic {
    margin: 0;
    width: 100%;
    display: block;
    text-align: center;
}

.ncm-what-we-do__graphic img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    mix-blend-mode: multiply;
}

/* 3-column pillars */
.ncm-what-we-do__pillars {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ncm-what-we-do__pillar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
}

.ncm-what-we-do__pillar-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: var(--clr-bg-dark);
    color: var(--clr-fg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 24px;
}

.ncm-what-we-do__pillar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.ncm-what-we-do__pillar-num {
    font-family: var(--ff-display);
    font-weight: 400;
}

.ncm-what-we-do__pillar-title {
    font-family: var(--ff-primary);
    font-weight: 700;
    font-size: 21px;
    line-height: 28px;
    color: var(--clr-text);
    margin-bottom: 20px;
}

.ncm-what-we-do__pillar-details {
    border-top: 1px solid #2F3E3480;
    padding-top: 30px;
}

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

.ncm-what-we-do__pillar-desc p {
    margin: 0;
}

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

    .ncm-what-we-do__head {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ncm-what-we-do__inner {
        gap: 80px;
    }

    .ncm-what-we-do__pillars {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 767px) {
    

    .ncm-what-we-do__title {
        font-size: 32px;
        line-height: 38px;
    }

    .ncm-what-we-do__subtitle {
        font-size: 20px;
        line-height: 26px;
    }

    .ncm-what-we-do__description,
    .ncm-what-we-do__pillar-desc {
        font-size: 17px;
        line-height: 24px;
    }

    .ncm-what-we-do__inner {
        gap: 56px;
    }
}