/* ============================================
   NCA INTEREST GROUPS - HERO HEADER
   ============================================ */

.nca-hero {
    background-color: #2d2b2e;
    border-bottom: 3px solid #c9a86c;
    padding: 60px 0 48px;
    width: 100%;
}

.nca-hero__container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Eyebrow Label --- */
.nca-hero__eyebrow {
    font-family: "Futura", "Century Gothic", Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a86c;
    margin-bottom: 16px;
}

/* --- Main Title --- */
.nca-hero__title {
    font-family: "Futura", "Century Gothic", Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* --- Gold Divider Line --- */
.nca-hero__divider {
    width: 60px;
    height: 3px;
    background-color: #c9a86c;
    margin-bottom: 24px;
}

/* --- Intro Paragraph (larger) --- */
.nca-hero__intro {
    font-family: "Futura", "Century Gothic", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

/* --- Body Paragraphs --- */
.nca-hero__body p {
    font-family: "Futura", "Century Gothic", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.nca-hero__body p:last-child {
    margin-bottom: 0;
}

/* --- CTA Button Row --- */
.nca-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

/* --- Base Button --- */
.nca-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: "Futura", "Century Gothic", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* --- Primary Button (Gold fill) --- */
.nca-hero__btn--primary {
    background-color: #c9a86c;
    color: #2d2b2e;
    border: 1px solid #c9a86c;
}

.nca-hero__btn--primary:hover {
    background-color: #b8986a;
    border-color: #b8986a;
    color: #2d2b2e;
}

/* --- Secondary Button (Outline) --- */
.nca-hero__btn--secondary {
    background-color: transparent;
    color: #c9a86c;
    border: 1px solid #c9a86c;
}

.nca-hero__btn--secondary:hover {
    background-color: #c9a86c;
    color: #2d2b2e;
}

/* --- Button Arrow --- */
.nca-hero__btn-arrow {
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nca-hero {
        padding: 40px 0 32px;
    }

    .nca-hero__title {
        font-size: 1.5rem;
    }

    .nca-hero__cta-row {
        flex-direction: column;
    }

    .nca-hero__btn {
        width: 100%;
        justify-content: center;
    }
}
