This commit is contained in:
2026-06-13 15:45:19 -04:00
parent f6a24c3bbd
commit ef3fe990b8

View File

@@ -22,8 +22,8 @@
/* --- Core cards (portrait, 300x450) --- */
.vs01-dir-card-core {
width: 300px;
height: 450px;
width: 100%;
height: auto;
border: 1px solid var(--civicinfra-border);
border-radius: var(--civicinfra-radius);
overflow: hidden;
@@ -33,18 +33,15 @@
}
.vs01-dir-card-core .vs01-card-image {
width: 260px;
height: 260px;
flex: 0 0 260px;
width: 100%;
overflow: hidden;
aspect-ratio: 1 / 1;
}
.vs01-dir-card-core .vs01-card-image img {
display: block;
width: 260px;
height: 260px;
max-width: 260px;
max-height: 260px;
width: 100%;
height: 100%;
object-fit: cover;
}
@@ -53,7 +50,7 @@
padding: var(--civicinfra-space-3) var(--civicinfra-space-4);
display: flex;
flex-direction: column;
justify-content: center;
justify-content: flex-start;
overflow: hidden;
}