.posts-grid-da7b4b25 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

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

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

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

.post-card-da7b4b25:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.post-image-da7b4b25 {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

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

.post-card-da7b4b25:hover .post-image-da7b4b25 img {
    transform: scale(1.05);
}

.placeholder-img-da7b4b25 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.placeholder-img-da7b4b25 span {
    font-size: 48px;
    color: #cccccc;
}

.post-content-da7b4b25 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-title-da7b4b25 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

.post-title-da7b4b25 a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-excerpt-da7b4b25 {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
