/* ================================================
   FEEDCURATO® BUNDLE CSS v1.0
   /themes/common/bundle.css
   
   Archivo único combinado para mejor LCP.
   Carga después de theme.css (variables)
   
   Generado: 2024-12-28
   ================================================ */

/* ========== 1. RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: var(--font-body-size, 16px);
    font-weight: var(--font-body-weight, 400);
    background: var(--bg, #0a0a0f);
    color: var(--text, #ffffff);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 70px;
    background: var(--header-bg, rgba(10, 10, 15, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border, #1e1e2a);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.header-left { display: flex; align-items: center; gap: 12px; }
.header-right { display: flex; align-items: center; gap: 8px; }

.logo { display: flex; align-items: center; font-size: 22px; font-weight: 800; color: var(--accent, #6366f1); }
.logo img { height: 70px; max-width: 300px; object-fit: contain; vertical-align: middle; }

/* ========== NAV ========== */
.nav { display: flex; justify-content: center; gap: 6px; }
.nav a { padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--muted, #9ca3af); border-radius: 8px; transition: all 0.2s ease; }
.nav a:hover { background: rgba(99, 102, 241, 0.15); color: var(--text, #ffffff); }
.nav a.active { background: var(--accent, #6366f1); color: #ffffff; }
.nav-mobile { display: none; }

/* ========== MENU TOGGLE ========== */
.menu-toggle { display: flex; width: 40px; height: 40px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 8px; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle svg { width: 20px; height: 20px; stroke: var(--text, #ffffff); fill: none; stroke-width: 2; }

/* ========== MAIN ========== */
.main { padding-top: 76px; max-width: 1300px; margin: 0 auto; padding-left: 24px; padding-right: 24px; padding-bottom: 40px; }

/* ========== HERO ========== */
.hero { margin-top: 32px; margin-bottom: 48px; }
.hero-article { position: relative; height: 500px; border-radius: 20px; overflow: hidden; display: block; }
.hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; }
.hero-category { display: inline-block; padding: 6px 14px; background: var(--accent, #6366f1); border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 16px; color: #ffffff; }
.hero-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 42px); font-weight: var(--font-title-weight, 800); line-height: 1.2; margin-bottom: 12px; max-width: 800px; color: #ffffff; }
.hero-meta { font-size: 14px; color: var(--muted, #9ca3af); }

/* ========== SECTIONS ========== */
.section { margin-bottom: 48px; }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--border, #1e1e2a); }
.section-dot { width: 12px; height: 12px; border-radius: 3px; }
.section-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 20px; font-weight: var(--font-title-weight, 700); color: var(--text, #ffffff); }
.section-link { margin-left: auto; font-size: 13px; color: var(--muted, #9ca3af); transition: color 0.2s; }
.section-link:hover { color: var(--accent, #6366f1); }

/* ========== ARTICLES GRID ========== */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.article-card { background: var(--card, #12121a); border-radius: 16px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.article-image { height: 220px; background-size: cover; background-position: center; background-color: var(--border, #1e1e2a); }
.article-body { padding: 20px; }
.article-category { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; color: #ffffff; }
.article-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 18px; font-weight: var(--font-title-weight, 700); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; color: var(--text, #ffffff); }
.article-meta { font-size: 13px; color: var(--muted, #9ca3af); }
.article-card .article-title { transition: color 0.2s ease; }
.article-card:hover .article-title { color: var(--accent, #6366f1); }

/* ========== ARTICLE SINGLE ========== */
.article { padding-top: 5px; max-width: 800px; margin: 0 auto; padding-left: 24px; padding-right: 24px; padding-bottom: 60px; }

.ad-billboard { display: flex; justify-content: center; padding-top: 10px; padding-bottom: 10px; margin-top: 20px; }
.ad-billboard img { max-width: 100%; height: auto; border-radius: 8px; }

.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 12px; margin-bottom: 16px; margin-top: 16px; }
.breadcrumbs a { color: var(--muted, #9ca3af); }
.breadcrumbs a:hover { color: var(--accent, #6366f1); }
.breadcrumbs .separator { color: var(--border, #1e1e2a); }
.breadcrumbs .current { color: var(--muted, #9ca3af); }

.article-header { padding-bottom: 24px; }
.article-header .article-category { display: inline-block; padding: 6px 14px; background: var(--accent, #6366f1); border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 16px; color: #ffffff; }
.article-header .article-category:hover { text-decoration: none; filter: brightness(1.1); }
.article-header .article-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 42px); font-weight: var(--font-title-weight, 800); line-height: 1.2; margin-bottom: 20px; display: block; -webkit-line-clamp: unset; color: var(--text, #ffffff); }

.article-summary { font-family: var(--font-body, 'Merriweather', serif); font-size: calc(var(--font-body-size, 16px) + 2px); font-style: italic; line-height: 1.7; color: #b0b0b0; margin-bottom: 20px; }

.article-meta-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border, #1e1e2a); }
.article-meta-row .article-meta { display: flex; align-items: center; gap: 16px; }
.article-meta-row .author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.article-meta-row .author-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent, #6366f1), #8b5cf6); display: flex; align-items: center; justify-content: center; font-weight: 600; color: #fff; }
.article-meta-row .author-name { font-weight: 600; color: var(--text, #ffffff); }
.meta-separator { width: 4px; height: 4px; border-radius: 50%; background: var(--border, #3a3a4a); }
.time-fresh { color: #10b981; }

.share-btn { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 8px; color: var(--text, #ffffff); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.share-btn:hover { border-color: var(--accent, #6366f1); background: rgba(99, 102, 241, 0.1); }
.share-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.article-featured-image { width: 100%; border-radius: 12px; margin-bottom: 24px; }
.article-featured-figure { margin: 0 0 24px 0; }
.article-featured-figure img { width: 100%; border-radius: 12px; }
.article-featured-figure figcaption { font-size: 13px; color: #71717a; margin-top: 8px; text-align: center; }

.article-content { font-family: var(--font-body, 'Inter', sans-serif); font-size: var(--font-body-size, 16px); line-height: 1.8; color: #d0d0d0; }
.article-content p { margin-bottom: 24px; }
.article-content h2 { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 28px; font-weight: 700; margin: 48px 0 16px; color: var(--text, #ffffff); }
.article-content h3 { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 22px; font-weight: 600; margin: 40px 0 12px; color: var(--text, #ffffff); }
.article-content blockquote { border-left: 4px solid var(--accent, #6366f1); padding-left: 24px; margin: 32px 0; font-style: italic; color: #a0a0a0; }
.article-content ul, .article-content ol { margin: 16px 0 24px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content a { color: var(--accent, #6366f1); text-decoration: underline; }
.article-content a:hover { color: #818cf8; }
.article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.article-content figcaption { font-size: 13px; color: #71717a; text-align: center; margin-top: 8px; }

.article-tags { display: flex; flex-wrap: wrap; gap: 10px; padding: 24px 0; border-bottom: 1px solid var(--border, #1e1e2a); margin-bottom: 24px; }
.tag { padding: 6px 14px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 20px; font-size: 12px; color: var(--muted, #9ca3af); transition: all 0.2s; }
.tag:hover { border-color: var(--accent, #6366f1); color: var(--text, #ffffff); }

.cta-horizontal { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 12px; margin-bottom: 24px; }
.cta-horizontal .cta-text { font-size: 16px; font-weight: 500; color: var(--text, #ffffff); }
.cta-horizontal .cta-text span { display: block; font-size: 13px; color: var(--muted, #9ca3af); margin-top: 4px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--accent, #6366f1); border-radius: 8px; color: #ffffff; font-weight: 600; font-size: 14px; transition: all 0.2s; white-space: nowrap; }
.cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.cta-btn svg { width: 16px; height: 16px; }

.tldr-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: rgba(21, 99, 89, 0.1); border: 1px solid rgba(21, 99, 89, 0.4); border-radius: 12px; margin-bottom: 24px; }
.tldr-badge { padding: 6px 12px; background: rgba(21, 99, 89, 0.4); border-radius: 6px; font-size: 12px; font-weight: 700; color: #2dd4bf; white-space: nowrap; }
.tldr-text { font-size: 13px; color: var(--muted, #9ca3af); line-height: 1.5; }
.tldr-link { color: #2dd4bf; text-decoration: underline; }
.tldr-link:hover { color: #5eead4; }

.related-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border, #1e1e2a); }
.related-section h3 { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--text, #ffffff); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: var(--card, #12121a); border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
.related-card:hover { transform: translateY(-4px); }
.related-image { height: 140px; background-size: cover; background-position: center; background-color: var(--border, #1e1e2a); }
.related-body { padding: 16px; }
.related-card-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 14px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--text, #ffffff); }

/* ========== PAGINATION ========== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { padding: 10px 16px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 8px; color: var(--muted, #9ca3af); font-size: 14px; transition: all 0.2s; }
.pagination a:hover { border-color: var(--accent, #6366f1); color: var(--text, #ffffff); }
.pagination span.current { background: var(--accent, #6366f1); border-color: var(--accent, #6366f1); color: #ffffff; }

/* ========== PAGE HEADER ========== */
.page-header { margin-bottom: 32px; }
.page-header h1 { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 32px); font-weight: var(--font-title-weight, 800); margin-bottom: 8px; color: var(--text, #ffffff); }
.page-header p { font-size: 16px; color: var(--muted, #9ca3af); }

/* ========== FOOTER ========== */
.footer { text-align: center; padding: 60px 24px 32px; background: var(--footer-bg, linear-gradient(180deg, var(--bg) 0%, var(--card) 100%)); border-top: 1px solid var(--border, #1e1e2a); margin-top: 40px; }
.footer-logo { display: inline-flex; align-items: center; font-size: 28px; font-weight: 800; color: var(--accent, #6366f1); margin-bottom: 12px; }
.footer-logo img { height: 80px; max-width: 300px; object-fit: contain; }
.footer-tagline { color: var(--muted, #9ca3af); font-size: 14px; margin-bottom: 24px; }
.footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; }
.footer-social a { width: 42px; height: 42px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--muted, #9ca3af); transition: all 0.2s; }
.footer-social a:hover { border-color: transparent; color: #ffffff; }
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social a.facebook:hover { background: #1877f2; }
.footer-social a.twitter:hover { background: #000000; }
.footer-social a.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social a.youtube:hover { background: #ff0000; }
.footer-social a.tiktok:hover { background: #000000; }
.footer-social a.linkedin:hover { background: #0a66c2; }
.footer-social a.telegram:hover { background: #0088cc; }
.footer-social a.whatsapp:hover { background: #25d366; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.footer-links a { color: var(--muted, #9ca3af); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent, #6366f1); }
.footer-divider { width: 60px; height: 1px; background: var(--border, #1e1e2a); margin: 0 auto 20px; }
.footer-copyright { color: #475569; font-size: 12px; }

/* ========== COOKIE POPUP ========== */
.cookie-popup { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--card, #12121a); border-top: 1px solid var(--border, #1e1e2a); padding: 20px 24px; z-index: 1000; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-icon { font-size: 24px; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; margin-bottom: 4px; color: var(--text, #ffffff); }
.cookie-text p { color: var(--muted, #9ca3af); font-size: 13px; margin: 0; }
.cookie-buttons { display: flex; gap: 12px; }
.cookie-btn { padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: all 0.2s; }
.cookie-accept { background: var(--accent, #6366f1); color: #ffffff; }
.cookie-accept:hover { filter: brightness(1.1); }
.cookie-more { background: var(--border, #1e1e2a); color: var(--text, #ffffff); text-decoration: none; display: flex; align-items: center; }

/* ========== EMPTY STATE ========== */
.empty { text-align: center; padding: 80px 20px; color: var(--muted, #9ca3af); }
.empty-icon { width: 80px; height: 80px; background: var(--card, #12121a); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.empty-icon svg { width: 40px; height: 40px; stroke: var(--muted, #9ca3af); fill: none; stroke-width: 1.5; }

/* ========== SIDEBAR TOGGLE ========== */
.sidebar-toggle { width: 40px; height: 40px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.sidebar-toggle:hover { background: rgba(99, 102, 241, 0.15); border-color: var(--accent, #6366f1); }
.sidebar-toggle svg { width: 20px; height: 20px; stroke: var(--text, #ffffff); fill: none; stroke-width: 2; }

/* ========== SEARCH BUTTON ========== */
.search-btn { width: 40px; height: 40px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.search-btn:hover { background: rgba(99, 102, 241, 0.15); border-color: var(--accent, #6366f1); }
.search-btn svg { width: 18px; height: 18px; stroke: var(--text, #ffffff); fill: none; stroke-width: 2; }

/* ========== SIDEBAR MENU ========== */
.sidebar-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); z-index: 200; }
.sidebar-overlay.active { display: block; }
.sidebar-menu { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background: var(--bg, #0a0a0f); border-right: 1px solid var(--border, #1e1e2a); z-index: 201; transition: left 0.3s ease, visibility 0.3s ease; display: flex; flex-direction: column; overflow: hidden; visibility: hidden; }
.sidebar-menu.active { left: 0; visibility: visible; }
.sidebar-header { padding: 16px 20px; border-bottom: 1px solid var(--border, #1e1e2a); display: flex; align-items: center; justify-content: space-between; }
.sidebar-logo { display: flex; align-items: center; overflow: hidden; font-size: 18px; font-weight: 800; color: var(--accent, #6366f1); }
.sidebar-logo img { height: 50px; max-width: 200px; object-fit: contain; }
.sidebar-close { width: 36px; height: 36px; border-radius: 8px; background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); color: var(--text, #ffffff); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.sidebar-close:hover { background: rgba(99, 102, 241, 0.15); border-color: var(--accent, #6366f1); }
.sidebar-close svg { width: 18px; height: 18px; stroke: var(--text, #ffffff); stroke-width: 2; fill: none; }
.sidebar-nav { flex: 1; padding: 16px; overflow-y: auto; }
.sidebar-nav a { display: block; padding: 12px 16px; color: var(--muted, #9ca3af); text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 8px; transition: all 0.2s; }
.sidebar-nav a:hover { background: rgba(99, 102, 241, 0.15); color: var(--text, #ffffff); }

/* ========== SEARCH MODAL ========== */
.search-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 10, 15, 0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 300; align-items: flex-start; justify-content: center; padding: 100px 20px; }
.search-modal.active { display: flex; }
.search-modal-content { background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 12px; width: 100%; max-width: 560px; overflow: hidden; animation: searchSlideDown 0.2s ease; }
@keyframes searchSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.search-modal-form { display: contents; }
.search-modal-header { padding: 16px 20px; border-bottom: 1px solid var(--border, #1e1e2a); display: flex; align-items: center; gap: 12px; }
.search-modal-header svg { width: 20px; height: 20px; stroke: var(--muted, #9ca3af); stroke-width: 2; fill: none; flex-shrink: 0; }
.search-modal-input { flex: 1; background: transparent; border: none; color: var(--text, #ffffff); font-size: 16px; font-family: inherit; outline: none; }
.search-modal-input::placeholder { color: var(--muted, #9ca3af); }
.search-modal-close { background: var(--border, #1e1e2a); border: none; color: var(--muted, #9ca3af); padding: 4px 10px; border-radius: 4px; font-size: 11px; cursor: pointer; font-weight: 500; font-family: inherit; transition: all 0.2s; }
.search-modal-close:hover { background: var(--accent, #6366f1); color: #ffffff; }
.search-modal-hint { padding: 16px 20px; text-align: center; color: var(--muted, #9ca3af); font-size: 13px; }
.search-modal-hint kbd { background: var(--border, #1e1e2a); padding: 3px 6px; border-radius: 4px; font-size: 11px; margin: 0 2px; color: var(--text, #ffffff); }

/* ================================================
   2. HERO STYLES (CON VARIABLES DE FUENTE)
   ================================================ */

/* ============================================
   HERO 1+2
   ============================================ */
.hero-1plus2 { margin-top: 32px; margin-bottom: 48px; }
.hero-layout-1plus2 { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; height: 450px; }
.hero-layout-1plus2 .hero-main { position: relative; border-radius: 16px; overflow: hidden; text-decoration: none; }
.hero-layout-1plus2 .hero-main .hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-layout-1plus2 .hero-main .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.hero-layout-1plus2 .hero-main .hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
.hero-layout-1plus2 .hero-main .hero-category { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; color: white; }
.hero-layout-1plus2 .hero-main .hero-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 34px); font-weight: var(--font-title-weight, 800); line-height: 1.2; margin-bottom: 12px; color: white; }
.hero-layout-1plus2 .hero-main .hero-meta { font-size: 13px; color: var(--muted); margin: 0; }
.hero-layout-1plus2 .hero-sidebar { display: flex; flex-direction: column; gap: 16px; }
.hero-layout-1plus2 .hero-small { flex: 1; position: relative; border-radius: 14px; overflow: hidden; text-decoration: none; }
.hero-layout-1plus2 .hero-small .hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-layout-1plus2 .hero-small .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%); }
.hero-layout-1plus2 .hero-small .hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; }
.hero-layout-1plus2 .hero-small .hero-category { display: inline-block; padding: 4px 10px; border-radius: 10px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: white; }
.hero-layout-1plus2 .hero-small .hero-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 16px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; color: white; }
.hero-layout-1plus2 .hero-small .hero-meta { font-size: 11px; color: var(--muted); margin: 0; }

/* ============================================
   HERO 1+4
   ============================================ */
.hero-1plus4 { margin-top: 32px; margin-bottom: 48px; }
.hero-layout-1plus4 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; height: 520px; }
.hero-layout-1plus4 .hero-main { position: relative; border-radius: 16px; overflow: hidden; text-decoration: none; }
.hero-layout-1plus4 .hero-main .hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-layout-1plus4 .hero-main .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.hero-layout-1plus4 .hero-main .hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
.hero-layout-1plus4 .hero-main .hero-category { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; color: white; }
.hero-layout-1plus4 .hero-main .hero-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 32px); font-weight: var(--font-title-weight, 800); line-height: 1.2; margin-bottom: 12px; color: white; }
.hero-layout-1plus4 .hero-main .hero-meta { font-size: 13px; color: var(--muted); margin: 0; }
.hero-layout-1plus4 .hero-sidebar { display: flex; flex-direction: column; gap: 12px; }
.hero-layout-1plus4 .hero-small { flex: 1; position: relative; border-radius: 12px; overflow: hidden; text-decoration: none; }
.hero-layout-1plus4 .hero-small .hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-layout-1plus4 .hero-small .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%); }
.hero-layout-1plus4 .hero-small .hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; }
.hero-layout-1plus4 .hero-small .hero-category { display: inline-block; padding: 4px 10px; border-radius: 10px; font-size: 9px; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; color: white; }
.hero-layout-1plus4 .hero-small .hero-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 14px; font-weight: 600; line-height: 1.3; color: white; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }

/* ============================================
   HERO 2x2
   ============================================ */
.hero-2x2 { margin-top: 32px; margin-bottom: 48px; }
.hero-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px; gap: 16px; }
.hero-grid-2x2 .hero-item { position: relative; border-radius: 16px; overflow: hidden; text-decoration: none; }
.hero-grid-2x2 .hero-item .hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-grid-2x2 .hero-item .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%); }
.hero-grid-2x2 .hero-item .hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.hero-grid-2x2 .hero-item .hero-category { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; color: white; }
.hero-grid-2x2 .hero-item .hero-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; color: white; }
.hero-grid-2x2 .hero-item.large .hero-title { font-size: 22px; }
.hero-grid-2x2 .hero-item .hero-meta { font-size: 12px; color: var(--muted); margin: 0; }

/* ============================================
   HERO 4+1
   ============================================ */
.hero-4plus1-section { margin-top: 32px; margin-bottom: 48px; }
.hero-4plus1-grid { display: grid; grid-template-columns: 1fr 1fr 2fr; grid-template-rows: 240px 240px; gap: 16px; }
.hero-4plus1-main, .hero-4plus1-card { position: relative; border-radius: 14px; overflow: hidden; text-decoration: none; display: block; }
.hero-4plus1-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.hero-4plus1-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-4plus1-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.hero-4plus1-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.hero-4plus1-main { grid-column: 3; grid-row: 1 / 3; }
.hero-4plus1-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-4plus1-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%); }
.hero-4plus1-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.hero-4plus1-main .hero-4plus1-content { padding: 30px; }
.hero-4plus1-cat { display: inline-block; padding: 4px 10px; border-radius: 10px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: white; }
.hero-4plus1-main .hero-4plus1-cat { padding: 6px 14px; border-radius: 20px; font-size: 11px; margin-bottom: 12px; }
.hero-4plus1-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 15px; font-weight: 600; line-height: 1.35; color: white; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-4plus1-title-main { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 28px); font-weight: var(--font-title-weight, 800); line-height: 1.2; color: white; margin: 0 0 10px 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-4plus1-time { font-size: 11px; color: rgba(255,255,255,0.6); margin: 8px 0 0 0; }
.hero-4plus1-main .hero-4plus1-time { font-size: 13px; }

/* ============================================
   HERO GRID 6
   ============================================ */
.hero-grid6-section { margin-top: 32px; margin-bottom: 48px; }
.hero-grid6-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hero-grid6-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; display: block; }
.hero-grid6-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.4); border-color: var(--accent); }
.hero-grid6-image { height: 180px; background-size: cover; background-position: center; background-color: var(--border); }
.hero-grid6-content { padding: 16px; }
.hero-grid6-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 12px; }
.hero-grid6-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hero-grid6-cat { font-weight: 500; }
.hero-grid6-sep, .hero-grid6-time { color: var(--muted); }
.hero-grid6-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 18px; font-weight: 600; line-height: 1.45; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }

/* ============================================
   HERO MAGAZINE
   ============================================ */
.hero-magazine-section { margin-top: 32px; margin-bottom: 48px; }
.hero-magazine-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 16px; }
.hero-magazine-main, .hero-magazine-card { position: relative; border-radius: 14px; overflow: hidden; text-decoration: none; display: block; }
.hero-magazine-main { grid-row: span 2; }
.hero-magazine-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-magazine-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%); }
.hero-magazine-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.hero-magazine-main .hero-magazine-content { padding: 30px; }
.hero-magazine-cat { display: inline-block; padding: 4px 10px; border-radius: 10px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: white; }
.hero-magazine-main .hero-magazine-cat { padding: 6px 14px; border-radius: 20px; font-size: 11px; margin-bottom: 12px; }
.hero-magazine-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 15px; font-weight: 600; line-height: 1.35; color: white; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-magazine-title-main { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 28px); font-weight: var(--font-title-weight, 800); line-height: 1.2; color: white; margin: 0 0 10px 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-magazine-time { font-size: 11px; color: rgba(255,255,255,0.6); margin: 8px 0 0 0; }
.hero-magazine-main .hero-magazine-time { font-size: 13px; }

/* ============================================
   HERO NEWSPAPER 1
   ============================================ */
.hero-np1-section { margin-top: 32px; margin-bottom: 48px; }
.hero-np1-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 20px; min-height: 500px; }
.hero-np1-left { display: flex; flex-direction: column; gap: 16px; }
.hero-np1-card { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: border-color 0.2s; }
.hero-np1-card:hover { border-color: var(--accent); }
.hero-np1-card-img { height: 120px; background-size: cover; background-position: center; background-color: var(--border); }
.hero-np1-card-content { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.hero-np1-card-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text); margin: 0 0 auto 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-np1-cat { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: white; width: fit-content; }
.hero-np1-time { font-size: 12px; color: var(--muted); margin-top: 8px; }
.hero-np1-main { position: relative; border-radius: 14px; overflow: hidden; text-decoration: none; display: block; }
.hero-np1-main-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-np1-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%); }
.hero-np1-main-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
.hero-np1-main-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 26px); font-weight: var(--font-title-weight, 800); line-height: 1.25; color: white; margin: 0 0 10px 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-np1-excerpt { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0 0 10px 0; }
.hero-np1-main .hero-np1-time { color: rgba(255,255,255,0.6); }
.hero-np1-right { display: flex; flex-direction: column; }
.hero-np1-right-header { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--accent); padding-bottom: 10px; border-bottom: 2px solid var(--accent); margin-bottom: 8px; }
.hero-np1-list-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.2s; }
.hero-np1-list-item:hover { background: rgba(99, 102, 241, 0.05); }
.hero-np1-list-item:last-child { border-bottom: none; }
.hero-np1-list-num { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--border); border-radius: 6px; font-size: 12px; font-weight: 700; color: var(--muted); flex-shrink: 0; }
.hero-np1-list-content { flex: 1; min-width: 0; }
.hero-np1-list-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--text); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================
   HERO NEWSPAPER 2
   ============================================ */
.hero-np2-section { margin-top: 32px; margin-bottom: 48px; }
.hero-np2-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; min-height: 380px; margin-bottom: 20px; }
.hero-np2-main { position: relative; border-radius: 14px; overflow: hidden; text-decoration: none; display: block; }
.hero-np2-main-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-np2-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%); }
.hero-np2-main-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
.hero-np2-main-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 26px); font-weight: var(--font-title-weight, 800); line-height: 1.25; color: white; margin: 0 0 10px 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-np2-cat { display: inline-block; padding: 5px 12px; border-radius: 6px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; color: white; }
.hero-np2-cat-sm { display: inline-block; width: fit-content; padding: 3px 8px; border-radius: 4px; font-size: 9px; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; color: white; }
.hero-np2-time { font-size: 12px; color: var(--muted); }
.hero-np2-main .hero-np2-time { color: rgba(255,255,255,0.6); }
.hero-np2-sidebar { display: flex; flex-direction: column; gap: 12px; }
.hero-np2-sidebar-item { display: flex; gap: 12px; padding: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; text-decoration: none; flex: 1; transition: border-color 0.2s; }
.hero-np2-sidebar-item:hover { border-color: var(--accent); }
.hero-np2-sidebar-img { width: 90px; height: 90px; flex-shrink: 0; background-size: cover; background-position: center; background-color: var(--border); border-radius: 8px; }
.hero-np2-sidebar-content { flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.hero-np2-sidebar-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--text); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-np2-bottom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hero-np2-bottom-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; transition: border-color 0.2s; }
.hero-np2-bottom-card:hover { border-color: var(--accent); }
.hero-np2-bottom-img { height: 110px; background-size: cover; background-position: center; background-color: var(--border); }
.hero-np2-bottom-content { padding: 12px; }
.hero-np2-bottom-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--text); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================
   HERO NEWSPAPER 3
   ============================================ */
.hero-np3-section { margin-top: 32px; margin-bottom: 48px; }
.hero-np3-ticker { background: #dc2626; color: white; padding: 10px 16px; border-radius: 8px; display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-np3-ticker-label { display: flex; align-items: center; gap: 6px; background: white; color: #dc2626; padding: 4px 10px; border-radius: 4px; font-weight: 700; font-size: 11px; text-transform: uppercase; flex-shrink: 0; }
.hero-np3-ticker-dot { width: 8px; height: 8px; background: #dc2626; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-np3-ticker-text { flex: 1; font-weight: 500; font-size: 13px; color: white; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-np3-ticker-text:hover { text-decoration: underline; }
.hero-np3-main-row { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; min-height: 340px; margin-bottom: 20px; }
.hero-np3-hero { position: relative; border-radius: 14px; overflow: hidden; text-decoration: none; display: block; }
.hero-np3-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--border); }
.hero-np3-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%); }
.hero-np3-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
.hero-np3-hero-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 24px); font-weight: var(--font-title-weight, 800); line-height: 1.25; color: white; margin: 0 0 8px 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-np3-cat { display: inline-block; padding: 5px 12px; border-radius: 6px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; color: white; }
.hero-np3-cat-sm { display: inline-block; width: fit-content; padding: 3px 8px; border-radius: 4px; font-size: 9px; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; color: white; }
.hero-np3-time { font-size: 11px; color: var(--muted); }
.hero-np3-hero .hero-np3-time { color: rgba(255,255,255,0.6); }
.hero-np3-aside { display: flex; flex-direction: column; gap: 12px; }
.hero-np3-aside-card { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 16px; text-decoration: none; display: flex; flex-direction: column; justify-content: center; transition: border-color 0.2s; }
.hero-np3-aside-card:hover { border-color: var(--accent); }
.hero-np3-aside-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-np3-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.hero-np3-column-title { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--accent); padding-bottom: 10px; border-bottom: 2px solid var(--accent); margin-bottom: 12px; }
.hero-np3-column-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.2s; }
.hero-np3-column-item:hover { background: rgba(99, 102, 241, 0.05); }
.hero-np3-column-item:last-child { border-bottom: none; }
.hero-np3-column-img { width: 70px; height: 70px; flex-shrink: 0; background-size: cover; background-position: center; background-color: var(--border); border-radius: 8px; }
.hero-np3-column-content { flex: 1; min-width: 0; }
.hero-np3-column-item-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: 12px; font-weight: 600; line-height: 1.4; color: var(--text); margin: 0 0 4px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ================================================
   3. HERO RESPONSIVE
   ================================================ */

@media (max-width: 992px) {
    .hero-layout-1plus2 { grid-template-columns: 1fr; height: auto; }
    .hero-layout-1plus2 .hero-main { height: 350px; }
    .hero-layout-1plus2 .hero-sidebar { flex-direction: row; }
    .hero-layout-1plus2 .hero-small { height: 200px; }
    
    .hero-layout-1plus4 { grid-template-columns: 1fr; height: auto; }
    .hero-layout-1plus4 .hero-main { height: 350px; }
    .hero-layout-1plus4 .hero-sidebar { flex-direction: row; flex-wrap: wrap; }
    .hero-layout-1plus4 .hero-small { flex: 1 1 calc(50% - 6px); height: 180px; }
    
    .hero-4plus1-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 200px 200px; }
    .hero-4plus1-main { grid-column: 1 / 3; grid-row: 1; }
    .hero-4plus1-card:nth-child(1) { grid-column: 1; grid-row: 2; }
    .hero-4plus1-card:nth-child(2) { grid-column: 2; grid-row: 2; }
    .hero-4plus1-card:nth-child(3) { grid-column: 1; grid-row: 3; }
    .hero-4plus1-card:nth-child(4) { grid-column: 2; grid-row: 3; }
    
    .hero-grid6-container { grid-template-columns: repeat(2, 1fr); }
    
    .hero-magazine-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 200px 200px; }
    .hero-magazine-main { grid-column: span 2; grid-row: span 1; }
    
    .hero-np1-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; min-height: auto; }
    .hero-np1-main { grid-column: 1 / 3; grid-row: 1; height: 350px; }
    .hero-np1-left { flex-direction: row; grid-column: 1 / 3; }
    .hero-np1-right { grid-column: 1 / 3; }
    
    .hero-np2-top { grid-template-columns: 1fr; min-height: auto; }
    .hero-np2-main { height: 300px; }
    .hero-np2-sidebar { flex-direction: row; }
    .hero-np2-sidebar-item { flex-direction: column; }
    .hero-np2-sidebar-img { width: 100%; height: 100px; }
    .hero-np2-bottom { grid-template-columns: repeat(2, 1fr); }
    
    .hero-np3-main-row { grid-template-columns: 1fr; min-height: auto; }
    .hero-np3-hero { height: 300px; }
    .hero-np3-aside { flex-direction: row; }
    .hero-np3-columns { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-article { height: 380px; border-radius: 16px; }
    .hero-title { font-size: min(var(--font-title-size, 42px), 28px); }
    .hero-content { padding: 24px; }
    
    .hero-grid-2x2 { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
}

@media (max-width: 576px) {
    .hero-article { height: 320px; border-radius: 12px; }
    .hero-title { font-size: min(var(--font-title-size, 42px), 24px); }
    .hero-content { padding: 20px; }
    .hero-category { font-size: 10px; padding: 5px 10px; }
    
    .hero-layout-1plus2 .hero-main { height: 300px; }
    .hero-layout-1plus2 .hero-main .hero-title { font-size: min(var(--font-title-size, 34px), 26px); }
    .hero-layout-1plus2 .hero-sidebar { flex-direction: column; }
    .hero-layout-1plus2 .hero-small { height: 180px; }
    
    .hero-layout-1plus4 .hero-main { height: 300px; }
    .hero-layout-1plus4 .hero-main .hero-title { font-size: min(var(--font-title-size, 32px), 24px); }
    .hero-layout-1plus4 .hero-small { flex: 1 1 100%; height: 150px; }
    
    .hero-4plus1-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hero-4plus1-main { grid-column: 1; grid-row: 1; height: 300px; }
    .hero-4plus1-card { height: 180px; }
    .hero-4plus1-card:nth-child(1) { grid-column: 1; grid-row: 2; }
    .hero-4plus1-card:nth-child(2) { grid-column: 1; grid-row: 3; }
    .hero-4plus1-card:nth-child(3) { grid-column: 1; grid-row: 4; }
    .hero-4plus1-card:nth-child(4) { grid-column: 1; grid-row: 5; }
    .hero-4plus1-title-main { font-size: min(var(--font-title-size, 28px), 22px); }
    
    .hero-grid6-container { grid-template-columns: 1fr; gap: 16px; }
    .hero-grid6-image { height: 200px; }
    
    .hero-magazine-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hero-magazine-main { grid-column: span 1; height: 300px; }
    .hero-magazine-card { height: 180px; }
    .hero-magazine-title-main { font-size: min(var(--font-title-size, 28px), 22px); }
    
    .hero-np1-left { flex-direction: column; }
    .hero-np1-main { height: 280px; }
    .hero-np1-main-title { font-size: min(var(--font-title-size, 26px), 20px); }
    
    .hero-np2-sidebar { flex-direction: column; }
    .hero-np2-sidebar-item { flex-direction: row; }
    .hero-np2-sidebar-img { width: 80px; height: 80px; }
    .hero-np2-bottom { grid-template-columns: 1fr; }
    .hero-np2-main-title { font-size: min(var(--font-title-size, 26px), 20px); }
    
    .hero-np3-aside { flex-direction: column; }
    .hero-np3-hero-title { font-size: min(var(--font-title-size, 24px), 20px); }
    .hero-np3-ticker-text { font-size: 12px; }
}

/* ================================================
   4. MOBILE MENU
   ================================================ */

@media (max-width: 768px) {
    .nav-mobile.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--card, #12121a);
        border-bottom: 1px solid var(--border, #1e1e2a);
        padding: 0;
        margin: 0;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        animation: slideDown 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-mobile.active a {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        color: var(--muted, #9ca3af);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid var(--border, #1e1e2a);
        transition: all 0.2s ease;
    }
    
    .nav-mobile.active a:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--text, #ffffff);
    }
    
    .nav-mobile.active a .link-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(99, 102, 241, 0.15);
        border-radius: 8px;
        flex-shrink: 0;
        font-size: 18px;
        transition: all 0.2s ease;
    }
    
    .nav-mobile.active a:hover .link-icon { background: rgba(99, 102, 241, 0.25); }
    .nav-mobile.active a .link-text { flex: 1; display: block; }
    .nav-mobile.active a .link-count { display: none; }
    .nav-mobile.active a:last-child { border-bottom: none; }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* ================================================
   5. CATEGORY LAYOUTS
   ================================================ */

.articles-grid:not([class*="layout-"]) { grid-template-columns: repeat(3, 1fr); }

/* LAYOUT: EQUAL */
.articles-grid.layout-equal[data-count="1"] { grid-template-columns: 1fr; max-width: 600px; }
.articles-grid.layout-equal[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.articles-grid.layout-equal[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.articles-grid.layout-equal[data-count="4"] { grid-template-columns: repeat(4, 1fr); }
.articles-grid.layout-equal { grid-template-columns: repeat(3, 1fr); }

/* LAYOUT: BIG-LEFT */
.articles-grid.layout-big-left[data-count="2"] { grid-template-columns: 2fr 1fr; }
.articles-grid.layout-big-left[data-count="2"] .article-card:first-child .article-title { font-size: 22px; }
.articles-grid.layout-big-left[data-count="3"] { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.articles-grid.layout-big-left[data-count="3"] .article-card:first-child { grid-row: span 2; display: flex; flex-direction: column; }
.articles-grid.layout-big-left[data-count="3"] .article-card:first-child .article-image { flex: 1; aspect-ratio: auto; min-height: 250px; }
.articles-grid.layout-big-left[data-count="3"] .article-card:first-child .article-title { font-size: 22px; }
.articles-grid.layout-big-left[data-count="3"] .article-card:not(:first-child) .article-image { aspect-ratio: 16/9; }
.articles-grid.layout-big-left[data-count="4"] { grid-template-columns: 2fr 1fr; grid-template-rows: repeat(3, 1fr); }
.articles-grid.layout-big-left[data-count="4"] .article-card:first-child { grid-row: span 3; display: flex; flex-direction: column; }
.articles-grid.layout-big-left[data-count="4"] .article-card:first-child .article-image { flex: 1; aspect-ratio: auto; min-height: 300px; }
.articles-grid.layout-big-left[data-count="4"] .article-card:first-child .article-title { font-size: 22px; }
.articles-grid.layout-big-left[data-count="4"] .article-card:not(:first-child) .article-image { aspect-ratio: 16/9; }
.articles-grid.layout-big-left[data-count="4"] .article-card:not(:first-child) .article-body { padding: 12px; }
.articles-grid.layout-big-left[data-count="4"] .article-card:not(:first-child) .article-title { font-size: 14px; }

/* LAYOUT: BIG-RIGHT */
.articles-grid.layout-big-right[data-count="2"] { grid-template-columns: 1fr 2fr; }
.articles-grid.layout-big-right[data-count="2"] .article-card:last-child .article-title { font-size: 22px; }
.articles-grid.layout-big-right[data-count="3"] { grid-template-columns: 1fr 2fr; grid-template-rows: 1fr 1fr; }
.articles-grid.layout-big-right[data-count="3"] .article-card:last-child { grid-row: span 2; grid-column: 2; display: flex; flex-direction: column; }
.articles-grid.layout-big-right[data-count="3"] .article-card:first-child { grid-row: 1; grid-column: 1; }
.articles-grid.layout-big-right[data-count="3"] .article-card:nth-child(2) { grid-row: 2; grid-column: 1; }
.articles-grid.layout-big-right[data-count="3"] .article-card:last-child .article-image { flex: 1; aspect-ratio: auto; min-height: 250px; }
.articles-grid.layout-big-right[data-count="3"] .article-card:last-child .article-title { font-size: 22px; }
.articles-grid.layout-big-right[data-count="3"] .article-card:not(:last-child) .article-image { aspect-ratio: 16/9; }
.articles-grid.layout-big-right[data-count="4"] { grid-template-columns: 1fr 2fr; grid-template-rows: repeat(3, 1fr); }
.articles-grid.layout-big-right[data-count="4"] .article-card:last-child { grid-row: span 3; grid-column: 2; display: flex; flex-direction: column; }
.articles-grid.layout-big-right[data-count="4"] .article-card:first-child { grid-row: 1; grid-column: 1; }
.articles-grid.layout-big-right[data-count="4"] .article-card:nth-child(2) { grid-row: 2; grid-column: 1; }
.articles-grid.layout-big-right[data-count="4"] .article-card:nth-child(3) { grid-row: 3; grid-column: 1; }
.articles-grid.layout-big-right[data-count="4"] .article-card:last-child .article-image { flex: 1; aspect-ratio: auto; min-height: 300px; }
.articles-grid.layout-big-right[data-count="4"] .article-card:last-child .article-title { font-size: 22px; }
.articles-grid.layout-big-right[data-count="4"] .article-card:not(:last-child) .article-image { aspect-ratio: 16/9; }
.articles-grid.layout-big-right[data-count="4"] .article-card:not(:last-child) .article-body { padding: 12px; }
.articles-grid.layout-big-right[data-count="4"] .article-card:not(:last-child) .article-title { font-size: 14px; }

@media (max-width: 1024px) {
    .articles-grid.layout-equal[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .articles-grid, .articles-grid.layout-equal, .articles-grid.layout-big-left, .articles-grid.layout-big-right { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
    .articles-grid .article-card { grid-row: auto !important; grid-column: auto !important; }
    .articles-grid .article-card .article-image { aspect-ratio: 16/9 !important; }
    .articles-grid .article-card .article-title { font-size: 16px !important; }
    .articles-grid .article-card .article-body { padding: 14px !important; }
}

/* ================================================
   6. LATEST NEWS LAYOUTS
   ================================================ */

.latest-news-grid.layout-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.latest-news-grid.layout-4col .article-card .article-body { padding: 12px; }
.latest-news-grid.layout-4col .article-card .article-title { font-size: 14px; -webkit-line-clamp: 2; }
.latest-news-grid.layout-4col .article-card .article-meta { font-size: 0.75em; }

.latest-news-grid.layout-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.latest-news-grid.layout-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.latest-news-grid.layout-2col .article-card { display: flex; flex-direction: row; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border, rgba(255,255,255,0.1)); background: transparent; border-radius: 0; }
.latest-news-grid.layout-2col .article-card .article-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0; order: 1; }
.latest-news-grid.layout-2col .article-card .article-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; -webkit-line-clamp: 3; }
.latest-news-grid.layout-2col .article-card .article-image { width: 150px; height: 150px; min-width: 150px; aspect-ratio: 1; border-radius: 8px; order: 2; }
.latest-news-grid.layout-2col .article-card .article-category { display: inline-block; width: fit-content; margin-bottom: 6px; font-size: 10px; padding: 3px 8px; }
.latest-news-grid.layout-2col .article-card .article-meta { display: flex; align-items: center; gap: 6px; }

.latest-news-grid.layout-2col-inv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.latest-news-grid.layout-2col-inv .article-card { display: flex; flex-direction: row; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border, rgba(255,255,255,0.1)); background: transparent; border-radius: 0; }
.latest-news-grid.layout-2col-inv .article-card .article-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0; order: 2; }
.latest-news-grid.layout-2col-inv .article-card .article-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; -webkit-line-clamp: 3; }
.latest-news-grid.layout-2col-inv .article-card .article-image { width: 150px; height: 150px; min-width: 150px; aspect-ratio: 1; border-radius: 8px; order: 1; }
.latest-news-grid.layout-2col-inv .article-card .article-category { display: inline-block; width: fit-content; margin-bottom: 6px; font-size: 10px; padding: 3px 8px; }
.latest-news-grid.layout-2col-inv .article-card .article-meta { display: flex; align-items: center; gap: 6px; }

.latest-news-grid.layout-list-h { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.latest-news-grid.layout-list-h .article-card { display: flex; flex-direction: row; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border, rgba(255,255,255,0.1)); background: transparent; border-radius: 0; }
.latest-news-grid.layout-list-h .article-card:last-child { border-bottom: none; padding-bottom: 0; }
.latest-news-grid.layout-list-h .article-card .article-image { width: 260px; min-width: 260px; height: 170px; aspect-ratio: auto; border-radius: 10px; order: 1; }
.latest-news-grid.layout-list-h .article-card .article-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0; order: 2; }
.latest-news-grid.layout-list-h .article-card .article-category { display: inline-block; width: fit-content; margin-bottom: 10px; font-size: 11px; padding: 4px 10px; }
.latest-news-grid.layout-list-h .article-card .article-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; -webkit-line-clamp: 2; }
.latest-news-grid.layout-list-h .article-card .article-excerpt { display: -webkit-box; font-size: 0.95em; color: var(--text-muted, #a1a1aa); line-height: 1.6; margin-bottom: 8px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.latest-news-grid.layout-list-h .article-card .article-meta { margin-top: 10px; }

.latest-news-grid.layout-list-h-inv { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.latest-news-grid.layout-list-h-inv .article-card { display: flex; flex-direction: row; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border, rgba(255,255,255,0.1)); background: transparent; border-radius: 0; }
.latest-news-grid.layout-list-h-inv .article-card:last-child { border-bottom: none; padding-bottom: 0; }
.latest-news-grid.layout-list-h-inv .article-card .article-image { width: 260px; min-width: 260px; height: 170px; aspect-ratio: auto; border-radius: 10px; order: 2; }
.latest-news-grid.layout-list-h-inv .article-card .article-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0; order: 1; }
.latest-news-grid.layout-list-h-inv .article-card .article-category { display: inline-block; width: fit-content; margin-bottom: 10px; font-size: 11px; padding: 4px 10px; }
.latest-news-grid.layout-list-h-inv .article-card .article-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; -webkit-line-clamp: 2; }
.latest-news-grid.layout-list-h-inv .article-card .article-excerpt { display: -webkit-box; font-size: 0.95em; color: var(--text-muted, #a1a1aa); line-height: 1.6; margin-bottom: 8px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.latest-news-grid.layout-list-h-inv .article-card .article-meta { margin-top: 10px; }

.latest-news-grid .article-card .article-title { transition: color 0.2s ease; }
.latest-news-grid .article-card:hover .article-title { color: var(--accent, #6366f1); }

@media (max-width: 1024px) {
    .latest-news-grid.layout-4col { grid-template-columns: repeat(2, 1fr); }
    .latest-news-grid.layout-3col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .latest-news-grid.layout-4col, .latest-news-grid.layout-3col, .latest-news-grid.layout-2col, .latest-news-grid.layout-2col-inv { grid-template-columns: 1fr; }
    .latest-news-grid.layout-2col .article-card, .latest-news-grid.layout-2col-inv .article-card { flex-direction: row; }
    .latest-news-grid.layout-2col .article-card .article-image, .latest-news-grid.layout-2col-inv .article-card .article-image { width: 100px; height: 100px; min-width: 100px; }
    .latest-news-grid.layout-2col .article-card .article-title, .latest-news-grid.layout-2col-inv .article-card .article-title { font-size: 15px; }
    .latest-news-grid.layout-list-h .article-card, .latest-news-grid.layout-list-h-inv .article-card { flex-direction: column; }
    .latest-news-grid.layout-list-h .article-card .article-image, .latest-news-grid.layout-list-h-inv .article-card .article-image { width: 100%; height: 200px; min-width: 100%; order: 1; }
    .latest-news-grid.layout-list-h .article-card .article-body, .latest-news-grid.layout-list-h-inv .article-card .article-body { order: 2; }
    .latest-news-grid.layout-list-h .article-card .article-title, .latest-news-grid.layout-list-h-inv .article-card .article-title { font-size: 16px; }
}

/* ================================================
   7. ARTICLE LAYOUTS
   ================================================ */

/* Hero Header */
.article-header-hero { position: relative; min-height: 500px; background-size: cover; background-position: center; display: flex; align-items: flex-end; margin-bottom: 20px; margin-top: 20px; border-radius: 12px; overflow: hidden; }
.article-header-hero .article-header-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.article-header-hero .article-header-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 60px 20px; width: 100%; }
.article-header-hero .breadcrumbs, .article-header-hero .breadcrumbs a, .article-header-hero .article-title, .article-header-hero .article-summary, .article-header-hero .author-name, .article-header-hero .meta-item { color: white; }
.article-header-hero .breadcrumbs { margin-bottom: 20px; }
.article-header-hero .article-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 42px); font-weight: var(--font-title-weight, 800); line-height: 1.2; margin-bottom: 16px; }
.article-header-hero .article-summary { font-size: 18px; opacity: 0.9; }

/* Fullwidth Header */
.article-header-fullwidth { padding: 40px 20px 24px; }
.article-header-fullwidth .article-header-bg { max-width: 1100px; margin: 0 auto; }
.article-header-fullwidth .article-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 36px); font-weight: var(--font-title-weight, 800); line-height: 1.25; color: var(--text, #ffffff); }

/* Split Header */
.article-header-split { max-width: 1200px; margin: 0 auto 40px; padding: 40px 20px; }
.article-header-split .article-header-inner { display: grid; grid-template-columns: 400px 1fr; gap: 50px; align-items: center; }
.article-header-split .article-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 34px); font-weight: var(--font-title-weight, 800); line-height: 1.25; color: var(--text, #ffffff); }
.article-header-split .article-header-image { width: 400px; height: 400px; border-radius: 12px; overflow: hidden; }
.article-header-split .article-header-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Split Reverse Header */
.article-header-split-reverse { max-width: 1200px; margin: 0 auto 40px; padding: 40px 20px; }
.article-header-split-reverse .article-header-inner { display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: center; }
.article-header-split-reverse .article-title { font-family: var(--font-heading, 'Inter', sans-serif); font-size: var(--font-title-size, 34px); font-weight: var(--font-title-weight, 800); line-height: 1.25; color: var(--text, #ffffff); }
.article-header-split-reverse .article-header-image { width: 400px; height: 400px; border-radius: 12px; overflow: hidden; }
.article-header-split-reverse .article-header-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1000px) {
    .article-header-split .article-header-inner, .article-header-split-reverse .article-header-inner { grid-template-columns: 1fr; gap: 30px; }
    .article-header-split .article-header-image, .article-header-split-reverse .article-header-image { width: 100%; height: 350px; order: -1; }
}

@media (max-width: 768px) {
    .article-header-hero { min-height: 400px; }
    .article-header-hero .article-title { font-size: min(var(--font-title-size, 42px), 28px); }
    .article-header-hero .article-summary { font-size: 16px; }
    .article-header-hero .article-header-inner { padding: 40px 16px; }
    .article-header-fullwidth .article-title { font-size: min(var(--font-title-size, 36px), 28px); }
    .article-header-split { padding: 24px 16px; margin-bottom: 24px; }
    .article-header-split .article-header-inner { grid-template-columns: 1fr; }
    .article-header-split .article-header-image { width: 100%; height: 300px; }
    .article-header-split .article-title { font-size: min(var(--font-title-size, 34px), 24px); }
    .article-header-split-reverse { padding: 24px 16px; margin-bottom: 24px; }
    .article-header-split-reverse .article-header-inner { grid-template-columns: 1fr; }
    .article-header-split-reverse .article-header-image { width: 100%; height: 300px; order: -1; }
    .article-header-split-reverse .article-title { font-size: min(var(--font-title-size, 34px), 24px); }
}

@media (max-width: 480px) {
    .article-header-hero { min-height: 350px; border-radius: 10px; }
    .article-header-hero .article-title { font-size: min(var(--font-title-size, 42px), 24px); }
    .article-header-split .article-header-image, .article-header-split-reverse .article-header-image { height: 250px; }
    .article-header-split .article-title, .article-header-split-reverse .article-title { font-size: min(var(--font-title-size, 34px), 22px); }
}

/* ================================================
   8. SHARE MODAL
   ================================================ */

.share-modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 1000; align-items: center; justify-content: center; }
.share-modal-overlay.active { display: flex; }
.share-modal-content { background: var(--card, #12121a); border: 1px solid var(--border, #1e1e2a); border-radius: 16px; width: 90%; max-width: 400px; padding: 24px; animation: shareModalIn 0.2s ease; }
@keyframes shareModalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.share-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.share-modal-title { font-size: 18px; font-weight: 600; color: var(--text, #ffffff); }
.share-modal-close { width: 32px; height: 32px; background: var(--border, #1e1e2a); border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.share-modal-close:hover { background: var(--accent, #6366f1); }
.share-modal-close svg { width: 16px; height: 16px; stroke: var(--text, #ffffff); fill: none; stroke-width: 2; }
.share-modal-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.share-modal-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 8px; background: var(--bg, #0a0a0f); border: 1px solid var(--border, #1e1e2a); border-radius: 12px; text-decoration: none; transition: all 0.2s; }
.share-modal-btn:hover { border-color: var(--accent, #6366f1); transform: translateY(-2px); }
.share-modal-btn svg { width: 24px; height: 24px; }
.share-modal-btn span { font-size: 11px; color: var(--muted, #9ca3af); }
.share-modal-btn.whatsapp svg { fill: #25D366; }
.share-modal-btn.twitter svg { fill: #000000; }
.share-modal-btn.facebook svg { fill: #1877F2; }
.share-modal-btn.linkedin svg { fill: #0A66C2; }
.share-modal-btn.telegram svg { fill: #0088CC; }
.share-modal-btn.email svg { fill: var(--accent, #6366f1); }
.share-modal-btn.reddit svg { fill: #FF4500; }
.share-modal-btn.copy svg { stroke: var(--accent, #6366f1); fill: none; }
.share-modal-link { display: flex; gap: 10px; }
.share-modal-input { flex: 1; background: var(--bg, #0a0a0f); border: 1px solid var(--border, #1e1e2a); border-radius: 8px; padding: 12px 14px; color: var(--text, #ffffff); font-size: 13px; font-family: inherit; }
.share-modal-copy { padding: 12px 20px; background: var(--accent, #6366f1); border: none; border-radius: 8px; color: #ffffff; font-size: 13px; font-weight: 500; cursor: pointer; transition: filter 0.2s; }
.share-modal-copy:hover { filter: brightness(1.1); }
.share-modal-copy.copied { background: #10b981; }

/* ================================================
   9. FINAL RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .header-inner { grid-template-columns: auto auto; }
    .nav { display: none; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header { height: 65px; }
    .header-inner { padding: 0 16px; gap: 12px; }
    .logo img { height: 55px; max-width: 200px; }
    .main { padding-top: 70px; padding-left: 16px; padding-right: 16px; }
    .hero { margin-top: 20px; margin-bottom: 32px; }
    .section { margin-bottom: 32px; }
    .section-header { margin-bottom: 16px; }
    .articles-grid { gap: 16px; }
    .article-image { height: 200px; }
    .article { padding-left: 16px; padding-right: 16px; }
    .article-header .article-title { font-size: min(var(--font-title-size, 42px), 28px); }
    .article-content h2 { font-size: 24px; }
    .article-content h3 { font-size: 20px; }
    .cta-horizontal { flex-direction: column; text-align: center; }
    .related-grid { grid-template-columns: 1fr; gap: 12px; }
    .related-card { display: flex; gap: 12px; }
    .related-image { width: 100px; height: 100px; flex-shrink: 0; border-radius: 8px; }
    .related-body { padding: 8px 0; display: flex; align-items: center; }
    .footer { padding: 40px 16px 24px; }
    .footer-logo img { height: 60px; }
    .footer-social { gap: 8px; }
    .footer-social a { width: 38px; height: 38px; }
    .footer-links { flex-direction: column; gap: 12px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; }
    .pagination { flex-wrap: wrap; }
    .pagination a, .pagination span { padding: 8px 12px; font-size: 13px; }
    .sidebar-menu { width: 280px; left: -280px; }
    .search-modal { padding: 80px 16px; }
    .share-modal-buttons { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .share-modal-btn { padding: 12px 4px; }
    .share-modal-btn svg { width: 20px; height: 20px; }
    .share-modal-btn span { font-size: 10px; }
}

@media (max-width: 480px) {
    .article-meta-row { flex-direction: column; align-items: flex-start; }
    .share-btn { width: 100%; justify-content: center; }
    .tldr-card { flex-direction: column; gap: 12px; }
    .share-modal-content { padding: 20px; }
    .share-modal-link { flex-direction: column; }
    .share-modal-copy { width: 100%; }
}