
.lsm-vfl-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
}

.lsm-vfl-post-card {
    display: flex;
    flex-direction: column;
}

.lsm-vfl-post-image-link {
    display: block;
    width: 100%;
    overflow: hidden;
}

.lsm-vfl-post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.lsm-vfl-post-card:hover .lsm-vfl-post-image {
    transform: scale(1.03);
}

.lsm-vfl-post-title {
    margin: 24px 0 16px;
    font-size: 18px !important;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
}

.lsm-vfl-post-title a {
    color: #333;
    text-decoration: none;
}

.lsm-vfl-post-title a:hover {
    color: #0050a4;
}

.lsm-vfl-post-date {
	font-family: var(--awb-typography2-font-family);
    font-size: 16px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
}

/* Tablet */
@media (max-width: 1024px) {

    .lsm-vfl-post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .lsm-vfl-post-image {
        height: 200px;
    }
}

/* Mobil */
@media (max-width: 640px) {

    .lsm-vfl-post-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lsm-vfl-post-image {
        height: 210px;
    }

    .lsm-vfl-post-title {
        font-size: 18px;
    }
}
