/* Block: Categories Showcase — mobile-first (base · 768 · 992) */
.cs__inner { padding-block: 3.5rem; }

/* hairline grid */
.cs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.cs__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--card);
    transition: background 0.2s, color 0.2s;
}
.cs__tile:hover { background: var(--primary); color: var(--primary-foreground); }
.cs__tile:hover svg { stroke: var(--primary-foreground); fill: var(--primary); color: var(--primary-foreground); }
.cs__icon { width: 28px; height: 28px; object-fit: contain; }
.cs__label { font-family: var(--fontFamilyHeadings); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; text-align: center; }

@media (min-width: 768px) { .cs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .cs__grid { grid-template-columns: repeat(6, 1fr); } }
