/*
Theme Name: Ostwirtschaft Theme
Theme URI: https://ostwirtschaft.de
Description: Custom theme for ostwirtschaft.de — replicating the eastern-economy.com design in German.
Version: 1.2
Author: Ostwirtschaft.de
Text Domain: ostwirtschaft
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-dark: #0f1923;
  --bg-card: #f8f9fa;
  --text: #1a1a2e;
  --text-muted: #6c757d;
  --accent: #c0392b;
  --accent-hover: #a93226;
  --accent-light: rgba(192,57,43,0.08);
  --border: #e0e0e0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1280px;
  --ticker-bg: #0f1923;
  --ticker-text: #ffffff;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== ARTICLE CONTENT LINKS (subtly styled) ===== */
.article-content a,
.article-content a.content-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(192,57,43,0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s, color 0.2s;
}
.article-content a:hover,
.article-content a.content-link:hover {
  text-decoration-color: var(--accent);
  color: var(--accent-hover);
}

/* ===== TICKER BAR ===== */
.ticker-bar { background: var(--ticker-bg); color: var(--ticker-text); padding: 8px 0; overflow: hidden; position: relative; z-index: 100; border-bottom: 2px solid var(--accent); }
.ticker-bar .ticker-label { position: absolute; left: 0; top: 0; bottom: 0; background: var(--accent); color: #fff; font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; padding: 0 16px; z-index: 2; }
.ticker-bar .ticker-label::before { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; margin-right: 8px; animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.ticker-track { display: flex; animation: ticker-scroll 40s linear infinite; padding-left: 90px; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; white-space: nowrap; padding: 0 24px; font-size: 13px; gap: 10px; }
.ticker-item a { color: var(--ticker-text); transition: color 0.2s; }
.ticker-item a:hover { color: var(--accent); }
.ticker-cat { color: var(--accent); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== NAVIGATION ===== */
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 90; transition: box-shadow 0.2s; }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.site-brand { display: flex; align-items: center; gap: 12px; }
.site-brand .logo-img { height: 40px; width: auto; }
.site-brand .brand-text { display: flex; flex-direction: column; }
.site-brand .brand-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.2; }
.site-brand .brand-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }
.nav-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.nav-meta .btn-subscribe { background: var(--accent); color: #fff; padding: 8px 20px; border-radius: 4px; font-weight: 600; font-size: 13px; transition: background 0.2s; border: none; cursor: pointer; }
.nav-meta .btn-subscribe:hover { background: var(--accent-hover); }

/* English button */
.btn-english { display: inline-flex; align-items: center; gap: 4px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px; font-weight: 500; color: var(--text); background: var(--bg); transition: background 0.2s, border-color 0.2s; white-space: nowrap; }
.btn-english:hover { background: var(--bg-card); border-color: var(--text-muted); }

.nav-main { background: var(--bg); border-bottom: 1px solid var(--border); }
.nav-main-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; }
.nav-main ul { display: flex; gap: 0; }
.nav-main li { position: relative; }
.nav-main li > a { display: block; padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.2s, background 0.2s; border-bottom: 2px solid transparent; }
.nav-main li > a:hover, .nav-main li.current > a { color: var(--accent); border-bottom-color: var(--accent); }
.nav-main li .sub-menu { position: absolute; top: 100%; left: 0; background: var(--bg); min-width: 220px; border: 1px solid var(--border); border-radius: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); display: none; flex-direction: column; z-index: 100; }
.nav-main li:hover .sub-menu { display: flex; }
.nav-main li .sub-menu a { padding: 10px 20px; font-size: 13px; border-bottom: none; }
.nav-main li .sub-menu a:hover { background: var(--bg-card); color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* ===== HERO ===== */
.hero-section { max-width: var(--max-width); margin: 32px auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero-main { position: relative; border-radius: 8px; overflow: hidden; }
.hero-main a { display: block; }
.hero-main img { width: 100%; height: 400px; object-fit: cover; }
.hero-main .hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: #fff; }
.hero-main .hero-cat { display: inline-block; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 3px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.hero-main .hero-title { font-family: var(--font-serif); font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.hero-main .hero-excerpt { font-size: 14px; opacity: 0.85; line-height: 1.5; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; gap: 16px; }
.hero-grid-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 6px; background: var(--bg-card); transition: box-shadow 0.2s; }
.hero-grid-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.hero-grid-item img { width: 100px; height: 70px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.hero-grid-item .grid-cat { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.hero-grid-item .grid-title { font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text); }

/* ===== MAIN CONTENT LAYOUT ===== */
.content-area { max-width: var(--max-width); margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 1fr 340px; gap: 40px; }

/* ===== SIDEBAR ===== */
.sidebar-widget { margin-bottom: 32px; }
.widget-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.market-row { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.market-row:last-child { border-bottom: none; }
.market-flag { font-size: 20px; margin-right: 10px; flex-shrink: 0; }
.market-info { flex: 1; }
.market-code { font-weight: 700; font-size: 13px; }
.market-name { font-size: 11px; color: var(--text-muted); }
.market-rate { font-weight: 700; font-size: 14px; text-align: right; }
.market-unit { font-size: 10px; color: var(--text-muted); text-align: right; }

/* Commodities */
.commodity-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.commodity-name { font-weight: 600; }
.commodity-price { font-weight: 700; font-size: 14px; }
.commodity-source { font-size: 10px; color: var(--text-muted); margin-top: 8px; }

/* Notes sidebar — prominent with Russian flag accent */
.notes-sidebar { background: var(--bg-dark); color: #fff; border-radius: 8px; padding: 24px; margin-bottom: 32px; position: relative; overflow: hidden; border-left: 4px solid #0039A6; }
.notes-sidebar::before { content: '🇷🇺'; position: absolute; top: 16px; right: 16px; font-size: 28px; opacity: 0.7; }
.notes-sidebar .notes-logo { width: 100%; max-width: 200px; margin-bottom: 12px; }
.notes-sidebar .notes-flag-header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.notes-sidebar .notes-flag-header .flag-icon { font-size: 22px; }
.notes-sidebar h3 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 4px; line-height: 1.3; }
.notes-sidebar .notes-byline { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.notes-sidebar .notes-item { display: block; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.15); font-size: 13px; transition: color 0.2s, padding-left 0.2s; }
.notes-sidebar .notes-item:hover { color: var(--accent); padding-left: 4px; }
.notes-sidebar .notes-date { font-size: 11px; color: rgba(255,255,255,0.5); }
.notes-sidebar .notes-link { display: block; margin-top: 12px; color: var(--accent); font-weight: 600; font-size: 13px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.15); }

/* ===== AHK PARTNER SECTION ===== */
.partner-section { border-top: 3px solid var(--accent); padding-top: 24px; margin-top: 32px; }
.partner-section .partner-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.partner-section .partner-title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.partner-section .partner-byline { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.partner-card { display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.partner-card:last-child { border-bottom: none; }
.partner-card img { width: 120px; height: 80px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.partner-card .pc-label { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.partner-card .pc-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.partner-card .pc-excerpt { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.partner-card .pc-link { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 4px; display: inline-block; }

/* ===== PODCASTS ===== */
.podcasts-section { max-width: var(--max-width); margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.podcast-card { background: var(--bg-card); border-radius: 12px; padding: 32px; display: flex; gap: 24px; align-items: flex-start; }
.podcast-card img { width: 140px; height: 140px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.podcast-placeholder { width: 140px; height: 140px; border-radius: 12px; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 36px; flex-shrink: 0; }
.podcast-card .pc-featured { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.podcast-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.podcast-card .pc-sub { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 8px; }
.podcast-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.podcast-card .listen-links { display: flex; gap: 12px; font-size: 13px; }
.podcast-card .listen-links a { color: var(--accent); font-weight: 600; }

/* ===== COLUMN SECTIONS ===== */
.column-section { max-width: var(--max-width); margin: 0 auto; padding: 48px 24px; border-top: 1px solid var(--border); }
.column-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.column-header .col-emoji { font-size: 28px; }
.column-header .col-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.column-header .col-title { font-family: var(--font-serif); font-size: 24px; font-weight: 700; }
.column-header .col-byline { font-size: 13px; color: var(--text-muted); }
.column-content { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.column-article { display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.column-article img { width: 140px; height: 95px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.column-article .ca-cat { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.column-article .ca-title { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.column-article .ca-link { font-size: 13px; color: var(--accent); font-weight: 600; }

/* Ben Aris featured column — subtle highlight */
.column-section-featured { background: var(--accent-light); border-top: 3px solid var(--accent); border-radius: 0 0 12px 12px; }

/* Author card */
.column-author-card { background: var(--bg-card); border-radius: 12px; padding: 24px; text-align: center; }
.column-author-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.author-initials { width: 100px; height: 100px; border-radius: 50%; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 32px; font-weight: 700; font-family: var(--font-serif); margin: 0 auto 12px; }
.column-author-card .ca-role { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.column-author-card h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.column-author-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.column-author-card .ca-all-link { display: inline-block; margin-top: 12px; color: var(--accent); font-weight: 600; font-size: 13px; }

/* ===== AKTUELLE NACHRICHTEN (styled header) ===== */
.latest-section { max-width: var(--max-width); margin: 0 auto; padding: 48px 24px; border-top: 1px solid var(--border); }
.latest-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.latest-header-title { display: flex; align-items: center; gap: 12px; }
.latest-badge { display: inline-block; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 3px; }
.latest-header h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; }
.latest-header > a { color: var(--accent); font-weight: 600; font-size: 14px; }
.latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.latest-card { border-radius: 8px; overflow: hidden; background: var(--bg-card); transition: box-shadow 0.2s, transform 0.2s; }
.latest-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.latest-card img { width: 100%; height: 180px; object-fit: cover; }
.latest-card .lc-body { padding: 16px; }
.latest-card .lc-cat { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.latest-card .lc-title { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.latest-card .lc-date { font-size: 12px; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--bg-dark); color: #fff; padding: 64px 24px; text-align: center; }
.newsletter-section .nl-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.newsletter-section h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.newsletter-section p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 24px; }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto; }
.newsletter-form input[type="email"] { flex: 1; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.2); border-right: none; border-radius: 4px 0 0 4px; background: rgba(255,255,255,0.1); color: #fff; font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button { background: var(--accent); color: #fff; border: none; padding: 14px 28px; border-radius: 0 4px 4px 0; font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--accent-hover); }
.newsletter-section .nl-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; }

/* ===== SINGLE POST ===== */
.single-article { max-width: 780px; margin: 40px auto; padding: 0 24px; }
.single-article .article-cat { display: inline-block; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 3px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.single-article h1 { font-family: var(--font-serif); font-size: 36px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.single-article .article-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.single-article .article-featured-img { width: 100%; border-radius: 8px; margin-bottom: 32px; }
.single-article .article-content { font-size: 16px; line-height: 1.8; }
.single-article .article-content p { margin-bottom: 1.5em; }
.single-article .article-content h2 { font-family: var(--font-serif); font-size: 24px; margin: 2em 0 0.5em; }
.single-article .article-content h3 { font-family: var(--font-serif); font-size: 20px; margin: 1.5em 0 0.5em; }

/* ===== ARCHIVE ===== */
.archive-header { max-width: var(--max-width); margin: 40px auto 24px; padding: 0 24px; }
.archive-header h1 { font-family: var(--font-serif); font-size: 32px; font-weight: 700; }
.archive-grid { max-width: var(--max-width); margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 199; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.active { display: block; opacity: 1; }

/* ===== MOBILE MENU (slide-in) ===== */
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 85vw; background: var(--bg); z-index: 200; display: flex; flex-direction: column; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.15); }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.mobile-menu-header .mobile-brand { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--text); }
.mobile-menu-header .close-btn { font-size: 32px; background: none; border: none; cursor: pointer; color: var(--text); line-height: 1; padding: 0; }
.mobile-menu-header .close-btn:hover { color: var(--accent); }

/* English button at TOP of mobile menu */
.mobile-menu-top-actions { padding: 12px 24px; border-bottom: 1px solid var(--border); }
.mobile-english-btn { display: block; width: 100%; text-align: center; padding: 10px 16px; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; font-weight: 500; color: var(--text); transition: background 0.2s; }
.mobile-english-btn:hover { background: var(--bg-card); }

.mobile-nav-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.mobile-nav-list li a { display: block; padding: 14px 24px; font-size: 16px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); transition: background 0.2s, color 0.2s; }
.mobile-nav-list li a:hover { background: var(--bg-card); color: var(--accent); }
.mobile-nav-list .sub-menu { list-style: none; padding: 0; margin: 0; background: var(--bg-card); }
.mobile-nav-list .sub-menu a { padding-left: 44px; font-size: 14px; color: var(--text-muted); }

.mobile-menu-footer { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.btn-subscribe-mobile { display: block; width: 100%; text-align: center; background: var(--accent); color: #fff !important; padding: 14px 20px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: background 0.2s; }
.btn-subscribe-mobile:hover { background: var(--accent-hover); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; }
  .content-area { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
  .podcasts-section { grid-template-columns: 1fr; }
  .column-content { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .nav-toggle { display: block; }
  .nav-meta .btn-subscribe { display: none; }
  .nav-meta .btn-english { display: none; }
  /* Ticker much faster on mobile */
  .ticker-track { animation-duration: 12s !important; }
  .hero-main img { height: 260px; }
  .hero-main .hero-title { font-size: 22px; }
  .hero-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .podcast-card { flex-direction: column; }
  .podcast-card img, .podcast-placeholder { width: 100%; height: 180px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { border-right: 1px solid rgba(255,255,255,0.2); border-radius: 4px; margin-bottom: 8px; }
  .newsletter-form button { border-radius: 4px; }
  .column-section-featured { border-radius: 0; }
  /* Notes sidebar: move to top of sidebar on mobile */
  .sidebar { display: flex; flex-direction: column; }
  .notes-sidebar { order: -1; }
}

@media (max-width: 480px) {
  .nav-meta .today-date { display: none; }
  .hero-main .hero-overlay { padding: 20px; }
  .hero-main .hero-title { font-size: 18px; }
}
