@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* === VARIABLES === */
:root {
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #eef2f9;
  --blue-deep: #1b3a6b;
  --blue-mid: #2952a3;
  --blue-hover: #1a2e5a;
  --text-dark: #1f2937;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --red-news: #b91c1c;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09);
  --transition: .2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === UTILITY === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-muted { color: var(--text-muted); }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-mid); padding: 2px 0; }
.tag-red { color: var(--red-news); }
.section-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); border-bottom: 2px solid var(--blue-deep); padding-bottom: 10px; margin-bottom: 28px; }
.section-title span { color: var(--blue-mid); }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: var(--radius); font-size: .875rem; font-weight: 600; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.btn-primary { background: var(--blue-deep); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); }
.btn-outline { border: 1.5px solid var(--blue-deep); color: var(--blue-deep); }
.btn-outline:hover { background: var(--blue-deep); color: var(--white); }
.btn-sm { padding: 7px 16px; font-size: .8rem; }
.more-link { display: inline-flex; align-items: center; gap: 5px; font-size: .85rem; font-weight: 600; color: var(--blue-mid); border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.more-link:hover { border-color: var(--blue-mid); }
.more-link::after { content: '→'; }

/* === COOKIE BANNER === */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--text-dark); color: var(--white); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; z-index: 9999; font-size: .85rem; }
#cookie-banner p { flex: 1; }
#cookie-banner a { color: #93c5fd; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--blue-mid); color: var(--white); padding: 8px 18px; border-radius: var(--radius); font-size: .82rem; font-weight: 600; }
.btn-cookie-decline { background: transparent; border: 1px solid #6b7280; color: #d1d5db; padding: 8px 18px; border-radius: var(--radius); font-size: .82rem; }
#cookie-banner.hidden { display: none; }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); }
.topbar { background: var(--blue-deep); color: rgba(255,255,255,.85); padding: 6px 0; font-size: .75rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-date { letter-spacing: .02em; }
.topbar-links { display: flex; gap: 18px; }
.topbar-links a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.topbar-links a:hover { color: var(--white); }
.header-main { padding: 14px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; flex-direction: column; }
.logo-wordmark { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--blue-deep); letter-spacing: -.02em; line-height: 1; }
.logo-tagline { font-size: .68rem; font-weight: 500; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }
.header-search { display: flex; align-items: center; gap: 8px; }
.search-input { border: 1px solid var(--border); border-radius: 20px; padding: 7px 16px; font-size: .85rem; width: 220px; outline: none; transition: border-color var(--transition); }
.search-input:focus { border-color: var(--blue-mid); }
.search-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-deep); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: background var(--transition); }
.search-btn:hover { background: var(--blue-hover); }

/* === NAVIGATION === */
.main-nav { border-top: 1px solid var(--border-light); }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 12px 16px; font-size: .875rem; font-weight: 500; color: var(--text-dark); white-space: nowrap; transition: color var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--blue-mid); }
.nav-item:first-child .nav-link { padding-left: 0; }
.nav-dropdown { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 100; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 9px 18px; font-size: .85rem; color: var(--text-body); transition: background var(--transition), color var(--transition); }
.nav-dropdown a:hover { background: var(--bg-light); color: var(--blue-mid); }
.nav-chevron { font-size: .7rem; margin-left: 3px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 24px; font-size: .9rem; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border-light); }
.mobile-nav a:hover { color: var(--blue-mid); background: var(--bg-light); }

/* === BREAKING NEWS TICKER === */
.breaking-bar { background: var(--red-news); color: var(--white); padding: 9px 0; overflow: hidden; }
.breaking-inner { display: flex; align-items: center; gap: 16px; }
.breaking-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; background: rgba(0,0,0,.2); padding: 3px 10px; border-radius: 2px; flex-shrink: 0; }
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-items { display: flex; gap: 0; animation: ticker 45s linear infinite; white-space: nowrap; }
.ticker-item { font-size: .82rem; padding-right: 60px; }
.ticker-item::after { content: '●'; margin-left: 60px; opacity: .5; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === HERO === */
.hero-section { padding: 48px 0 40px; border-bottom: 1px solid var(--border); }
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.hero-main-article { }
.hero-category { font-size: .75rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 14px; }
.hero-title { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--text-dark); line-height: 1.15; margin-bottom: 18px; }
.hero-lead { font-size: 1.1rem; color: var(--text-body); line-height: 1.7; margin-bottom: 22px; max-width: 640px; }
.hero-meta { display: flex; align-items: center; gap: 18px; font-size: .8rem; color: var(--text-muted); margin-bottom: 28px; }
.hero-meta strong { color: var(--text-body); }
.hero-image { margin-top: 28px; border-radius: var(--radius); overflow: hidden; }
.hero-image img { width: 100%; height: 380px; object-fit: cover; }
.hero-sidebar { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--border); padding-left: 40px; }
.hero-sidebar-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; margin-bottom: 20px; }
.sidebar-article { padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article .tag { display: block; margin-bottom: 6px; }
.sidebar-article h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 6px; }
.sidebar-article h3 a:hover { color: var(--blue-mid); }
.sidebar-article .meta { font-size: .75rem; color: var(--text-muted); }

/* === ARTICLE CARDS === */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { overflow: hidden; }
.card-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: 20px; }
.card-body .tag { margin-bottom: 8px; }
.card-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 10px; }
.card-title a:hover { color: var(--blue-mid); }
.card-excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.card-meta { font-size: .75rem; color: var(--text-light); display: flex; justify-content: space-between; }

/* === GRID LAYOUTS === */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-content { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }

/* === HORIZONTAL CARD === */
.card-h { display: grid; grid-template-columns: 180px 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow var(--transition); }
.card-h:hover { box-shadow: var(--shadow-md); }
.card-h .card-img img { width: 180px; height: 130px; object-fit: cover; }
.card-h .card-body { padding: 16px 18px; }
.card-h .card-title { font-size: 1rem; }
.card-h .card-excerpt { font-size: .82rem; }

/* === SECTION BLOCKS === */
.section-block { padding: 48px 0; }
.section-block + .section-block { border-top: 1px solid var(--border); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.bg-light { background: var(--bg-light); }

/* === OPINION BLOCK === */
.opinion-card { padding: 24px; border-left: 3px solid var(--blue-mid); background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--blue-mid); border-radius: 0 var(--radius) var(--radius) 0; }
.opinion-quote { font-family: var(--font-heading); font-size: 1.15rem; font-style: italic; color: var(--text-dark); line-height: 1.5; margin-bottom: 14px; }
.opinion-author { display: flex; align-items: center; gap: 12px; }
.opinion-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.opinion-author-info .name { font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.opinion-author-info .role { font-size: .75rem; color: var(--text-muted); }

/* === MOST READ === */
.most-read-list { }
.most-read-item { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.most-read-item:last-child { border-bottom: none; }
.most-read-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--border); line-height: 1; flex-shrink: 0; width: 36px; }
.most-read-item h4 { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; }
.most-read-item h4 a:hover { color: var(--blue-mid); }
.most-read-item .meta { font-size: .73rem; color: var(--text-light); margin-top: 4px; }

/* === SIDEBAR === */
.sidebar {}
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); padding-bottom: 8px; margin-bottom: 16px; }
.cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: .875rem; color: var(--text-body); transition: color var(--transition); }
.cat-list a:hover { color: var(--blue-mid); }
.cat-count { font-size: .75rem; color: var(--text-light); }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: .78rem; color: var(--text-muted); transition: all var(--transition); }
.tag-pill:hover { border-color: var(--blue-mid); color: var(--blue-mid); background: var(--bg-section); }

/* === NEWSLETTER === */
.newsletter-section { background: var(--blue-deep); color: var(--white); padding: 52px 0; }
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.newsletter-inner p { font-size: .95rem; opacity: .85; margin-bottom: 28px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 12px 18px; border: none; border-radius: var(--radius); font-size: .9rem; outline: none; }
.newsletter-form button { background: rgba(255,255,255,.15); color: var(--white); padding: 12px 24px; border-radius: var(--radius); font-size: .875rem; font-weight: 600; border: 1.5px solid rgba(255,255,255,.4); transition: background var(--transition); white-space: nowrap; }
.newsletter-form button:hover { background: rgba(255,255,255,.25); }
.newsletter-note { font-size: .75rem; opacity: .6; margin-top: 12px; }
#newsletter-success { display: none; background: rgba(255,255,255,.15); border-radius: var(--radius); padding: 14px 20px; margin-top: 14px; font-size: .9rem; }

/* === ARTICLE PAGE === */
.article-header { padding: 40px 0 28px; border-bottom: 1px solid var(--border); }
.article-header .tag { margin-bottom: 12px; }
.article-title { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--text-dark); line-height: 1.15; margin-bottom: 18px; }
.article-lead { font-size: 1.15rem; color: var(--text-body); line-height: 1.7; font-weight: 400; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 20px; font-size: .8rem; color: var(--text-muted); padding-bottom: 16px; }
.article-author { font-weight: 600; color: var(--text-dark); }
.article-share { display: flex; gap: 10px; align-items: center; }
.share-btn { padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: .75rem; font-weight: 600; transition: all var(--transition); }
.share-btn:hover { background: var(--blue-deep); color: var(--white); border-color: var(--blue-deep); }
.article-featured-img { margin: 28px 0; border-radius: var(--radius); overflow: hidden; }
.article-featured-img img { width: 100%; max-height: 500px; object-fit: cover; }
.article-featured-img figcaption { font-size: .78rem; color: var(--text-light); padding: 8px 12px; font-style: italic; }
.article-body { max-width: 760px; }
.article-body p { font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 20px; }
.article-body h2 { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; color: var(--text-dark); margin: 32px 0 16px; }
.article-body h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin: 24px 0 12px; }
.article-body blockquote { border-left: 3px solid var(--blue-mid); padding: 14px 20px; background: var(--bg-section); margin: 24px 0; font-style: italic; color: var(--text-dark); font-size: 1.05rem; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 20px; }
.article-body li { font-size: 1rem; line-height: 1.75; color: var(--text-body); margin-bottom: 6px; list-style: disc; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--border); margin-top: 36px; }
.article-tags span { font-size: .75rem; color: var(--text-muted); font-weight: 600; }

/* === PAGE HEADER === */
.page-header { background: var(--bg-section); padding: 40px 0 32px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.page-header p { font-size: 1rem; color: var(--text-muted); max-width: 580px; line-height: 1.6; }
.breadcrumb { font-size: .78rem; color: var(--text-light); margin-bottom: 12px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--blue-mid); }
.breadcrumb span { color: var(--text-light); }

/* === CONTACT FORM === */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9rem; color: var(--text-body); background: var(--white); outline: none; transition: border-color var(--transition); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue-mid); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .78rem; color: var(--text-light); margin-top: 4px; }
.required-star { color: var(--red-news); }
#contact-success { display: none; background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: 18px 22px; margin-top: 18px; }
#contact-success h4 { font-size: 1rem; font-weight: 700; color: #065f46; margin-bottom: 4px; }
#contact-success p { font-size: .88rem; color: #047857; }
.contact-info-block { background: var(--bg-light); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { width: 36px; height: 36px; background: var(--blue-deep); color: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.contact-info-text .label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-text .value { font-size: .9rem; color: var(--text-dark); font-weight: 500; }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; padding: 28px 20px; border: 1px solid var(--border); border-radius: var(--radius); transition: box-shadow var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--bg-section); }
.team-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: .8rem; font-weight: 600; color: var(--blue-mid); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.team-bio { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* === ABOUT PAGE === */
.about-intro-grid { display: grid; grid-template-columns: 1fr 420px; gap: 52px; align-items: center; }
.about-intro-text h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.about-intro-text p { font-size: .97rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; height: 320px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-item { padding: 24px; background: var(--bg-light); border-radius: var(--radius); border-top: 3px solid var(--blue-mid); }
.value-item h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.value-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* === POLICY PAGES === */
.policy-content { max-width: 800px; padding: 48px 0 64px; }
.policy-content h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.policy-meta { font-size: .82rem; color: var(--text-muted); margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.policy-content h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin: 36px 0 14px; }
.policy-content h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin: 24px 0 10px; }
.policy-content p { font-size: .95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 18px; }
.policy-content li { font-size: .95rem; color: var(--text-body); line-height: 1.75; margin-bottom: 6px; list-style: disc; }
.policy-content ol li { list-style: decimal; }
.policy-content a { color: var(--blue-mid); text-decoration: underline; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; }
.policy-content th { background: var(--bg-section); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--text-dark); border: 1px solid var(--border); }
.policy-content td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text-body); vertical-align: top; }
.policy-nav { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px; }
.policy-nav h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 12px; }
.policy-nav ol { padding-left: 18px; }
.policy-nav li { font-size: .875rem; margin-bottom: 6px; list-style: decimal; }
.policy-nav a { color: var(--blue-mid); }

/* === FOOTER === */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,.8); }
.footer-main { padding: 52px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-wordmark { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.5); }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: 14px; }
.footer-address { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 14px; line-height: 1.7; }
.footer-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-policy-links { display: flex; gap: 20px; }
.footer-policy-links a { font-size: .78rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-policy-links a:hover { color: var(--white); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: rgba(255,255,255,.6); transition: all var(--transition); }
.social-link:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.1); }

/* === SEARCH RESULTS === */
.search-result-item { padding: 22px 0; border-bottom: 1px solid var(--border-light); }
.search-result-item h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.search-result-item h3 a:hover { color: var(--blue-mid); }
.search-result-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* === NEWS LIST === */
.news-list-item { display: grid; grid-template-columns: 240px 1fr; gap: 0; border-bottom: 1px solid var(--border-light); overflow: hidden; border-radius: var(--radius); transition: box-shadow var(--transition); margin-bottom: 18px; }
.news-list-item:hover { box-shadow: var(--shadow-sm); }
.news-list-img img { width: 240px; height: 156px; object-fit: cover; }
.news-list-body { padding: 18px 22px; }
.news-list-body .tag { margin-bottom: 6px; }
.news-list-body h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 8px; }
.news-list-body h3 a:hover { color: var(--blue-mid); }
.news-list-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.news-list-body .meta { font-size: .75rem; color: var(--text-light); }
.pagination { display: flex; justify-content: center; gap: 8px; padding: 36px 0; }
.page-btn { width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--text-body); transition: all var(--transition); }
.page-btn.active, .page-btn:hover { background: var(--blue-deep); color: var(--white); border-color: var(--blue-deep); }

/* === STATS BAR === */
.stats-bar { background: var(--bg-section); border-bottom: 1px solid var(--border); padding: 20px 0; }
.stats-inner { display: flex; justify-content: center; gap: 60px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--blue-deep); line-height: 1; }
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-top: 4px; }
