/* ============================================================
   Vehicle Categories — horizontal strip under the hero
   ============================================================ */

.huc-vehcat {
    padding: 1.25rem 0;
    max-width: 100%;
    overflow-x: clip;
}

/* Each item is its own rounded white card, in a single scrollable line. */
.huc-vehcat-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.huc-vehcat-strip::-webkit-scrollbar {
    display: none;
}

/* ---- Item ---- */
.huc-vehcat-item {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.4rem;
    min-width: 180px;
    padding: 0.45rem 0.4rem;
    background-color: var(--huc-lightGray-clr);
    border-radius: 12px;
}

.huc-vehcat-item__media {
    flex-shrink: 0;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.huc-vehcat-item__media img {
    width: 100%;
    height: 56px;
    object-fit: contain;
    display: block;
}

.huc-vehcat-item__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.huc-vehcat-item__title {
    margin: 0;
    font-size: 0.775rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--huc-darkGray-clr);
}

.huc-vehcat-item__line {
    font-size: 0.65rem;
    line-height: 1.35;
    color: var(--huc-gray-clr);
}

/* ---- Responsive ---- */
@media (max-width: 479.98px) {
    .huc-vehcat-item {
        min-width: 200px;
    }
}