/* ============================================================
   Feature Cards — 4-up service highlights row
   ============================================================ */

.huc-features {
    --huc-features-accent: var(--huc-accent-clr);
    --huc-features-card-bg: color-mix(in srgb, var(--huc-darkGray-clr) 5%, var(--huc-white-clr));
    --huc-features-border: color-mix(in srgb, var(--huc-darkGray-clr) 8%, transparent);
    --huc-features-icon-bg: var(--huc-white-clr);
}

/* ---- Card ---- */
.huc-features__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    border-radius: 20px;
    background-color: var(--huc-features-card-bg);
    border: 1px solid var(--huc-features-border);
}

/* ---- Head: title + icon ---- */
.huc-features__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

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

.huc-features__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--huc-features-icon-bg);
    color: var(--huc-darkGray-clr);
    font-size: 1rem;
    box-shadow: 0 6px 16px rgba(var(--huc-blue-rgb), 0.08);
}

/* ---- Text ---- */
.huc-features__text {
    margin: 0 0 1rem;
    font-size: 0.8375rem;
    line-height: 1.65;
    color: var(--huc-gray-clr);
}

/* ---- Button (pinned to bottom for equal-height cards) ---- */
.huc-features__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.525rem 1rem;
    border-radius: 999px;
    background-color: var(--huc-white-clr);
    color: var(--huc-darkGray-clr);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(var(--huc-blue-rgb), 0.06);
}

.huc-features__btn i {
    font-size: 0.875rem;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-features__card {
        padding: 1.1rem;
    }

    .huc-features__head {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .huc-features__title {
        font-size: 0.82rem;
    }

    .huc-features__icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .huc-features__text {
        margin-bottom: 0.75rem;
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .huc-features__btn {
        width: 100%;
        justify-content: center;
        padding: 0.4rem 0.65rem;
        font-size: 0.75rem;
    }
}
