/* Merkpagina's (docs/MERKPAGINAS_SPEC.md): het overzicht /brand en de
   kleine extra's op /brand/<slug>. De rest komt uit category.css. */

.brand-page__leeg {
    color: var(--ub-grey-medium);
    margin: 24px 0;
}

/* Overzicht: tegels met logo of naam, natuurlijke verhouding, geen balken. */
.brand-index__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 8px 0 40px;
}

.brand-index__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 16px 16px;
    border: 1.5px solid var(--ub-grey-ultralight);
    border-radius: 12px;
    background: var(--ub-white);
    text-decoration: none;
    color: var(--ub-navy);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.brand-index__tile:hover {
    border-color: var(--ub-navy);
    text-decoration: none;
    color: var(--ub-navy);
}

.brand-index__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.brand-index__visual img {
    max-width: 150px;
    max-height: 56px;
    width: auto;
    height: auto;
}

.brand-index__name {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.brand-index__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.brand-index__label {
    font-size: 14px;
    font-weight: 600;
}

.brand-index__count {
    font-size: 12px;
    color: var(--ub-grey-medium);
}

@media (max-width: 600px) {
    .brand-index__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .brand-index__tile {
        padding: 16px 10px 12px;
    }
}
