@charset "UTF-8";
/* CSS Document */
/* --- Base Reset & Typography --- */

/* --- Mobile-First Brand Image Grid (Vertical Orientation / Small Screens) --- */
.image-grid-brand {
    display: grid;
    grid-template-columns: 1fr; /* Single column stack */
    gap: 1rem;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-card-brand img {
    width: 300px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* --- Desktop & Landscape Tablet Media Query (Two Columns, Two Rows) --- */
@media (min-width: 600px) {
    .image-grid-brand {
        grid-template-columns: repeat(2, 1fr); /* 2x2 layout */
        gap: 1.5rem;
    }
}

