/**
 * Classic Layout Styles
 *
 * Traditional blog layout with animated hero and card grid.
 * This is the base layout - most styles are inherited from the main style.css
 *
 * @package Legacy Theme
 * @since 1.9.0
 */

/* Classic layout uses the default theme styles, so minimal additions needed */

/* Ensure smooth transitions when switching layouts */
.layout-classic .featured-article-section,
.layout-classic .articles-section,
.layout-classic .category-cards-section {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
