.vm-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

@media (min-width: 1440px) {
    .vm-listings-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.vm-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    height: 100%;
    border-radius: 12px;
    transition: transform .2s ease;
}

.vm-card-link:hover {
    transform: scale(1.02);
}

.vm-card {
    background-color: #f6f8fb;
    border-radius: 8px;
    box-shadow: 0 7px 29px 0 #64646f33;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: box-shadow .2s ease;
}

.vm-card-link:hover .vm-card {
    box-shadow: 0 10px 30px 0 rgba(100, 100, 111, 0.3);
}

.vm-aspect-ratio-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background-color: #f5f5f5;
}
.vm-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 8px 8px 0 0 !important;
}

.vm-info {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px;
}

.vm-main-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 4px;
    height: 100%;
    padding-bottom: 0;
}

.vm-category {
    color: #004e8e;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-transform: capitalize;
}

.vm-title {
    color: #1d1d1d;
    font-family: Noto Sans, Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vm-price {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
    color: #4a4a4f;
}

.vm-location {
    color: #4a4a4a;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 18px;
    margin-top: auto;
}