/* ===== TILE STRIP MAIOLICHE ===== */

.tile-strip {
    width: 100%;
    height: 120px;
    display: flex;
    flex-wrap: nowrap;
    background: var(--color-avorio);
    overflow: hidden;
}

/* Tile base */
.tile {
    min-width: 120px;
    width: 120px;
    height: 120px;
    position: relative;
    flex-shrink: 0;
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Versione scura per footer */
.tile-strip.dark {
    background: var(--color-grafite);
}

.tile-strip.dark .tile img {
    filter: brightness(0.8) contrast(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .tile-strip {
        height: 72px;
    }

    .tile {
        min-width: 72px;
        width: 72px;
        height: 72px;
    }
}