/* ============================================================
   About Us — Hero (two-column: content left, image right)
   ============================================================ */

.huc-about-hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 2rem;
    background-color: var(--huc-white-clr);
}

.huc-about-hero-row {
    position: relative;
    z-index: 1;
}

/* ---- Content ---- */
.huc-about-hero-content {
    max-width: 34rem;
}

/* ---- Media ---- */
.huc-about-hero-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
}

.huc-about-hero-media__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.huc-about-hero-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--huc-orange-clr);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.huc-about-hero-title {
    margin: 0 0 1.25rem;
    font-family: var(--font-secondary);
    font-weight: 900;
    line-height: 1.25;
    font-size: clamp(1.75rem, 1.15rem + 2.6vw, 3rem);
    color: var(--huc-darkGray-clr);
}

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

.huc-about-hero-desc {
    max-width: 32rem;
    margin: 0 0 2rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--huc-gray-clr);
}

/* ---- Actions ---- */
.huc-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.huc-about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color var(--transition-base), color var(--transition-base),
        border-color var(--transition-base), transform var(--transition-base);
}

.huc-about-hero-btn:hover {
    transform: translateY(-2px);
}

.huc-about-hero-btn--primary {
    background-color: var(--huc-orange-clr);
    border: 1px solid var(--huc-orange-clr);
    color: var(--huc-white-clr);
}

.huc-about-hero-btn--primary:hover {
    background-color: var(--huc-orange-dark-clr);
    border-color: var(--huc-orange-dark-clr);
    color: var(--huc-white-clr);
}

.huc-about-hero-btn--outline {
    background-color: var(--huc-white-clr);
    border: 1.5px solid var(--huc-outline-stroke);
    color: var(--huc-darkGray-clr);
}

.huc-about-hero-btn--outline:hover {
    background-color: var(--huc-lightGray-clr);
    border-color: var(--huc-darkGray-clr);
    color: var(--huc-darkGray-clr);
}

/* ---- Stats bar (single unified bar, overlapping hero bottom) ---- */
.huc-about-hero-stats-wrap {
    position: relative;
    z-index: 2;
    padding-bottom: 2.5rem;
}

.huc-about-hero-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-radius: 20px;
    background-color: var(--huc-blue-clr);
    /* box-shadow: 0 20px 45px rgba(var(--huc-blue-rgb), 0.3); */
    overflow: hidden;
}

.huc-about-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.15rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.huc-about-hero-stat:last-child {
    border-right: none;
}

.huc-about-hero-stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--huc-orange-clr);
    color: var(--huc-blue-clr);
    font-size: 1.125rem;
}

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

.huc-about-hero-stat__body strong {
    font-size: 1.1875rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--huc-white-clr);
    white-space: nowrap;
}

.huc-about-hero-stat__body small {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

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

    .huc-about-hero-content {
        max-width: 100%;
    }

    .huc-about-hero-media {
        aspect-ratio: 16 / 10;
    }

    .huc-about-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .huc-about-hero-stat:nth-child(3n) {
        border-right: none;
    }

    .huc-about-hero-stat:not(:nth-last-child(-n+3)) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 575.98px) {
    .huc-about-hero-media {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .huc-about-hero-actions {
        flex-direction: column;
    }

    .huc-about-hero-btn {
        justify-content: center;
        width: 100%;
    }

    .huc-about-hero-stats-wrap {
        padding-bottom: 1.5rem;
    }

    .huc-about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 16px;
    }

    .huc-about-hero-stat {
        padding: 1.1rem 0.85rem;
        gap: 0.6rem;
    }

    .huc-about-hero-stat:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .huc-about-hero-stat:nth-child(2n) {
        border-right: none;
    }

    .huc-about-hero-stat:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .huc-about-hero-stat__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .huc-about-hero-stat__body strong {
        font-size: 1rem;
    }

    .huc-about-hero-stat__body small {
        font-size: 0.625rem;
        white-space: normal;
    }
}
