.post-tiles-grid-0f3b4d93 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.post-tile-0f3b4d93 {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-tile-0f3b4d93:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.post-tile-image-wrapper-0f3b4d93 {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #eee;
}

.post-tile-image-wrapper-0f3b4d93 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.post-tile-0f3b4d93:hover .post-tile-image-wrapper-0f3b4d93 img {
    transform: scale(1.05);
}

.post-tile-content-0f3b4d93 {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.post-tile-date-0f3b4d93 {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.post-tile-title-0f3b4d93 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #111;
    font-weight: 700;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .post-tiles-grid-0f3b4d93 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .post-tiles-grid-0f3b4d93 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
