/* ============================================================
   Our Values — heading + 3 icon/title/desc rows on the left,
   a rounded photo with a trust badge on the right.
   ============================================================ */

.huc-values-title {
    margin-bottom: 2rem;
    font-size: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);
    font-weight: 800;
    color: var(--huc-darkGray-clr);
}

.huc-values-title span {
    color: var(--huc-orange-clr);
}

.huc-values-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.huc-values-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.huc-values-item__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    color: var(--huc-darkGray-clr);
}

.huc-values-item__title {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--huc-orange-clr);
}

.huc-values-item__desc {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--huc-gray-clr);
}

/* ---- Right: photo ---- */
.huc-values-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 16px 40px rgba(var(--huc-blue-rgb), 0.14); */
}

.huc-values-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.huc-values-media__badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background-color: var(--huc-white-clr);
    box-shadow: 0 8px 20px rgba(var(--huc-blue-rgb), 0.2);
    color: var(--huc-darkGray-clr);
    font-size: 0.75rem;
    font-weight: 700;
}

.huc-values-media__badge i {
    color: var(--huc-orange-clr);
    font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-values-title {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .huc-values-media {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .huc-values-list {
        gap: 1.25rem;
    }

    .huc-values-item__icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .huc-values-item__title {
        font-size: 0.9375rem;
    }

    .huc-values-item__desc {
        font-size: 0.8rem;
    }

    .huc-values-media__badge {
        font-size: 0.68rem;
        padding: 0.4rem 0.75rem;
    }
}
