.bda-blog-posts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bda-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bda-post-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bda-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.bda-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.bda-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bda-post-content {
    padding: 20px;
}

.bda-post-title {
    margin: 0 0 10px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.bda-post-title a {
    color: #046bd2;
    text-decoration: none;
}

.bda-post-title a:hover {
    color: #045cb4;
}

.bda-post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.bda-post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bda-post-link {
    display: inline-block;
    color: #046bd2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.bda-post-link:hover {
    color: #045cb4;
}

.bda-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.bda-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #046bd2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bda-pagination .page-numbers:hover {
    background: #046bd2;
    color: #fff;
}

.bda-pagination .page-numbers.current {
    background: #046bd2;
    color: #fff;
    border-color: #046bd2;
}

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