/* ============================================================
   Content Hero Section
   ============================================================ */

.huc-content-hero {
    --huc-content-hero-accent: var(--huc-accent-clr);
    --huc-content-hero-border: color-mix(in srgb, var(--huc-darkGray-clr) 10%, transparent);

    position: relative;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background-color: var(--huc-bg-clr);
    overflow: hidden;
}

.huc-content-hero>.container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ---- Left column ---- */
.huc-content-hero-title {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 1.15rem + 2.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--huc-darkGray-clr);
}

.huc-content-hero-desc {
    max-width: 98%;
    color: var(--huc-gray-clr);
    font-size: 0.93rem;
    line-height: 1.6;
    font-weight: 500;
    text-align: justify;
}

.huc_content_ckeditor-card p {
    color: var(--huc-gray-clr) !important;
}

.huc-content-hero-desc p {
    margin-bottom: 1rem;
}

.huc-content-hero-desc p:last-child {
    margin-bottom: 0;
}

/* ---- Hero features ---- */
.huc-hero-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.2rem;
    margin-top: 1.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.huc-hero-features::-webkit-scrollbar {
    display: none;
}

.huc-hero-feature {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    /* background-color: var(--huc-lightGray-clr); */
    border-radius: 3rem;
    transition: var(--transition-base);
}

.huc-hero-feature__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 20%;
    background-color: var(--huc-lightGray-clr);
    color: var(--huc-black-clr);
    font-size: 1rem;
}

.huc-hero-feature__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.huc-hero-feature__text strong {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--huc-black-clr);
    white-space: nowrap;
}

.huc-hero-feature__text small {
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--huc-gray-clr);
    white-space: nowrap;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-content-hero {
        padding: 2rem 0;
    }
}

@media (max-width: 575.98px) {
    .huc-content-hero-title {
        font-size: 1.75rem;
    }

    .huc-content-hero-desc {
        font-size: 0.875rem;
    }

    .huc-hero-features {
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .huc-hero-feature {
        gap: 0.5rem;
        padding: 0.3rem 0.8rem 0.3rem 0.3rem;
    }

    .huc-hero-feature__icon {
        width: 1.9rem;
        height: 1.9rem;
        font-size: 0.875rem;
    }

    .huc-hero-feature__text strong {
        font-size: 0.75rem;
    }

    .huc-hero-feature__text small {
        font-size: 0.625rem;
    }
}