/* ============================================================
   Shared section layout — spacing + title/heading/description
   Used by every homepage/content section for a consistent look.
   ============================================================ */

.huc-section {
    padding: var(--huc-section-space) 0;
    background-color: var(--huc-bg-clr);
}

.huc-section-head {
    max-width: 990px;
    margin: 0 auto 3rem;
    text-align: center;
}

.huc-section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.huc-section-eyebrow__line {
    flex: 0 0 auto;
    width: 32px;
    height: 1px;
    background-color: var(--huc-orange-clr);
}

.huc-section-eyebrow__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--huc-orange-clr);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.huc-section-title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.5rem, 1.1rem + 1.6vw, 6rem);
    font-family: var(--font-secondary);
    font-weight: 900;
    line-height: 1.25;
    color: var(--huc-darkGray-clr);
}

.huc-section-title__highlight {
    color: var(--huc-orange-clr);
}

.huc-section-subtitle {
    margin: 0;
    color: var(--huc-gray-clr);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-section {
        padding: var(--huc-section-space) 0;
    }
}

@media (max-width: 575.98px) {
    .huc-section-head {
        margin-bottom: 2.25rem;
    }

    .huc-section-title {
        font-size: 1.5rem;
    }

    .huc-section-subtitle {
        font-size: 0.875rem;
    }

    .huc-section-eyebrow__line {
        width: 20px;
    }
}
