/* ============================================================
   Service Highlights — 4-up photo cards
   ============================================================ */

.huc-sh__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

.huc-sh__title-main {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
    font-weight: 900;
    color: var(--huc-darkGray-clr);
    text-align: center;
}

/* ---- Card ---- */
.huc-sh__card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--huc-lightGray-clr);
    box-shadow: 0 10px 26px rgba(var(--huc-blue-rgb), 0.1);
}

.huc-sh__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.huc-sh__card:hover .huc-sh__img {
    transform: scale(1.06);
}

.huc-sh__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(var(--huc-blue-rgb), 0.92) 0%,
            rgba(var(--huc-blue-rgb), 0.35) 45%,
            rgba(var(--huc-blue-rgb), 0) 75%);
}

.huc-sh__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.1rem;
}

.huc-sh__text {
    min-width: 0;
}

.huc-sh__title {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--huc-white-clr);
}

.huc-sh__desc {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.huc-sh__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--huc-orange-clr);
    color: var(--huc-white-clr);
    font-size: 0.9375rem;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.huc-sh__arrow:hover {
    background-color: var(--huc-orange-dark-clr);
    transform: translateX(2px);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .huc-sh__card {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 575.98px) {
    .huc-sh__head {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .huc-sh__line {
        width: 24px;
    }

    .huc-sh__card {
        aspect-ratio: 16 / 10;
    }

    .huc-sh__content {
        padding: 0.9rem;
    }

    .huc-sh__title {
        font-size: 0.9375rem;
    }

    .huc-sh__desc {
        font-size: 0.7rem;
    }

    .huc-sh__arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8125rem;
    }
}
