/* Blog-specific styles */
.featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    object-fit: cover;
    max-height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}
.author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0fdf4;
}
.byline {
    font-size: 0.95rem;
    color: #1a202c;
}
.meta-date {
    font-size: 0.85rem;
    color: #718096;
}
@media (max-width: 768px) {
    .featured-image {
        max-height: 300px;
        margin-bottom: 1.5rem;
    }
}