/* ============================================================
   Explore HurryUp — bold heading + 3x2 grid of light cards, each
   with a title, short description, "Details" button, and an icon
   sitting to the right.
   ============================================================ */

.huc-explore {
    --huc-explore-accent: var(--huc-accent-clr);
}

.huc-explore-title {
    margin-bottom: 1.75rem;
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--huc-darkGray-clr);
}

.huc-explore-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    height: 100%;
    padding: 1.25rem;
    border-radius: 14px;
    background-color: var(--huc-lightGray-clr);
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.huc-explore-item:hover {
    box-shadow: 0 10px 24px rgba(var(--huc-blue-rgb), 0.08);
}

.huc-explore-item__body {
    min-width: 0;
    flex: 1 1 auto;
}

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

.huc-explore-item__desc {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--huc-gray-clr);
}

.huc-explore-item__btn {
    padding: 0.45rem 1.1rem;
    border: 1.5px solid var(--huc-darkGray-clr);
    border-radius: 999px;
    background-color: transparent;
    color: var(--huc-darkGray-clr);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.huc-explore-item__btn:hover {
    background-color: var(--huc-explore-accent);
    border-color: var(--huc-explore-accent);
    color: var(--huc-white-clr);
}

.huc-explore-item__media {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 84px;
}

.huc-explore-item__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-explore-item__media {
        width: 88px;
        height: 68px;
    }
}

@media (max-width: 575.98px) {
    .huc-explore-title {
        margin-bottom: 1.25rem;
    }

    .huc-explore-item {
        padding: 1rem;
    }

    .huc-explore-item__media {
        width: 72px;
        height: 56px;
    }

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

    .huc-explore-item__desc {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}
