/* Vertical Card Layout Styling */
.gh-grid-row {
    display: grid;
    gap: 2.5rem;
}

.top-row {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3.5rem;
}

@media (max-width: 980px) {
    .top-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 680px) {
    .top-row {
        grid-template-columns: 1fr;
    }
}