/* Hummingbird Editor — category listing bundle. CSS vars (--hbe-*) come from front.css (always loaded). */

/* ── Listing banner (category page, after 2nd product row) ─────────────────── */
.hbe-listban {
    position: relative;
    overflow: hidden;
}
.hbe-listban__img,
.hbe-listban picture img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hbe-listban__overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.hbe-listban__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 400;
    line-height: 1.2;
    color: var(--hbe-white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.hbe-listban__cta {
    display: inline-block;
    padding: 0.5rem 0.875rem;
    font-family: var(--font-body);
    font-size: var(--fs-body-xs);
    font-weight: 400;
    line-height: 1;
    color: var(--hbe-black);
    text-decoration: none;
    background: var(--hbe-white);
    border: 0;
    transition: opacity 0.2s;
}
.hbe-listban__cta:hover,
.hbe-listban__cta:focus {
    color: var(--hbe-black);
    opacity: 0.85;
}
.hbe-listban__link {
    position: absolute;
    inset: 0;
    z-index: 2;
}
@media (min-width: 768px) {
    .hbe-listban__overlay {
        bottom: 2rem;
        left: 2rem;
    }
    .hbe-listban__title {
        font-size: var(--fs-h3);
    }
}
