.gallery-container {
display: grid;
grid-template-rows: repeat(3, 150px); /* 3 rows with fixed height */
grid-auto-flow: column; /* Fill columns first */
gap: 15px;
justify-content: start;
padding: 20px;
background-color: #f9f9f9;
}
.gallery-item {
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
padding: 10px;
text-align: center;
}
.gallery-item img {
max-height: 100px;
border-radius: 4px;
display: block;
margin: 0 auto 10px;
width: auto;
}
.gallery-item span {
font-family: Arial, sans-serif;
font-size: 14px;
color: #333;
text-decoration: none;
display: block;
}
@media (max-width: 600px) {
.gallery-container {
grid-template-columns: 1fr;
grid-template-rows: none;
grid-auto-flow: row;
}
.gallery-item {
width: 100%;
}
}
Archivo de la Chica de la Semana