/* ================================ */
/* RESET & VARIABLES                */
/* ================================ */
:root {
    --primary: #1a1a1a;
    --secondary: #c41e3a;
    --accent: #0066cc;
    --success: #059669;
    --warning: #f59e0b;
    --danger: #dc2626;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #f3f4f6;
    --bg-darker: #e5e7eb;
    --border: #e5e7eb;
    --border-dark: #d1d5db;
    --shadow-color: rgba(0, 0, 0, 0.1);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Source Serif 4', Georgia, serif;

    --shadow-sm: 0 1px 3px var(--shadow-color);
    --shadow-md: 0 4px 6px -1px var(--shadow-color);
    --shadow-lg: 0 10px 15px -3px var(--shadow-color);
    --shadow-xl: 0 20px 25px -5px var(--shadow-color);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --transition: 200ms ease;
}

/* Dark Mode */
html.dark-mode {
    --primary: #f9fafb;
    --text: #f3f4f6;
    --text-light: #d1d5db;
    --text-muted: #9ca3af;
    --bg: #111827;
    --bg-light: #1f2937;
    --bg-dark: #374151;
    --bg-darker: #4b5563;
    --border: #374151;
    --border-dark: #4b5563;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Dark Mode - Smooth Transition */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

html.dark-mode *,
html.dark-mode *::before,
html.dark-mode *::after {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Dark Mode - Top Bar Fix */
html.dark-mode .top-bar {
    background: #0f172a;
    border-bottom-color: #1e293b;
}

html.dark-mode .top-bar-inner {
    color: #94a3b8;
}

html.dark-mode .top-date {
    color: #e2e8f0;
}

html.dark-mode .top-separator {
    color: #475569;
}

html.dark-mode .stock-item {
    color: #94a3b8;
}

html.dark-mode .dark-mode-toggle {
    color: #e2e8f0;
}

html.dark-mode .dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Dark Mode - Header Fix */
html.dark-mode .main-header {
    background: #111827;
    border-bottom-color: #1e293b;
}

html.dark-mode .logo-main {
    color: #f1f5f9;
}

html.dark-mode .logo-accent {
    color: var(--secondary);
}

html.dark-mode .logo-le {
    color: #64748b;
}

html.dark-mode .menu-btn span {
    background: #e2e8f0;
}

/* Dark Mode - Navigation Fix */
html.dark-mode .main-nav {
    background: #111827;
    border-bottom-color: #1e293b;
}

/* Dark Mode - Search Fix */
html.dark-mode .search-container {
    background: #111827;
}

html.dark-mode .search-inner {
    background: #1f2937;
    border-color: #374151;
}

html.dark-mode #search-input {
    color: #f1f5f9;
}

html.dark-mode #search-input::placeholder {
    color: #6b7280;
}

/* Dark Mode - Cards Fix */
html.dark-mode .featured-card,
html.dark-mode .secondary-card,
html.dark-mode .article-card,
html.dark-mode .video-card,
html.dark-mode .podcast-card,
html.dark-mode .opinion-card,
html.dark-mode .widget {
    background: #1f2937;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

html.dark-mode .secondary-card:hover,
html.dark-mode .article-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Dark Mode - Buttons Fix */
html.dark-mode .read-more-btn {
    background: #e2e8f0;
    color: #111827;
}

html.dark-mode .read-more-btn:hover {
    background: var(--secondary);
    color: white;
}

html.dark-mode .header-btn-outline {
    border-color: #475569;
    color: #e2e8f0;
}

html.dark-mode .header-btn-outline:hover {
    border-color: #94a3b8;
}

html.dark-mode .section-tab {
    border-color: #475569;
    color: #94a3b8;
}

html.dark-mode .section-tab:hover {
    border-color: #64748b;
    color: #e2e8f0;
}

html.dark-mode .section-tab.active {
    background: #e2e8f0;
    border-color: #e2e8f0;
    color: #111827;
}

/* Dark Mode - Tags Fix */
html.dark-mode .search-tag,
html.dark-mode .article-tag {
    background: #374151;
    color: #d1d5db;
}

html.dark-mode .search-tag:hover,
html.dark-mode .article-tag:hover {
    background: var(--secondary);
    color: white;
}

/* Dark Mode - Footer Fix */
html.dark-mode .footer-top {
    background: #0f172a;
}

html.dark-mode .footer-logo .logo-le {
    color: #64748b;
}

html.dark-mode .footer-logo .logo-main {
    color: #f1f5f9;
}

html.dark-mode .footer-brand p {
    color: #94a3b8;
}

html.dark-mode .footer-col h4 {
    color: #f1f5f9;
}

html.dark-mode .footer-col a {
    color: #94a3b8;
}

html.dark-mode .footer-col a:hover {
    color: #f1f5f9;
}

html.dark-mode .footer-bottom {
    background: #030712;
}

html.dark-mode .footer-bottom p {
    color: #4b5563;
}

/* Dark Mode - Input Fix */
html.dark-mode .newsletter-input {
    background: #1f2937;
    border-color: #374151;
    color: #f1f5f9;
}

html.dark-mode .newsletter-input:focus {
    border-color: var(--accent);
}

html.dark-mode .newsletter-input::placeholder {
    color: #6b7280;
}

/* Dark Mode - Flash Info Fix */
html.dark-mode .flash-info-bar {
    background: #111827;
    border-bottom-color: #1e293b;
}

html.dark-mode .flash-info-bar::after {
    background: linear-gradient(to right, transparent, #111827);
}

html.dark-mode .flash-item {
    border-right-color: #374151;
}

/* Dark Mode - Widget specific fixes */
html.dark-mode .live-item {
    border-bottom-color: #374151;
}

html.dark-mode .editor-pick-item {
    border-bottom-color: #374151;
}

html.dark-mode .editor-pick-item:hover {
    background: #374151;
}

html.dark-mode .trending-list li {
    border-bottom-color: #374151;
}

html.dark-mode .trending-list li:hover {
    background: #374151;
}

html.dark-mode .trend-rank {
    background: #374151;
}

html.dark-mode .forecast-day {
    background: #374151;
}

html.dark-mode .forecast-day:hover {
    background: #4b5563;
}

/* Dark Mode - Opinion avatar fix */
html.dark-mode .opinion-avatar {
    background: #374151;
    color: #e2e8f0;
}

/* Dark Mode - Video thumbnail fix */
html.dark-mode .video-thumbnail {
    background: #1f2937;
}

/* Dark Mode - Lightbox Fix */
html.dark-mode .lightbox-backdrop {
    background: rgba(0, 0, 0, 0.98);
}

/* Dark Mode - Action buttons fix */
html.dark-mode .action-btn {
    background: #374151;
    color: #94a3b8;
}

html.dark-mode .action-btn:hover {
    background: var(--secondary);
    color: white;
}

/* Dark Mode - Breaking bar stays the same (already dark with secondary color) */

/* Dark Mode - Category icon background */
html.dark-mode .category-icon {
    background: #374151;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; height: auto; }

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

/* ================================ */
/* PAGE LOADER                      */
/* ================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }

.loader-logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--secondary);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; margin-left: 0; }
    50% { width: 70%; margin-left: 15%; }
    100% { width: 0; margin-left: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ================================ */
/* BREAKING NEWS BAR                */
/* ================================ */
.breaking-bar {
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: stretch;
    font-size: 0.85rem;
    overflow: hidden;
}

.breaking-label {
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.breaking-ticker { flex: 1; overflow: hidden; display: flex; align-items: center; }

.breaking-content {
    display: flex;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

.breaking-item { padding: 10px 20px; }
.breaking-separator { color: rgba(255,255,255,0.4); padding: 0 10px; }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================ */
/* TOP BAR                          */
/* ================================ */
.top-bar {
    background: var(--primary);
    color: var(--text-muted);
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left { display: flex; align-items: center; gap: 12px; }
.top-date { color: #fff; }
.top-separator { color: var(--text-muted); }
.top-right { display: flex; align-items: center; gap: 20px; }

.stocks { display: flex; gap: 20px; }
.stock-item { display: flex; align-items: center; gap: 6px; color: #aaa; }
.stock-up { color: #22c55e; }
.stock-down { color: #ef4444; }

.dark-mode-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background var(--transition);
}

.dark-mode-toggle:hover { background: rgba(255,255,255,0.1); }
.dark-mode-toggle .icon-moon { display: none; }
html.dark-mode .dark-mode-toggle .icon-sun { display: none; }
html.dark-mode .dark-mode-toggle .icon-moon { display: block; }

/* ================================ */
/* HEADER                           */
/* ================================ */
.main-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 101;
    transition: all 0.3s ease;
}

.main-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: -1;
}

/* Header compact au scroll */
.main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header.scrolled .header-inner {
    padding: 8px 24px;
}

.main-header.scrolled .logo-main,
.main-header.scrolled .logo-accent {
    font-size: 1.3rem;
}

.main-header.scrolled .header-search {
    max-width: 240px;
    background: var(--bg-light, #f8fafc);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.main-header.scrolled .header-search:focus-within {
    max-width: 300px;
    background: var(--bg);
    border-color: var(--secondary);
    box-shadow: 0 2px 12px rgba(196, 30, 58, 0.12);
}

.main-header.scrolled .header-search-icon svg {
    width: 16px;
    height: 16px;
}

.main-header.scrolled .header-search input {
    padding: 10px 8px;
    font-size: 0.875rem;
}

.main-header.scrolled .header-search input::placeholder {
    font-size: 0.8rem;
}

html.dark-mode .main-header.scrolled .header-search {
    background: #1e293b;
    border-color: #374151;
}

html.dark-mode .main-header.scrolled .header-search:focus-within {
    background: #0f172a;
    border-color: var(--secondary);
}

html.dark-mode .main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: padding 0.3s ease;
}

.header-left {
    flex-shrink: 0;
}

.menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px;
}

.menu-btn span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-le {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--text-light);
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-accent {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.logo-info {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 12px;
    color: var(--secondary);
    margin-top: 2px;
}

.logo-tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-style: italic;
}

.header-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    padding: 0 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.header-search:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.15);
}

.header-search-icon {
    color: var(--secondary);
    display: flex;
    flex-shrink: 0;
}

.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 12px;
    font-size: 1rem;
    color: var(--text);
    outline: none;
    min-width: 0;
}

.header-search input::placeholder {
    color: #94a3b8;
}

html.dark-mode .header-search {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

html.dark-mode .header-search:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
}

html.dark-mode .header-search input::placeholder {
    color: #64748b;
}

.search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: background var(--transition);
}

.search-toggle:hover { background: var(--bg-dark); }

.header-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.header-btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
}

.header-btn-outline:hover { border-color: var(--text); }

.header-btn-primary {
    background: var(--secondary);
    color: white;
}

.header-btn-primary:hover { background: #a01830; }

/* ================================ */
/* SEARCH                           */
/* ================================ */
.search-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
}

.search-inner:focus-within { border-color: var(--accent); }

.search-icon { color: var(--text-muted); flex-shrink: 0; }

#search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text);
    outline: none;
}

#search-input::placeholder { color: var(--text-muted); }

.search-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.search-close:hover { background: var(--bg-dark); color: var(--text); }

.search-suggestions {
    max-width: 800px;
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-label { font-size: 0.85rem; color: var(--text-muted); }
.search-tags { display: flex; gap: 8px; }

.search-tag {
    padding: 6px 14px;
    background: var(--bg-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text);
    transition: all var(--transition);
}

.search-tag:hover { background: var(--secondary); color: white; }

/* ================================ */
/* NAVIGATION                       */
/* ================================ */
.main-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-height, 73px);
    z-index: 100;
}

.main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: -1;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar { display: none; }

.nav-link {
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    position: relative;
    transition: color var(--transition);
}

.nav-link:hover { color: var(--secondary); }

.nav-link.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px 3px 0 0;
}

.nav-more { display: flex; align-items: center; gap: 4px; }

/* ================================ */
/* FLASH INFO                       */
/* ================================ */
.flash-info-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.flash-info-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.flash-info-inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Fade effect on edges */
.flash-info-bar {
    position: relative;
}

.flash-info-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
}

.flash-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.flash-items { display: flex; gap: 0; }

.flash-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 16px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

.flash-item:last-child { border-right: none; }
.flash-time { font-weight: 600; color: var(--secondary); font-size: 0.8rem; }
.flash-text { color: var(--text); font-size: 0.85rem; }

.flash-badge {
    background: var(--secondary);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ================================ */
/* MAIN CONTENT                     */
/* ================================ */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 24px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.primary-content { min-width: 0; }

/* ================================ */
/* FEATURED ARTICLE                 */
/* ================================ */
.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-icon { color: var(--text-muted); opacity: 0.5; }

.premium-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.premium-badge.small { padding: 3px 8px; font-size: 0.65rem; }

.featured-content { padding: 32px; display: flex; flex-direction: column; }

.featured-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.featured-category {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.featured-reading {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.featured-content h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-content h3 a { transition: color var(--transition); }
.featured-content h3 a:hover { color: var(--secondary); }

.featured-excerpt {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.featured-author { display: flex; align-items: center; gap: 10px; }

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name { font-weight: 500; color: var(--text); }
.featured-date { font-size: 0.85rem; color: var(--text-muted); }

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--text);
    color: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    align-self: flex-start;
}

.read-more-btn:hover { background: var(--secondary); transform: translateX(5px); }

/* ================================ */
/* SECONDARY ARTICLES               */
/* ================================ */
.secondary-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.secondary-card {
    background: var(--bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.secondary-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.secondary-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.secondary-icon { color: var(--text-muted); opacity: 0.5; }

.secondary-content { padding: 20px; }

.secondary-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-content h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 8px 0 12px;
}

.secondary-content h3 a { transition: color var(--transition); }
.secondary-content h3 a:hover { color: var(--secondary); }

.secondary-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.secondary-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================================ */
/* VIDEO SECTION                    */
/* ================================ */
.video-section, .opinions-section, .articles-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-link {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    transition: color var(--transition);
}

.section-link:hover { color: var(--secondary); }

.section-tabs { display: flex; gap: 8px; }

.section-tab {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all var(--transition);
}

.section-tab:hover { border-color: var(--text-muted); color: var(--text); }
.section-tab.active { background: var(--text); border-color: var(--text); color: var(--bg); }

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
    cursor: pointer;
}

.video-card:hover { transform: translateY(-3px); }

.video-thumbnail {
    position: relative;
    height: 160px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-icon { color: var(--text-muted); opacity: 0.5; }

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity var(--transition);
}

.video-card:hover .video-play { opacity: 1; }

.video-play svg {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    padding: 16px;
    border-radius: 50%;
    color: white;
}

.video-info { padding: 16px; }
.video-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.video-views { font-size: 0.8rem; color: var(--text-muted); }

/* ================================ */
/* ARTICLES GRID                    */
/* ================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.article-image {
    height: 100px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-icon { color: var(--text-muted); opacity: 0.5; }
.article-content { display: flex; flex-direction: column; }

.article-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 6px 0 8px;
    flex: 1;
}

.article-content h3 a { transition: color var(--transition); }
.article-content h3 a:hover { color: var(--secondary); }

.article-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ================================ */
/* OPINIONS                         */
/* ================================ */
.opinions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.opinion-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.opinion-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.opinion-avatar {
    width: 56px;
    height: 56px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
}

.opinion-content { flex: 1; min-width: 0; }

.opinion-content h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.opinion-author { display: flex; flex-direction: column; gap: 2px; }
.opinion-name { font-size: 0.85rem; font-weight: 600; }
.opinion-role { font-size: 0.75rem; color: var(--text-muted); }

.opinion-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.opinion-card:hover .opinion-arrow { transform: translateX(5px); color: var(--secondary); }

/* ================================ */
/* SIDEBAR                          */
/* ================================ */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.widget {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.widget-header h3 {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Live Widget */
.live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.live-feed { display: flex; flex-direction: column; gap: 12px; }

.live-item {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    align-items: start;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.live-item:last-child { border-bottom: none; padding-bottom: 0; }
.live-time { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.live-text { font-size: 0.85rem; line-height: 1.4; }

.live-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.live-badge.new { background: var(--secondary); color: white; }

/* Weather Widget */
.weather-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.weather-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.weather-date { font-size: 0.85rem; color: var(--text-muted); }

.weather-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-icon-large { color: var(--warning); }
.weather-info { display: flex; flex-direction: column; }
.weather-temp { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.weather-desc { font-weight: 500; }
.weather-feel { font-size: 0.85rem; color: var(--text-muted); }

/* Editor Picks */
.editor-picks { display: flex; flex-direction: column; }

.editor-pick-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.editor-pick-item:last-child { border-bottom: none; }

.pick-number {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pick-content { flex: 1; min-width: 0; }
.pick-category { font-size: 0.7rem; color: var(--secondary); text-transform: uppercase; font-weight: 600; }
.pick-content h4 { font-size: 0.9rem; font-weight: 600; margin: 4px 0; line-height: 1.4; }
.pick-meta { font-size: 0.75rem; color: var(--text-muted); }
.pick-premium { color: var(--warning); font-weight: 600; }
.pick-icon { color: var(--text-muted); flex-shrink: 0; }

/* Trending Widget */
.trending-list { list-style: none; }

.trending-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.trending-list li:last-child { border-bottom: none; }

.trend-rank {
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.trend-content { flex: 1; }
.trend-title { font-weight: 600; font-size: 0.9rem; display: block; }
.trend-meta { font-size: 0.75rem; color: var(--text-muted); }

/* Newsletter Widget */
.newsletter-widget { text-align: center; }
.newsletter-icon { color: var(--secondary); margin-bottom: 12px; }
.newsletter-widget h3 { font-size: 1.25rem; margin-bottom: 8px; }
.newsletter-widget p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }

.newsletter-form { display: flex; gap: 8px; }

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--bg-light);
    color: var(--text);
}

.newsletter-input:focus { outline: none; border-color: var(--accent); }

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--secondary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: background var(--transition);
}

.newsletter-btn:hover { background: #a01830; }
.newsletter-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; display: block; }

/* ================================ */
/* FOOTER                           */
/* ================================ */
.main-footer { margin-top: 60px; }

.footer-top {
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    color: #fff;
    padding: 60px 0 40px;
}

.footer-top .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: inline-flex;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .logo-main {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo .logo-accent {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Legacy support for footer-links-grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-grid .footer-col a {
    display: block;
    padding: 5px 0;
}

.footer-bottom {
    background: #0f0f1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.footer-note {
    font-size: 0.8rem;
    color: #475569;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-top .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-links,
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================ */
/* LIGHTBOX                         */
/* ================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-container {
    position: relative;
    width: 90%;
    height: 85%;
    max-width: 1200px;
    animation: zoomIn 0.3s ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

#overlay-content {
    width: 100%;
    height: 100%;
    border: none;
    background: #0a0a0a;
}

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

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ================================ */
/* RESPONSIVE                       */
/* ================================ */
@media (max-width: 1200px) {
    .content-wrapper { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .secondary-articles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .featured-card { grid-template-columns: 1fr; }
    .featured-image { min-height: 250px; }
    .articles-grid { grid-template-columns: 1fr; }
    .opinions-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }
    .secondary-articles { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .header-inner { flex-wrap: wrap; gap: 12px; }
    .header-left { order: 1; }
    .header-right { order: 2; }
    .header-center { order: 3; width: 100%; }
    .header-search { max-width: 100%; }
}

@media (max-width: 768px) {
    .top-bar-inner { flex-direction: column; gap: 8px; }
    .stocks { display: none; }
    .header-inner { padding: 12px 16px; }
    .logo-main { font-size: 1.5rem; }
    .logo-accent { font-size: 1.5rem; }
    .logo-tagline { display: none; }
    .header-btn-outline { display: none; }
    .header-search { padding: 0 14px; }
    .header-search input { padding: 12px 10px; font-size: 0.9rem; }
    .breaking-label { padding: 8px 12px; font-size: 0.7rem; }
    .flash-info-bar { display: none; }
    .footer-top .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    .article-card { grid-template-columns: 1fr; }
    .article-image { height: 150px; }
}

@media (max-width: 480px) {
    .header-left .logo { transform: scale(0.85); transform-origin: left center; }
    .header-search input { font-size: 0.85rem; }
    .header-search-icon svg { width: 16px; height: 16px; }
}

/* ================================ */
/* ENHANCED FEATURED ARTICLE        */
/* ================================ */
.breaking-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-glow 2s infinite;
}

.article-meta-top .breaking-badge {
    position: static;
}

.pulse-dot-small {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.featured-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.stat-item:hover {
    color: var(--secondary);
}

.featured-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.article-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: var(--bg-light);
    transition: all var(--transition);
}

.action-btn:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

/* ================================ */
/* ENHANCED SECONDARY ARTICLES      */
/* ================================ */
.secondary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.secondary-stats {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.secondary-tags {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.article-tag {
    padding: 3px 8px;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.article-tag:hover {
    background: var(--secondary);
    color: white;
}

/* ================================ */
/* ENHANCED VIDEO SECTION           */
/* ================================ */
.video-card.is-live .video-thumbnail {
    border: 2px solid var(--danger);
}

.video-live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-glow-red 2s infinite;
}

@keyframes pulse-glow-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    pointer-events: none;
}

.video-category {
    font-size: 0.7rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ================================ */
/* PODCASTS SECTION                 */
/* ================================ */
.podcasts-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.podcasts-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.podcast-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.podcast-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.podcast-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary) 0%, #a01830 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.podcast-info {
    flex: 1;
    min-width: 0;
}

.podcast-episode {
    font-size: 0.7rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
}

.podcast-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 4px 0 8px;
    line-height: 1.3;
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.podcast-host {
    font-weight: 500;
}

.podcast-duration {
    display: flex;
    align-items: center;
    gap: 4px;
}

.podcast-play {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all var(--transition);
    flex-shrink: 0;
}

.podcast-play:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

/* ================================ */
/* ENHANCED WEATHER WIDGET          */
/* ================================ */
.weather-forecast {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.forecast-day:hover {
    background: var(--bg-dark);
}

.forecast-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.forecast-icon {
    color: var(--warning);
}

.forecast-temp {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ================================ */
/* ENHANCED TRENDING WIDGET         */
/* ================================ */
.trend-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trend-mentions {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trend-arrow {
    font-size: 0.9rem;
    font-weight: 700;
}

.trend-arrow.trend-up {
    color: var(--success);
}

.trend-arrow.trend-down {
    color: var(--danger);
}

.trend-arrow.trend-stable {
    color: var(--text-muted);
}

.trend-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 6px;
    background: var(--bg-light);
    border-radius: 4px;
}

.trending-list li:hover {
    background: var(--bg-light);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
}

/* ================================ */
/* ENHANCED EDITOR PICKS            */
/* ================================ */
.pick-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.pick-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pick-premium {
    color: var(--warning) !important;
    font-weight: 600;
}

.editor-pick-item:hover {
    background: var(--bg-light);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ================================ */
/* MICRO-INTERACTIONS               */
/* ================================ */
/* Hover effects */
.secondary-card .secondary-icon,
.article-card .article-icon,
.video-card .video-icon {
    transition: transform var(--transition);
}

.secondary-card:hover .secondary-icon,
.article-card:hover .article-icon {
    transform: scale(1.1) rotate(5deg);
}

.video-card:hover .video-icon {
    transform: scale(1.2);
}

/* Button hover ripple effect */
.newsletter-btn,
.read-more-btn {
    position: relative;
    overflow: hidden;
}

.newsletter-btn::after,
.read-more-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.newsletter-btn:hover::after,
.read-more-btn:hover::after {
    animation: shimmer 0.6s ease;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Link underline animation */
.section-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.section-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition);
}

.section-link:hover::after {
    width: 100%;
}

/* Category badge hover */
.featured-category,
.secondary-category,
.article-category {
    transition: transform var(--transition), box-shadow var(--transition);
}

.featured-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Stock ticker animation */
.stock-item {
    transition: transform var(--transition);
}

.stock-item:hover {
    transform: scale(1.05);
}

/* Search tag bounce */
.search-tag:active {
    transform: scale(0.95);
}

/* Widget hover */
.widget {
    transition: transform var(--transition), box-shadow var(--transition);
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navigation link active animation */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link.active::before {
    display: none;
}

/* Flash info new item animation */
.flash-item.new {
    animation: flash-highlight 3s ease;
}

@keyframes flash-highlight {
    0%, 50% { background: rgba(196, 30, 58, 0.1); }
    100% { background: transparent; }
}

/* Logo hover */
.logo:hover .logo-main {
    color: var(--secondary);
}

.logo:hover .logo-info {
    letter-spacing: 14px;
}

.logo .logo-main,
.logo .logo-info {
    transition: all 0.3s ease;
}

/* Header button icon animation */
.search-toggle svg,
.dark-mode-toggle svg,
.menu-btn {
    transition: transform var(--transition);
}

.search-toggle:hover svg {
    transform: scale(1.1);
}

.dark-mode-toggle:hover svg {
    transform: rotate(15deg);
}

/* Responsive podcasts */
@media (max-width: 768px) {
    .podcast-card {
        flex-wrap: wrap;
    }

    .podcast-icon {
        width: 48px;
        height: 48px;
    }

    .weather-forecast {
        grid-template-columns: repeat(2, 1fr);
    }
}
