/* Blog Specific Styles */
.blog-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/gallery/picture_g_012.jpeg') no-repeat center center/cover;
    color: var(--light-text);
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Post */
.featured-post {
    margin-bottom: 60px;
}

.blog-post.featured {
    display: flex;
    flex-direction: column;
    background: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 400px;
    overflow: hidden;
}

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

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

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-category {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 15px;
}

.post-date {
    color: #666;
    display: flex;
    align-items: center;
}

.blog-post h2, .blog-post h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.blog-post.featured h2 {
    font-size: 2rem;
}

.post-excerpt {
    margin-bottom: 20px;
    line-height: 1.7;
}

.post-author {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 3px;
    color: var(--primary-color);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Blog Grid */
.blog-grid {
    margin-bottom: 80px;
}

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

.blog-post {
    background: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post .post-image {
    height: 250px;
}

/* Newsletter */
.newsletter {
    background: var(--accent-color);
    color: var(--light-text);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 60px 0;
}

.newsletter h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.newsletter p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 12px 25px;
}

/* Authors Section */
.featured-authors {
    margin-bottom: 60px;
}

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

.author-card {
    background: var(--light-text);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-card:hover {
    transform: translateY(-10px);
}

.author-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.author-card h3 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.author-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.author-bio {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.author-posts {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-posts:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blog-header {
        padding: 80px 20px;
    }

    .blog-header h1 {
        font-size: 2.2rem;
    }

    .blog-post.featured {
        flex-direction: column;
    }

    .posts-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form .btn {
        border-radius: 30px;
        width: 100%;
    }
}