.vm-selection-cards {
    display: grid;
    gap: 30px;
    margin: 0;
}

.vm-selection-cards.vm-selection-cols-1 { grid-template-columns: 1fr; }
.vm-selection-cards.vm-selection-cols-2 { grid-template-columns: repeat(2, 1fr); }
.vm-selection-cards.vm-selection-cols-3 { grid-template-columns: repeat(3, 1fr); }
.vm-selection-cards.vm-selection-cols-4 { grid-template-columns: repeat(4, 1fr); }

.vm-selection-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vm-selection-card:hover {
    transform: translateY(-3px);
    border-color: rgba(176, 141, 87, 0.55);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.vm-selection-card__image-link {
    display: block;
    line-height: 0;
}

.vm-selection-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.vm-selection-card__image--placeholder {
    background: #e5e5e5;
    min-height: 220px;
}

.vm-selection-card__content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vm-selection-card__title {
    margin: 0 0 14px;
    font-family: "Spectral", serif;
    font-size: clamp(1.4rem, 1.12rem + 0.6vw, 1.8rem);
    font-weight: 450;
    line-height: 1.22;
    letter-spacing: 0.01em;
    color: #2f2a27;
    text-wrap: balance;
    hyphens: auto;
	text-align: center;
}

.vm-selection-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vm-selection-card__title a:hover {
    color: #B08D57;
}

.vm-selection-card__excerpt {
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.vm-selection-card__excerpt p:last-child {
    margin-bottom: 0;
}

.vm-selection-card__button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 0 0;
    text-decoration: none;
    border: none;
    border-top: 1px solid #B08D57;
    color: #B08D57;
    line-height: 1.1;
    transition: opacity 0.2s ease;
}

.vm-selection-card__button:hover {
    opacity: 0.78;
}

@media (hover: none) {
    .vm-selection-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(0,0,0,0.08);
    }
}

@media (max-width: 980px) {
    .vm-selection-cards.vm-selection-cols-3,
    .vm-selection-cards.vm-selection-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .vm-selection-cards.vm-selection-cols-2,
    .vm-selection-cards.vm-selection-cols-3,
    .vm-selection-cards.vm-selection-cols-4 {
        grid-template-columns: 1fr;
    }
}