/* ============================================
   UN MUNDO LOCO - DISEÑO PROFESIONAL
   ============================================ */

/* Variables de diseño profesional */
:root {
    /* Paleta de colores profesional */
    --color-primary: #2563EB;
    --color-primary-dark: #1E40AF;
    --color-primary-light: #3B82F6;
    --color-secondary: #0F172A;
    --color-accent: #F59E0B;
    --color-accent-dark: #D97706;

    /* Colores de texto */
    --color-text-primary: #0F172A;
    --color-text-secondary: #475569;
    --color-text-light: #64748B;
    --color-text-lighter: #94A3B8;

    /* Backgrounds */
    --color-bg: #FFFFFF;
    --color-bg-light: #F8FAFC;
    --color-bg-lighter: #F1F5F9;
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;

    /* Tipografía profesional */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;

    /* Espaciado */
    --max-width: 1280px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Efectos */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET Y BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background: var(--color-bg-light);
    line-height: 1.7;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.header-content {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo a {
    color: white;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-link-text {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
    text-decoration: none;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: lowercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: var(--transition-base);
}

.logo-text span {
    display: inline-block;
    transition: var(--transition-base);
}

.logo-un {
    color: #FFFFFF;
    font-weight: 300;
    opacity: 0.95;
}

.logo-mundo {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.logo-loco {
    color: #FFFFFF;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
}

.logo-link-text:hover .logo-mundo {
    transform: translateY(-3px);
    text-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.logo-link-text:hover .logo-un,
.logo-link-text:hover .logo-loco {
    opacity: 1;
    transform: translateY(-2px);
}

.tagline {
    font-size: 1.125rem;
    color: #CBD5E1;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.tagline::before {
    content: '✦';
    margin-right: 0.5rem;
    color: var(--color-accent);
    opacity: 0.8;
}

.tagline::after {
    content: '✦';
    margin-left: 0.5rem;
    color: var(--color-accent);
    opacity: 0.8;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 24px;
    transition: var(--transition-base);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-link.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* ============================================
   FEATURED POST
   ============================================ */

.featured {
    position: relative;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
    cursor: pointer;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.2), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    background: var(--color-bg);
    border: 2px solid transparent;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
}

.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.4), 0 15px 30px -10px rgba(0, 0, 0, 0.2);
    border-color: var(--color-primary);
}

.featured:hover::before {
    opacity: 1;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.featured:hover .featured-image {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, transparent 100%);
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
    color: white;
}

.featured-category {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -1px;
}

.featured-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.featured-meta {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ============================================
   NEWS GRID
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.news-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border-light);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
    pointer-events: none;
}

.news-card .news-image {
    position: relative;
    overflow: hidden;
}

.news-card .news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover .news-image::after {
    opacity: 1;
}

.news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
    overflow: hidden;
}

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

.news-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.news-content::after {
    content: '→';
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    font-size: 1.5rem;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-base);
}

.news-card:hover .news-content::after {
    opacity: 1;
    transform: translateX(0);
}

.news-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    padding: 0.35rem var(--spacing-sm);
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
    align-self: flex-start;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    transition: var(--transition-base);
}

.news-card:hover .news-category {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    color: var(--color-text-primary);
    letter-spacing: -0.3px;
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.news-card:hover .news-title {
    color: var(--color-primary);
}

.news-excerpt {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.7;
    font-size: 0.95rem;
}

.news-meta {
    font-size: 0.875rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border-light);
}

/* ============================================
   ARTICLE FULL
   ============================================ */

.article-full {
    max-width: 900px;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    background: var(--color-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border-light);
    position: relative;
}

.article-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.article-header {
    margin-bottom: var(--spacing-xl);
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -1.5px;
}

.article-meta {
    font-size: 1.05rem;
    color: var(--color-text-light);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--color-border);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.article-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 400;
}

.article-content p {
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.article-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 5px solid var(--color-primary);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--color-text-secondary);
    background: var(--color-bg-lighter);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.article-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
    box-shadow: var(--shadow-md);
}

.article-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.article-content a:hover {
    color: var(--color-primary-dark);
    text-decoration-thickness: 2px;
}

.article-content strong {
    font-weight: 700;
    color: var(--color-text-primary);
}

.article-content em {
    font-style: italic;
    color: var(--color-text-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white !important;
    padding: 0.875rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: var(--color-accent);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ============================================
   RELATED SECTION
   ============================================ */

.related-section {
    margin-bottom: var(--spacing-2xl);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-top: var(--spacing-2xl);
    font-size: 0.95rem;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
}

.footer p {
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* ============================================
   LOADING STATE
   ============================================ */

.loading {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.loading::after {
    content: "Cargando...";
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animación de entrada para elementos */
.news-card,
.featured,
.article-full {
    animation: fadeInUp 0.6s ease-out;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }
.news-card:nth-child(5) { animation-delay: 0.5s; }
.news-card:nth-child(6) { animation-delay: 0.6s; }

.header {
    animation: fadeIn 0.8s ease-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .featured {
        height: 500px;
    }

    .featured-title {
        font-size: 2.5rem;
    }

    .article-title {
        font-size: 2.75rem;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    .header {
        padding: var(--spacing-lg) 0;
    }

    .logo {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .featured {
        height: 400px;
    }

    .featured-overlay {
        padding: var(--spacing-lg);
    }

    .featured-title {
        font-size: 1.875rem;
    }

    .featured-excerpt {
        font-size: 1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .article-full {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-lg);
    }

    .article-title {
        font-size: 2rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.75rem;
    }

    .article-content h3 {
        font-size: 1.375rem;
    }

    .article-content blockquote {
        font-size: 1.125rem;
        padding: var(--spacing-md);
    }

    .nav {
        gap: var(--spacing-xs);
    }

    .nav-link {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.875rem;
    }

    .featured {
        height: 320px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .news-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
    display: none !important;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    animation: fadeIn var(--transition-base) ease-out;
}

/* Mejor scroll */
html {
    scroll-padding-top: 2rem;
}

/* Selección de texto */
::selection {
    background: var(--color-primary);
    color: white;
}

::-moz-selection {
    background: var(--color-primary);
    color: white;
}
