/* Blog Styles */
.blog-header {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                url('../images/pattern-bg.png');
    background-size: cover;
}

.search-form .form-control {
    border-radius: 30px 0 0 30px;
    border: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
}

.search-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.75rem 1.5rem;
}

/* Featured Post */
.featured-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-card img {
    height: 100%;
    object-fit: cover;
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.post-meta {
    font-size: 0.875rem;
}

.post-meta span {
    margin-right: 1rem;
}

/* Categories Widget */
.categories-widget {
    background: #fff;
}

.categories-list li {
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list a:hover {
    color: #DAA520;
}

.categories-list span {
    color: #999;
    font-size: 0.875rem;
}

/* Pagination */
.pagination .page-link {
    color: #333;
    border: none;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 30px;
}

.pagination .page-item.active .page-link {
    background-color: #DAA520;
    border-color: #DAA520;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    color: #DAA520;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .featured-card img {
        height: 250px;
    }
}
