/* Blog Styles */
.page-header {
    background: linear-gradient(135deg, #c9a961 0%, #9b7e3d 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.featured-post-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.featured-post-content {
    padding: 40px;
}

.featured-badge {
    display: inline-block;
    background: #c9a961;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.featured-post-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.featured-post-title a {
    color: #2c2c2c;
    text-decoration: none;
}

.featured-post-title a:hover {
    color: #c9a961;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.featured-post-excerpt {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-section {
    padding: 60px 0;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card-image {
    display: block;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-placeholder {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #2c2c2c;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #c9a961;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-link {
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
}

.read-more-link:hover {
    text-decoration: underline;
}

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

.pagination-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #c9a961;
    color: white;
    border-color: #c9a961;
}

@media (max-width: 768px) {
    .featured-post-card {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .featured-post-title {
        font-size: 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
