.posts-grid-container_ba582edd {
    width: 100%;
    margin: 2rem 0;
}

.posts-grid_ba582edd {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .posts-grid_ba582edd {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .posts-grid_ba582edd {
        grid-template-columns: 1fr;
    }
}

.post-card_ba582edd {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.post-content-wrap_ba582edd {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
}

.post-title_ba582edd {
    font-family: inherit;
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

.post-title_ba582edd a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title_ba582edd a:hover {
    color: #757575;
    text-decoration: none;
}

.post-thumbnail_ba582edd {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    border-radius: 4px;
}

.post-thumbnail_ba582edd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.post-card_ba582edd:hover .post-thumbnail_ba582edd img {
    transform: scale(1.05);
}

.placeholder-img_ba582edd {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eaeaea, #f5f5f5);
}

.post-excerpt-box_ba582edd {
    display: flex;
    flex-direction: column;
}

.post-excerpt_ba582edd {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}

.read-more-link_ba582edd {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.25rem;
    transition: color 0.2s ease;
}

.read-more-link_ba582edd:hover {
    color: #757575;
}

.no-posts-found_ba582edd {
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #757575;
    padding: 2rem;
}
