/*
Theme Name: Al Día Theme
Theme URI: https://aldia.do
Author: Al Día Dev
Author URI: https://aldia.do
Description: Tema de noticias profesional para República Dominicana con diseño patriótico moderno estilo editorial. Incluye páginas de política, biografías de autores, categorías y menús preconfigurados.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aldia-theme
Tags: news, magazine, spanish, dominican-republic, custom-menu, featured-images, translation-ready

Tema diseñado para sitios de noticias dominicanas con colores patrióticos y diseño editorial moderno.
*/

/* ==========================================================================
   CSS VARIABLES - Dominican Patriotic Colors
   ========================================================================== */

:root {
    --rd-blue: #002D62;
    --rd-blue-light: #0a4a8f;
    --rd-blue-dark: #001a3a;
    --rd-red: #CE1126;
    --rd-red-light: #e82d42;
    --rd-red-dark: #a30d1e;
    --rd-white: #FFFFFF;
    --rd-gold: #d4af37;
    
    --cream: #faf8f5;
    --warm-white: #f7f5f2;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --ink: #0d0d0d;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-accent: 'Libre Franklin', Arial, sans-serif;
    
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --container-max: 1320px;
    --container-narrow: 780px;
    --header-height: 60px;
    --topbar-height: 36px;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.16);
    
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 400ms;
    
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--gray-800); background: var(--cream); -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--rd-blue); text-decoration: none; transition: color var(--duration-fast); }
a:hover { color: var(--rd-red); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-lg); }
.container-narrow { max-width: var(--container-narrow); }
.site-main { min-height: calc(100vh - var(--header-height) - var(--topbar-height) - 300px); padding: var(--space-2xl) 0; }

/* Top Bar */
.topbar { background: var(--rd-blue-dark); color: var(--rd-white); height: var(--topbar-height); display: flex; align-items: center; font-size: 0.8125rem; position: relative; }
.topbar::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--rd-red), var(--rd-gold), var(--rd-red)); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: var(--space-md); }
.topbar-date { display: flex; align-items: center; gap: var(--space-xs); opacity: 0.9; }
.topbar-social { display: flex; gap: var(--space-sm); }
.topbar-social a { color: var(--rd-white); opacity: 0.7; transition: opacity var(--duration-fast); }
.topbar-social a:hover { opacity: 1; color: var(--rd-white); }

/* Header */
.site-header { background: var(--rd-white); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-md); }
.header-main { height: var(--header-height); display: flex; align-items: center; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; gap: var(--space-xl); }
.site-branding { display: flex; align-items: center; gap: var(--space-sm); }
.site-title { font-family: var(--font-display); font-size: 1.625rem; font-weight: 700; color: var(--rd-blue); line-height: 1; }
.site-title a { color: inherit; }
.site-title .title-rd { color: var(--rd-red); }
.site-tagline { font-family: var(--font-accent); font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-500); }

/* Navigation */
.main-navigation { display: flex; align-items: center; }
.nav-menu { display: flex; gap: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; padding: var(--space-sm) var(--space-md); font-family: var(--font-accent); font-weight: 600; font-size: 0.875rem; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.03em; position: relative; transition: all var(--duration-fast); }
.nav-menu > li > a::after { content: ''; position: absolute; bottom: 0; left: var(--space-md); right: var(--space-md); height: 3px; background: var(--rd-red); transform: scaleX(0); transition: transform var(--duration-base); }
.nav-menu > li > a:hover, .nav-menu > li.current-menu-item > a { color: var(--rd-blue); }
.nav-menu > li > a:hover::after, .nav-menu > li.current-menu-item > a::after { transform: scaleX(1); }
.nav-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--rd-white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: var(--space-xs); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--duration-base); z-index: 100; border-top: 3px solid var(--rd-red); }
.nav-menu > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu a { display: block; padding: var(--space-sm) var(--space-md); font-size: 0.875rem; color: var(--gray-700); border-radius: var(--radius-sm); }
.nav-menu .sub-menu a:hover { background: var(--gray-50); color: var(--rd-blue); }

.menu-toggle { display: none; background: var(--rd-blue); color: var(--rd-white); border: none; padding: var(--space-xs) var(--space-md); border-radius: var(--radius-sm); cursor: pointer; font-family: var(--font-accent); font-weight: 600; font-size: 0.875rem; align-items: center; gap: var(--space-xs); }
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    .main-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--rd-white); border-top: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); padding: var(--space-md); }
    .main-navigation.active { display: block; }
    .nav-menu { flex-direction: column; }
    .nav-menu > li > a::after { display: none; }
    .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding-left: var(--space-lg); background: var(--gray-50); margin-top: var(--space-xs); border-radius: var(--radius-md); }
}

/* Breadcrumbs */
.breadcrumbs { background: var(--warm-white); border-bottom: 1px solid var(--gray-200); padding: var(--space-sm) 0; }
.breadcrumbs-list { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-xs); font-size: 0.8125rem; font-family: var(--font-accent); }
.breadcrumb-item { display: flex; align-items: center; gap: var(--space-xs); color: var(--gray-500); }
.breadcrumb-item a { color: var(--gray-600); }
.breadcrumb-item a:hover { color: var(--rd-blue); }
.breadcrumb-separator { color: var(--gray-400); font-size: 0.75rem; }
.breadcrumb-current { color: var(--rd-blue); font-weight: 600; }

/* Article Hero */
.article-hero { position: relative; background: linear-gradient(165deg, var(--rd-blue-dark) 0%, var(--rd-blue) 60%, var(--rd-blue-light) 100%); color: var(--rd-white); padding: var(--space-3xl) 0 var(--space-4xl); margin-bottom: var(--space-2xl); overflow: hidden; }
.article-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 80%, rgba(206, 17, 38, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%); }
.article-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--rd-red), var(--rd-gold), var(--rd-red)); }
.article-hero .container { position: relative; z-index: 1; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); margin-bottom: var(--space-lg); }
.hero-category { display: inline-flex; align-items: center; background: var(--rd-red); color: var(--rd-white); padding: 4px 14px; border-radius: var(--radius-sm); font-family: var(--font-accent); font-weight: 700; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-category:hover { background: var(--rd-red-light); color: var(--rd-white); }
.hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; opacity: 0.85; }
.hero-divider { width: 4px; height: 4px; background: var(--rd-white); border-radius: var(--radius-full); opacity: 0.4; }
.hero-title { font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 700; line-height: 1.1; color: var(--rd-white); max-width: 900px; margin-bottom: var(--space-lg); }
.hero-excerpt { font-size: 1.25rem; line-height: 1.55; color: rgba(255, 255, 255, 0.9); max-width: 680px; margin-bottom: var(--space-xl); }
.hero-author-card { display: flex; align-items: center; gap: var(--space-md); padding-top: var(--space-lg); border-top: 1px solid rgba(255, 255, 255, 0.15); }
.hero-author-avatar { width: 56px; height: 56px; border-radius: var(--radius-full); border: 3px solid var(--rd-white); object-fit: cover; }
.hero-author-info { line-height: 1.35; }
.hero-author-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; font-family: var(--font-accent); }
.hero-author-name { font-weight: 600; font-size: 1rem; }
.hero-author-name a { color: var(--rd-white); }
.hero-author-name a:hover { text-decoration: underline; color: var(--rd-white); }
.hero-author-credentials { font-size: 0.8125rem; opacity: 0.8; }

/* Section Headers */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: var(--space-xl); padding-bottom: var(--space-md); border-bottom: 1px solid var(--gray-200); position: relative; }
.section-header::before { content: ''; position: absolute; bottom: -1px; left: 0; width: 80px; height: 3px; background: var(--rd-red); }
.section-title { font-size: 1.375rem; color: var(--rd-blue); margin: 0; }
.section-link { font-family: var(--font-accent); font-weight: 600; font-size: 0.8125rem; color: var(--rd-red); display: flex; align-items: center; gap: var(--space-2xs); text-transform: uppercase; letter-spacing: 0.05em; }
.section-link:hover { color: var(--rd-blue); }

/* Article Cards */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--space-xl); }
@media (max-width: 768px) { .articles-grid { grid-template-columns: 1fr; } }
.article-card { background: var(--rd-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--duration-base); display: flex; flex-direction: column; border: 1px solid var(--gray-100); }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.article-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow); }
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-category { position: absolute; top: var(--space-md); left: var(--space-md); background: var(--rd-red); color: var(--rd-white); padding: 3px 10px; border-radius: var(--radius-sm); font-family: var(--font-accent); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.article-card-body { padding: var(--space-lg); flex: 1; display: flex; flex-direction: column; }
.article-card-meta { display: flex; align-items: center; gap: var(--space-md); font-size: 0.75rem; color: var(--gray-500); margin-bottom: var(--space-sm); font-family: var(--font-accent); }
.article-card-title { font-size: 1.1875rem; line-height: 1.3; margin-bottom: var(--space-sm); }
.article-card-title a { color: var(--ink); }
.article-card-title a:hover { color: var(--rd-blue); }
.article-card-excerpt { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; flex: 1; margin-bottom: var(--space-md); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-md); border-top: 1px solid var(--gray-100); }
.article-card-author { display: flex; align-items: center; gap: var(--space-sm); }
.article-card-author img { width: 32px; height: 32px; border-radius: var(--radius-full); object-fit: cover; }
.article-card-author-name { font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); }
.article-card-readmore { font-family: var(--font-accent); font-size: 0.75rem; font-weight: 600; color: var(--rd-blue); display: flex; align-items: center; gap: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Single Article */
.single-article-wrapper { display: grid; grid-template-columns: 1fr 320px; gap: var(--space-2xl); max-width: 1140px; margin: 0 auto; }
@media (max-width: 1024px) { .single-article-wrapper { grid-template-columns: 1fr; } }
.single-article { background: var(--rd-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.single-article-content { padding: var(--space-2xl); }
.article-content { font-size: 1.125rem; line-height: 1.8; color: var(--gray-800); }
.article-content > * + * { margin-top: var(--space-lg); }
.article-content h2 { font-size: 1.75rem; margin-top: var(--space-2xl); padding-top: var(--space-lg); border-top: 1px solid var(--gray-200); color: var(--rd-blue); }
.article-content h3 { font-size: 1.375rem; margin-top: var(--space-xl); color: var(--gray-800); }
.article-content ul, .article-content ol { padding-left: var(--space-xl); }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: var(--space-sm); }
.article-content li::marker { color: var(--rd-red); }
.article-content blockquote { margin: var(--space-xl) 0; padding: var(--space-lg) var(--space-xl); background: linear-gradient(135deg, var(--gray-50), var(--warm-white)); border-left: 4px solid var(--rd-red); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--gray-700); }
.article-content a { color: var(--rd-blue); text-decoration: underline; text-decoration-color: var(--rd-red); text-underline-offset: 3px; }
.article-content a:hover { color: var(--rd-red); }
.article-tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid var(--gray-200); }
.article-tag { background: var(--gray-100); color: var(--gray-700); padding: var(--space-2xs) var(--space-sm); border-radius: var(--radius-sm); font-size: 0.8125rem; transition: all var(--duration-fast); }
.article-tag:hover { background: var(--rd-blue); color: var(--rd-white); }

/* Author Box */
.author-box { background: linear-gradient(135deg, var(--warm-white) 0%, var(--gray-100) 100%); border-radius: var(--radius-lg); padding: var(--space-xl); margin-top: var(--space-2xl); border-left: 4px solid var(--rd-blue); display: flex; gap: var(--space-lg); }
@media (max-width: 600px) { .author-box { flex-direction: column; text-align: center; } }
.author-box-avatar img { width: 100px; height: 100px; border-radius: var(--radius-full); border: 4px solid var(--rd-white); box-shadow: var(--shadow-md); object-fit: cover; }
.author-box-content { flex: 1; }
.author-box-label { font-family: var(--font-accent); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: var(--space-2xs); }
.author-box-name { font-size: 1.375rem; margin-bottom: var(--space-2xs); }
.author-box-name a { color: var(--ink); }
.author-box-name a:hover { color: var(--rd-blue); }
.author-box-credentials { font-weight: 600; font-size: 0.9375rem; color: var(--rd-blue); margin-bottom: var(--space-md); }
.author-box-bio { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: var(--space-md); }
.author-box-link { display: inline-flex; align-items: center; gap: var(--space-xs); font-family: var(--font-accent); font-weight: 600; font-size: 0.8125rem; color: var(--rd-blue); padding: var(--space-sm) var(--space-md); border: 2px solid var(--rd-blue); border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: 0.04em; transition: all var(--duration-fast); }
.author-box-link:hover { background: var(--rd-blue); color: var(--rd-white); }

/* Author Page */
.author-header { background: linear-gradient(165deg, var(--rd-blue-dark) 0%, var(--rd-blue) 100%); color: var(--rd-white); padding: var(--space-3xl) 0; text-align: center; position: relative; }
.author-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 70%, rgba(206, 17, 38, 0.15), transparent 50%); }
.author-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--rd-red), var(--rd-gold), var(--rd-red)); }
.author-header .container { position: relative; z-index: 1; }
.author-avatar-large { width: 140px; height: 140px; border-radius: var(--radius-full); border: 5px solid var(--rd-white); box-shadow: var(--shadow-xl); margin: 0 auto var(--space-lg); object-fit: cover; }
.author-header h1 { color: var(--rd-white); margin-bottom: var(--space-sm); font-size: 2.25rem; }
.author-header-credentials { font-size: 1.125rem; font-weight: 600; opacity: 0.9; margin-bottom: var(--space-lg); }
.author-header-bio { max-width: 600px; margin: 0 auto; opacity: 0.85; line-height: 1.7; }
.author-stats { display: flex; justify-content: center; gap: var(--space-2xl); margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.15); }
.author-stat { text-align: center; }
.author-stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.author-stat-label { font-size: 0.8125rem; opacity: 0.8; margin-top: var(--space-2xs); font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 0.08em; }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--header-height) + var(--topbar-height) + var(--space-lg)); }
.widget { background: var(--rd-white); border-radius: var(--radius-lg); padding: var(--space-lg); margin-bottom: var(--space-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.widget-title { font-size: 1rem; color: var(--rd-blue); margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 1px solid var(--gray-200); position: relative; }
.widget-title::before { content: ''; position: absolute; bottom: -1px; left: 0; width: 40px; height: 3px; background: var(--rd-red); }
.widget ul li { padding: var(--space-sm) 0; border-bottom: 1px solid var(--gray-100); }
.widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.widget ul li a { color: var(--gray-700); font-size: 0.9375rem; display: flex; justify-content: space-between; align-items: center; }
.widget ul li a:hover { color: var(--rd-blue); }
.widget ul li .count { background: var(--gray-100); color: var(--gray-600); font-size: 0.75rem; padding: 2px 8px; border-radius: var(--radius-full); }
.widget-newsletter { background: linear-gradient(135deg, var(--rd-blue-dark) 0%, var(--rd-blue) 100%); color: var(--rd-white); border: none; }
.widget-newsletter .widget-title { color: var(--rd-white); border-bottom-color: rgba(255, 255, 255, 0.2); }
.widget-newsletter p { font-size: 0.9375rem; opacity: 0.9; margin-bottom: var(--space-md); }
.widget-newsletter input[type="email"] { width: 100%; padding: var(--space-sm) var(--space-md); border: none; border-radius: var(--radius-sm); margin-bottom: var(--space-sm); }
.widget-newsletter button { width: 100%; padding: var(--space-sm) var(--space-md); background: var(--rd-red); color: var(--rd-white); border: none; border-radius: var(--radius-sm); font-family: var(--font-accent); font-weight: 600; cursor: pointer; transition: background var(--duration-fast); }
.widget-newsletter button:hover { background: var(--rd-red-light); }

/* Page Templates */
.page-header { background: linear-gradient(165deg, var(--rd-blue-dark) 0%, var(--rd-blue) 100%); color: var(--rd-white); padding: var(--space-3xl) 0; text-align: center; position: relative; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 70% 30%, rgba(206, 17, 38, 0.12), transparent 60%); }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--rd-red), var(--rd-gold), var(--rd-red)); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--rd-white); margin-bottom: var(--space-md); }
.page-header .lead { color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto; }
.page-content { background: var(--rd-white); max-width: 900px; margin: calc(var(--space-2xl) * -1) auto var(--space-2xl); padding: var(--space-2xl); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.page-content h2 { color: var(--rd-blue); font-size: 1.625rem; margin-top: var(--space-2xl); margin-bottom: var(--space-lg); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--gray-200); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { color: var(--gray-800); font-size: 1.25rem; margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.page-content p { margin-bottom: var(--space-lg); line-height: 1.8; }
.page-content ul, .page-content ol { margin-bottom: var(--space-lg); padding-left: var(--space-xl); }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: var(--space-sm); line-height: 1.7; }
.page-content li::marker { color: var(--rd-red); }
.page-content a { color: var(--rd-blue); text-decoration: underline; text-decoration-color: var(--rd-red); text-underline-offset: 2px; }
.page-content a:hover { color: var(--rd-red); }

/* Contact & Team Grids */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-lg); margin: var(--space-xl) 0; }
.contact-card { background: var(--warm-white); padding: var(--space-lg); border-radius: var(--radius-md); text-align: center; border-left: 4px solid var(--rd-blue); transition: all var(--duration-fast); }
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-card-icon { width: 48px; height: 48px; margin: 0 auto var(--space-md); color: var(--rd-blue); }
.contact-card h3 { margin-bottom: var(--space-sm); font-size: 1.125rem; }
.contact-card p { margin-bottom: 0; color: var(--gray-600); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-xl); margin: var(--space-xl) 0; }
.team-member { background: var(--warm-white); padding: var(--space-xl); border-radius: var(--radius-lg); text-align: center; transition: all var(--duration-base); border: 1px solid var(--gray-200); }
.team-member:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-member-avatar { width: 120px; height: 120px; border-radius: var(--radius-full); margin: 0 auto var(--space-lg); border: 4px solid var(--rd-blue); object-fit: cover; }
.team-member h3 { margin-bottom: var(--space-2xs); font-size: 1.125rem; }
.team-member-role { color: var(--rd-blue); font-weight: 600; font-size: 0.875rem; margin-bottom: var(--space-md); font-family: var(--font-accent); }
.team-member p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 0; }

/* Category Archive */
.category-header { background: linear-gradient(165deg, var(--rd-blue-dark) 0%, var(--rd-blue) 100%); color: var(--rd-white); padding: var(--space-2xl) 0; position: relative; }
.category-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--rd-red), var(--rd-gold), var(--rd-red)); }
.category-label { font-family: var(--font-accent); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.8; margin-bottom: var(--space-sm); }
.category-header h1 { color: var(--rd-white); margin-bottom: var(--space-md); }
.category-description { max-width: 600px; opacity: 0.9; line-height: 1.7; }

/* Footer */
.site-footer { background: var(--gray-900); color: var(--gray-400); padding-top: var(--space-3xl); margin-top: var(--space-2xl); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-2xl); padding-bottom: var(--space-2xl); border-bottom: 1px solid var(--gray-800); }
@media (max-width: 992px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.footer-logo span { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--rd-white); }
.footer-logo .rd { color: var(--rd-red); }
.footer-brand-text { font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--space-lg); }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--gray-800); border-radius: var(--radius-full); color: var(--gray-400); transition: all var(--duration-fast); }
.footer-social a:hover { background: var(--rd-red); color: var(--rd-white); }
.footer-column h4 { color: var(--rd-white); font-family: var(--font-accent); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-lg); }
.footer-column ul li { margin-bottom: var(--space-sm); }
.footer-column ul li a { color: var(--gray-400); font-size: 0.9375rem; transition: color var(--duration-fast); }
.footer-column ul li a:hover { color: var(--rd-white); }
.footer-bottom { padding: var(--space-lg) 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-md); }
.footer-copyright { font-size: 0.8125rem; color: var(--gray-500); }
.footer-copyright a { color: var(--gray-400); }
.footer-copyright a:hover { color: var(--rd-white); }
.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a { font-size: 0.8125rem; color: var(--gray-500); }
.footer-legal a:hover { color: var(--rd-white); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs); padding: var(--space-sm) var(--space-lg); font-family: var(--font-accent); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.04em; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all var(--duration-fast); text-decoration: none; }
.btn-primary { background: var(--rd-red); color: var(--rd-white); }
.btn-primary:hover { background: var(--rd-red-dark); color: var(--rd-white); }
.btn-secondary { background: var(--rd-blue); color: var(--rd-white); }
.btn-secondary:hover { background: var(--rd-blue-dark); color: var(--rd-white); }
.btn-outline { background: transparent; border: 2px solid var(--rd-blue); color: var(--rd-blue); }
.btn-outline:hover { background: var(--rd-blue); color: var(--rd-white); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--space-xs); margin: var(--space-2xl) 0; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 var(--space-md); background: var(--rd-white); border: 2px solid var(--gray-200); border-radius: var(--radius-sm); color: var(--gray-700); font-family: var(--font-accent); font-weight: 600; font-size: 0.875rem; transition: all var(--duration-fast); }
.pagination a:hover { border-color: var(--rd-blue); color: var(--rd-blue); }
.pagination .current { background: var(--rd-blue); border-color: var(--rd-blue); color: var(--rd-white); }

/* Search */
.search-form { display: flex; gap: var(--space-sm); }
.search-field { flex: 1; padding: var(--space-sm) var(--space-md); border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 1rem; transition: border-color var(--duration-fast); }
.search-field:focus { outline: none; border-color: var(--rd-blue); }
.search-submit { background: var(--rd-blue); color: var(--rd-white); border: none; padding: var(--space-sm) var(--space-lg); border-radius: var(--radius-sm); font-family: var(--font-accent); font-weight: 600; cursor: pointer; transition: background var(--duration-fast); }
.search-submit:hover { background: var(--rd-red); }

/* 404 */
.error-404 { text-align: center; padding: var(--space-4xl) 0; }
.error-404-code { font-size: clamp(8rem, 25vw, 14rem); font-family: var(--font-display); font-weight: 700; line-height: 1; background: linear-gradient(135deg, var(--rd-blue), var(--rd-red)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.3; }
.error-404 h1 { margin-bottom: var(--space-md); }
.error-404 p { font-size: 1.25rem; color: var(--gray-600); max-width: 480px; margin: 0 auto var(--space-xl); }

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.articles-grid .article-card { opacity: 0; animation: slideUp var(--duration-slow) var(--ease-out) forwards; }
.articles-grid .article-card:nth-child(1) { animation-delay: 0.1s; }
.articles-grid .article-card:nth-child(2) { animation-delay: 0.15s; }
.articles-grid .article-card:nth-child(3) { animation-delay: 0.2s; }
.articles-grid .article-card:nth-child(4) { animation-delay: 0.25s; }
.articles-grid .article-card:nth-child(5) { animation-delay: 0.3s; }
.articles-grid .article-card:nth-child(6) { animation-delay: 0.35s; }

/* Print */
@media print {
    .topbar, .site-header, .site-footer, .sidebar, .breadcrumbs, .article-hero, .page-header, .author-box-link, .pagination { display: none !important; }
    body { font-size: 12pt; line-height: 1.5; color: #000; background: #fff; }
    .single-article, .page-content { box-shadow: none; padding: 0; max-width: none; border-radius: 0; }
}

/* ==========================================================================
   HOMEPAGE STYLES
   ========================================================================== */

.home-main { padding-top: 0; }

/* Hero Section */
.hero-section { background: var(--gray-900); padding: 0; }
.hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; min-height: 520px; }
@media (max-width: 992px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-main { position: relative; overflow: hidden; }
.hero-main-link { display: block; height: 100%; }
.hero-main-image { position: absolute; inset: 0; }
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.hero-main-content { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-2xl); color: var(--rd-white); z-index: 2; }
.hero-category { display: inline-block; padding: 5px 14px; font-family: var(--font-accent); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: var(--radius-sm); margin-bottom: var(--space-md); }
.hero-main-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--rd-white); margin-bottom: var(--space-md); line-height: 1.2; }
.hero-main-excerpt { font-size: 1rem; opacity: 0.9; margin-bottom: var(--space-lg); line-height: 1.6; max-width: 600px; }
.hero-main-meta { display: flex; align-items: center; gap: var(--space-lg); font-size: 0.875rem; opacity: 0.85; }
.meta-author { display: flex; align-items: center; gap: var(--space-xs); }
.meta-author img { border-radius: var(--radius-full); border: 2px solid var(--rd-white); }

/* Hero Secondary Grid */
.hero-secondary { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.hero-secondary-item { position: relative; overflow: hidden; }
.hero-secondary-item a { display: block; height: 100%; }
.hero-secondary-image { position: absolute; inset: 0; }
.hero-secondary-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow); }
.hero-secondary-item:hover .hero-secondary-image img { transform: scale(1.05); }
.hero-secondary-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%); }
.hero-secondary-content { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-lg); color: var(--rd-white); z-index: 2; }
.hero-category-sm { display: inline-block; font-family: var(--font-accent); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rd-red); margin-bottom: var(--space-xs); }
.hero-secondary-title { font-size: 1rem; color: var(--rd-white); line-height: 1.3; font-weight: 600; }

@media (max-width: 992px) {
    .hero-secondary { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .hero-secondary-item { min-height: 200px; }
}
@media (max-width: 576px) {
    .hero-secondary { grid-template-columns: 1fr; }
}

/* Home Content Grid */
.home-content-section { padding: var(--space-2xl) 0; }
.home-content-grid { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-2xl); }
@media (max-width: 1024px) { .home-content-grid { grid-template-columns: 1fr; } }

.home-main-column { display: flex; flex-direction: column; gap: var(--space-2xl); }

/* Category Sections */
.category-section { background: var(--rd-white); border-radius: var(--radius-lg); padding: var(--space-xl); box-shadow: var(--shadow-sm); }
.category-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid var(--gray-200); }
.category-section-title { font-size: 1.25rem; color: var(--ink); display: flex; align-items: center; gap: var(--space-sm); margin: 0; }
.title-accent { width: 4px; height: 24px; border-radius: 2px; background: var(--rd-red); }
.category-section-link { font-family: var(--font-accent); font-size: 0.8125rem; font-weight: 600; color: var(--rd-blue); }
.category-section-link:hover { color: var(--rd-red); }

/* Featured Layout (1 large + 3 list) */
.category-posts-grid.featured-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
@media (max-width: 768px) { .category-posts-grid.featured-layout { grid-template-columns: 1fr; } }

.category-featured-post { grid-row: span 3; }
.category-featured-post a { display: block; height: 100%; }
.cfp-image { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-md); }
.cfp-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-base); }
.category-featured-post:hover .cfp-image img { transform: scale(1.03); }
.cfp-title { font-size: 1.25rem; color: var(--ink); margin-bottom: var(--space-sm); line-height: 1.3; }
.category-featured-post a:hover .cfp-title { color: var(--rd-blue); }
.cfp-excerpt { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; margin-bottom: var(--space-sm); }
.cfp-date { font-size: 0.8125rem; color: var(--gray-500); }

.category-list-post { border-bottom: 1px solid var(--gray-100); padding-bottom: var(--space-md); }
.category-list-post:last-child { border-bottom: none; padding-bottom: 0; }
.category-list-post a { display: flex; gap: var(--space-md); align-items: flex-start; }
.clp-image { flex: 0 0 80px; width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; }
.clp-image img { width: 100%; height: 100%; object-fit: cover; }
.clp-content { flex: 1; }
.clp-title { font-size: 0.9375rem; color: var(--ink); line-height: 1.4; margin-bottom: var(--space-2xs); font-weight: 600; }
.category-list-post a:hover .clp-title { color: var(--rd-blue); }
.clp-date { font-size: 0.75rem; color: var(--gray-500); }

/* Horizontal Posts (Deportes) */
.category-posts-horizontal { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
@media (max-width: 992px) { .category-posts-horizontal { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .category-posts-horizontal { grid-template-columns: 1fr; } }

.horizontal-post a { display: block; }
.hp-image { aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-sm); }
.hp-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-base); }
.horizontal-post:hover .hp-image img { transform: scale(1.03); }
.hp-title { font-size: 0.9375rem; color: var(--ink); line-height: 1.35; margin-bottom: var(--space-2xs); font-weight: 600; }
.horizontal-post a:hover .hp-title { color: var(--rd-blue); }
.hp-date { font-size: 0.75rem; color: var(--gray-500); }

/* Home Sidebar */
.home-sidebar { display: flex; flex-direction: column; gap: var(--space-lg); }
@media (max-width: 1024px) { .home-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .home-sidebar { grid-template-columns: 1fr; } }

.sidebar-widget { background: var(--rd-white); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-sm); }
.sidebar-widget-title { font-size: 1rem; color: var(--rd-blue); margin-bottom: var(--space-lg); display: flex; align-items: center; gap: var(--space-sm); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--gray-100); }
.sidebar-widget-title svg { color: var(--rd-red); }

/* Trending Widget */
.trending-list { counter-reset: trending; }
.trending-item { display: flex; gap: var(--space-md); align-items: flex-start; padding: var(--space-md) 0; border-bottom: 1px solid var(--gray-100); }
.trending-item:last-child { border-bottom: none; }
.trending-rank { flex: 0 0 28px; width: 28px; height: 28px; background: var(--rd-blue); color: var(--rd-white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-accent); font-weight: 700; font-size: 0.8125rem; }
.trending-item:nth-child(1) .trending-rank { background: var(--rd-red); }
.trending-item:nth-child(2) .trending-rank { background: var(--rd-gold); color: var(--ink); }
.trending-item:nth-child(3) .trending-rank { background: var(--gray-600); }
.trending-title { font-size: 0.9375rem; color: var(--ink); line-height: 1.4; margin-bottom: var(--space-2xs); font-weight: 600; }
.trending-item a:hover .trending-title { color: var(--rd-blue); }
.trending-meta { font-size: 0.75rem; color: var(--gray-500); }

/* Newsletter Widget */
.newsletter-widget { background: linear-gradient(135deg, var(--rd-blue-dark) 0%, var(--rd-blue) 100%); color: var(--rd-white); text-align: center; }
.newsletter-icon { margin-bottom: var(--space-md); }
.newsletter-icon svg { color: var(--rd-gold); }
.newsletter-title { font-size: 1.25rem; color: var(--rd-white); margin-bottom: var(--space-sm); }
.newsletter-desc { font-size: 0.9375rem; opacity: 0.9; margin-bottom: var(--space-lg); }
.newsletter-form input { width: 100%; padding: var(--space-sm) var(--space-md); border: none; border-radius: var(--radius-sm); margin-bottom: var(--space-sm); font-size: 0.9375rem); }
.newsletter-form button { width: 100%; padding: var(--space-sm) var(--space-md); background: var(--rd-red); color: var(--rd-white); border: none; border-radius: var(--radius-sm); font-family: var(--font-accent); font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: background var(--duration-fast); }
.newsletter-form button:hover { background: var(--rd-red-light); }
.newsletter-note { display: block; margin-top: var(--space-sm); font-size: 0.75rem; opacity: 0.7; }

/* Categories Widget */
.categories-list li { margin-bottom: 0; }
.categories-list li a { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); font-size: 0.9375rem; }
.categories-list li:last-child a { border-bottom: none; }
.categories-list li a:hover { color: var(--rd-blue); }
.cat-color { width: 8px; height: 8px; border-radius: var(--radius-full); }
.cat-count { margin-left: auto; background: var(--gray-100); color: var(--gray-600); font-size: 0.75rem; padding: 2px 8px; border-radius: var(--radius-full); }

/* Social Widget */
.social-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.social-btn { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: var(--space-sm); border-radius: var(--radius-sm); color: var(--rd-white); font-size: 0.8125rem; font-weight: 600; transition: all var(--duration-fast); }
.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #000; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.social-btn:hover { transform: translateY(-2px); color: var(--rd-white); }

/* Full Width Sections */
.fullwidth-section { padding: var(--space-2xl) 0; background: var(--warm-white); }
.mundo-section { background: var(--gray-100); }

.four-col-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
@media (max-width: 992px) { .four-col-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .four-col-grid { grid-template-columns: 1fr; } }

.grid-card a { display: block; }
.gc-image { aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-md); }
.gc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-base); }
.grid-card:hover .gc-image img { transform: scale(1.03); }
.gc-title { font-size: 1rem; color: var(--ink); line-height: 1.35; margin-bottom: var(--space-xs); font-weight: 600; }
.grid-card a:hover .gc-title { color: var(--rd-blue); }
.gc-date { font-size: 0.75rem; color: var(--gray-500); }

/* Latest Section */
.latest-section { padding: var(--space-2xl) 0; }

/* Placeholders */
.placeholder-image { width: 100%; height: 100%; background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%); display: flex; align-items: center; justify-content: center; }
.placeholder-image::after { content: 'Al Día'; font-family: var(--font-display); font-size: 2rem; color: var(--gray-400); }
.placeholder-image-sm { width: 100%; height: 100%; background: var(--gray-200); }
.placeholder-image-md { width: 100%; aspect-ratio: 4/3; background: var(--gray-200); border-radius: var(--radius-md); }
.placeholder-image-xs { width: 100%; height: 100%; background: var(--gray-200); }
.placeholder-image-card { width: 100%; height: 100%; background: var(--gray-200); min-height: 180px; }

/* ==========================================================================
   EMPTY STATE STYLES
   ========================================================================== */

/* Hero Empty State */
.hero-empty .hero-empty-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rd-blue-dark) 0%, var(--rd-blue) 100%);
    color: var(--rd-white);
    text-align: center;
    padding: var(--space-2xl);
    z-index: 2;
}
.hero-empty .hero-empty-placeholder svg {
    color: var(--rd-gold);
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}
.hero-empty .hero-empty-placeholder h2 {
    font-size: 2.5rem;
    color: var(--rd-white);
    margin-bottom: var(--space-sm);
}
.hero-empty .hero-empty-placeholder p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}
.hero-cta-btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: var(--rd-red);
    color: var(--rd-white);
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--duration-fast);
}
.hero-cta-btn:hover {
    background: var(--rd-red-light);
    color: var(--rd-white);
    transform: translateY(-2px);
}
.hero-admin-tip {
    display: block;
    margin-top: var(--space-md);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Secondary Empty States */
.hero-secondary-empty {
    background: linear-gradient(135deg, #2a3a4a 0%, #1a2a3a 100%);
}
.hero-secondary-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--rd-white);
    opacity: 0.5;
}
.hero-secondary-placeholder .placeholder-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.hero-secondary-placeholder .placeholder-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

/* Category Section Empty States */
.category-section-empty {
    background: var(--rd-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.category-section-empty .empty-icon {
    color: var(--gray-300);
    margin-bottom: var(--space-md);
}
.category-section-empty h3 {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
}
.category-section-empty p {
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}
.category-section-empty .empty-cta {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--rd-blue);
    color: var(--rd-white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}
.category-section-empty .empty-cta:hover {
    background: var(--rd-blue-dark);
    color: var(--rd-white);
}

/* Setup Banner for Admins */
.setup-banner {
    background: linear-gradient(135deg, var(--rd-gold) 0%, #c9a227 100%);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}
.setup-banner-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: var(--rd-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-gold);
}
.setup-banner-content {
    flex: 1;
}
.setup-banner-content h3 {
    font-size: 1.125rem;
    color: var(--ink);
    margin-bottom: var(--space-xs);
}
.setup-banner-content p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin: 0;
}
.setup-banner-action {
    flex: 0 0 auto;
}
.setup-banner-btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--rd-blue);
    color: var(--rd-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
}
.setup-banner-btn:hover {
    background: var(--rd-blue-dark);
    color: var(--rd-white);
}

@media (max-width: 768px) {
    .setup-banner {
        flex-direction: column;
        text-align: center;
    }
}
