.posts-thumb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 3.5rem !important;
}

.thumb-card {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    border-bottom: none !important;
    aspect-ratio: 3/4;
    background: #1a1a1a;
}

.thumb-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.35s ease;
}

.thumb-card:hover .thumb-card-img {
    transform: scale(1.05);
}

.thumb-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 0.9rem 0.9rem;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thumb-card-title {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.thumb-card-date {
    color: rgba(255,255,255,0.55);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 737px) {
    .posts-thumb-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 2rem 2rem 3rem;
    }

    .thumb-card {
        aspect-ratio: 4/5;
    }

    .thumb-card-title {
        font-size: 0.9rem;
    }
}
