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

:root {
  --gold:        #c9a227;
  --gold-light:  #e8c96f;
  --gold-dark:   #9c7a18;
  --gold-pale:   #f5edd0;
  --red:         #c41e3a;
  --red-dark:    #8b0000;
  --dark:        #0d0d0d;
  --dark-2:      #1a1a1a;
  --dark-3:      #252525;
  --dark-4:      #3a3a3a;
  --text:        #1a1a1a;
  --text-light:  #555;
  --text-muted:  #888;
  --bg:          #f4f0e8;
  --bg-card:     #ffffff;
  --border:      #ddd5c0;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --shadow:      0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:   0 6px 24px rgba(0,0,0,.14);
  --radius:      4px;
  --ease:        all .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 { font-family: var(--serif); line-height: 1.25; color: var(--dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ──────────────────────────────────────────────────────────────── */
.site-header { background: var(--dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,.5); }

.header-top-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(201,162,39,.15);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.header-top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.header-top-bar a { color: rgba(255,255,255,.55); }
.header-top-bar a:hover { color: var(--gold); }
.header-top-social { display: flex; gap: 12px; }
.header-top-social a { font-size: 13px; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-logo img { height: 56px; width: auto; }
.site-logo-text .name { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1.1; }
.site-logo-text .tagline { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; letter-spacing: .5px; }

.header-search { flex: 1; max-width: 340px; }
.header-search form { display: flex; background: rgba(255,255,255,.07); border: 1px solid rgba(201,162,39,.2); border-radius: 3px; overflow: hidden; }
.header-search input { background: none; border: none; padding: 8px 14px; color: #fff; font-size: 14px; flex: 1; outline: none; }
.header-search input::placeholder { color: rgba(255,255,255,.35); }
.header-search button { background: var(--gold); border: none; padding: 8px 14px; color: var(--dark); cursor: pointer; font-size: 15px; transition: var(--ease); }
.header-search button:hover { background: var(--gold-light); }

/* ── NAVIGATION ──────────────────────────────────────────────────────────── */
.main-nav { background: var(--dark-2); border-top: 2px solid var(--gold); }
.main-nav .container { display: flex; align-items: stretch; }
.main-nav ul { display: flex; align-items: stretch; flex-wrap: wrap; }
.main-nav li { position: relative; }
.main-nav a {
  display: block; padding: 12px 16px;
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500; letter-spacing: .3px;
  text-transform: uppercase; transition: var(--ease); white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 12px 16px; color: rgba(255,255,255,.8); font-size: 20px; }

/* ── BREAKING NEWS ───────────────────────────────────────────────────────── */
.breaking-news {
  background: var(--red); color: #fff;
  display: flex; align-items: center; overflow: hidden;
}
.breaking-label {
  background: var(--red-dark); padding: 8px 18px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap; flex-shrink: 0;
}
.breaking-ticker { flex: 1; overflow: hidden; padding: 0 16px; }
.breaking-ticker .ticker-wrap { display: flex; align-items: center; height: 36px; }
.breaking-ticker .ticker-text { font-size: 13px; font-weight: 500; white-space: nowrap; animation: ticker 25s linear infinite; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ── HERO / BANNER ───────────────────────────────────────────────────────── */
.hero-section { background: var(--dark-3); }
.hero-slider { position: relative; overflow: hidden; min-height: 480px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; position: relative; }
.hero-slide-img { width: 100%; height: 480px; object-fit: cover; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 40px;
}
.hero-slide-content { max-width: 700px; }
.hero-slide-category { display: inline-block; background: var(--red); color: #fff; padding: 4px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; border-radius: 2px; }
.hero-slide-title { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.hero-slide-title a { color: #fff; }
.hero-slide-title a:hover { color: var(--gold-light); }
.hero-slide-meta { font-size: 13px; color: rgba(255,255,255,.65); }
.hero-dots { position: absolute; bottom: 14px; right: 20px; display: flex; gap: 6px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: var(--ease); }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* Static hero (no slider) */
.hero-static { position: relative; }
.hero-static-img { width: 100%; height: 480px; object-fit: cover; }
.hero-static-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.8) 0%,rgba(0,0,0,.25) 70%,transparent); display: flex; align-items: flex-end; padding: 48px; }
.hero-static-content h1 { font-family: var(--serif); color: #fff; font-size: clamp(2rem,4vw,3rem); margin-bottom: 12px; }
.hero-static-content p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; }

/* Default hero (no image/banner) */
.hero-default { background: linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 50%,#1a0a00 100%); padding: 60px 0; text-align: center; border-bottom: 3px solid var(--gold); }
.hero-default h1 { font-family: var(--serif); color: var(--gold); font-size: clamp(2rem,4vw,3rem); margin-bottom: 14px; }
.hero-default p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── LAYOUT GRID ─────────────────────────────────────────────────────────── */
.main-layout { padding: 40px 0; }
.main-layout .container { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
@media(max-width:900px) { .main-layout .container { grid-template-columns: 1fr; } }
.main-content { min-width: 0; }
.sidebar { min-width: 0; }

/* ── SECTION HEADER ──────────────────────────────────────────────────────── */
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.section-header h2, .section-header h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  padding-left: 14px; border-left: 4px solid var(--gold); line-height: 1;
}
.section-link { margin-left: auto; font-size: 13px; color: var(--gold); font-weight: 500; }
.section-link:hover { text-decoration: underline; }
.section { margin-bottom: 48px; }

/* ── ARTICLE CARDS ───────────────────────────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.articles-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media(max-width:768px) { .articles-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .articles-grid,.articles-grid-2 { grid-template-columns: 1fr; } }

.article-card {
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--ease); display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.article-card-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-img-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg,var(--dark-3),var(--dark-4)); display: flex; align-items: center; justify-content: center; }
.article-card-img-placeholder .ph-icon { font-size: 2.5rem; opacity: .2; }

.article-card-cat {
  position: absolute; top: 10px; left: 10px;
  display: inline-block; padding: 3px 10px; border-radius: 2px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #fff;
}
.article-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.article-card-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.article-card-title a { color: var(--dark); }
.article-card-title a:hover { color: var(--red); }
.article-card-excerpt { font-size: 13.5px; color: var(--text-light); line-height: 1.55; flex: 1; }
.article-card-meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.article-card-meta .views-icon::before { content: '👁 '; }
.article-card-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--gold-pale); color: var(--gold-dark); padding: 2px 8px; border-radius: 2px; font-size: 11px; font-weight: 600; }

/* Featured / large card */
.article-card-lg .article-card-img { aspect-ratio: 16/8; }
.article-card-lg .article-card-title { font-size: 1.3rem; }

/* Horizontal list card */
.article-list-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.article-list-item:last-child { border-bottom: none; }
.article-list-thumb { flex-shrink: 0; width: 80px; height: 60px; border-radius: var(--radius); overflow: hidden; }
.article-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-list-thumb-ph { width: 80px; height: 60px; background: var(--dark-3); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); font-size: 1.2rem; flex-shrink: 0; }
.article-list-body {}
.article-list-title { font-family: var(--serif); font-size: .9rem; font-weight: 600; line-height: 1.3; margin-bottom: 5px; }
.article-list-title a { color: var(--dark); }
.article-list-title a:hover { color: var(--red); }
.article-list-meta { font-size: 11.5px; color: var(--text-muted); }

/* ── SIDEBAR ─────────────────────────────────────────────────────────────── */
.sidebar-widget { background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 28px; }
.sidebar-widget-header { background: var(--dark); color: var(--gold); padding: 12px 18px; font-family: var(--serif); font-size: .95rem; font-weight: 700; letter-spacing: .3px; }
.sidebar-widget-body { padding: 16px; }
.popular-num { flex-shrink: 0; width: 24px; height: 24px; background: var(--gold); color: var(--dark); border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.popular-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.popular-item:last-child { border-bottom: none; }
.popular-title { font-size: .85rem; font-weight: 600; line-height: 1.3; }
.popular-title a { color: var(--dark); }
.popular-title a:hover { color: var(--red); }

.cat-list li { padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cat-list li:last-child { border-bottom: none; }
.cat-list a { font-size: .9rem; font-weight: 500; color: var(--text); display: flex; align-items: center; gap: 8px; }
.cat-list a:hover { color: var(--red); }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cat-count { font-size: 12px; color: var(--text-muted); background: var(--bg); padding: 1px 8px; border-radius: 20px; }

.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip { display: inline-block; padding: 4px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--text-light); transition: var(--ease); }
.tag-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ── ARTICLE DETAIL ──────────────────────────────────────────────────────── */
.article-hero-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius); margin-bottom: 32px; }
.article-header { margin-bottom: 28px; }
.article-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.article-breadcrumb a { color: var(--text-muted); }
.article-breadcrumb a:hover { color: var(--red); }
.article-breadcrumb .sep { color: var(--border); }
.article-cat-badge { display: inline-block; padding: 4px 14px; border-radius: 2px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #fff; margin-bottom: 14px; }
.article-title { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; line-height: 1.2; color: var(--dark); margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.article-meta .author { font-weight: 600; color: var(--text); }
.article-content { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.article-content h2 { font-family: var(--serif); font-size: 1.5rem; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.article-content h3 { font-family: var(--serif); font-size: 1.25rem; margin: 24px 0 10px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 0 18px 24px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote { border-left: 4px solid var(--gold); background: var(--gold-pale); padding: 16px 20px; margin: 24px 0; font-style: italic; border-radius: 0 var(--radius) var(--radius) 0; }
.article-content blockquote p:last-child { margin-bottom: 0; }
.article-content img { border-radius: var(--radius); margin: 16px 0; max-width: 100%; }
.article-content a { color: var(--red); text-decoration: underline; }
.article-content strong { color: var(--dark); }
.article-content table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.article-content th { background: var(--dark); color: var(--gold); padding: 10px 12px; text-align: left; font-size: .9rem; }
.article-content td { padding: 9px 12px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.article-content tr:nth-child(even) td { background: var(--bg); }

.article-tags { margin: 28px 0; padding: 20px; background: var(--bg); border-radius: var(--radius); }
.article-tags h4 { font-size: .9rem; font-weight: 600; margin-bottom: 10px; }
.article-share { margin: 24px 0; }
.article-share h4 { font-size: .9rem; font-weight: 600; margin-bottom: 10px; }
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 3px; font-size: 13px; font-weight: 500; text-decoration: none !important; color: #fff !important; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter  { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #229ed9; }

.related-section { margin-top: 48px; padding-top: 32px; border-top: 2px solid var(--border); }

/* ── PAGINATION ──────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--text); transition: var(--ease);
}
.pagination a:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--gold-dark); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }
.pagination .disabled { color: var(--border); pointer-events: none; }

/* ── PARTNER SECTION ─────────────────────────────────────────────────────── */
.partner-section { background: var(--dark-2); padding: 32px 0; border-top: 2px solid rgba(201,162,39,.2); margin-top: 12px; }
.partner-section .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.partner-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); }
.partner-logos { display: flex; align-items: center; gap: 28px; }
.partner-logos img { height: 60px; width: auto; filter: brightness(.85) saturate(.8); transition: var(--ease); }
.partner-logos img:hover { filter: none; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); border-top: 3px solid var(--gold); }
.footer-main { padding: 50px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:550px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-size: 14px; color: rgba(255,255,255,.6); transition: var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-col h4 { font-family: var(--serif); color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,162,39,.2); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--ease); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col .footer-info { font-size: 14px; line-height: 2; color: rgba(255,255,255,.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── FORMS ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--sans); font-size: 15px; color: var(--text);
  background: #fff; transition: var(--ease); outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: var(--ease); text-decoration: none; justify-content: center; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-2); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }

/* ── ALERTS ──────────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d1fae5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── MISC ────────────────────────────────────────────────────────────────── */
.page-header { background: var(--dark); padding: 36px 0; border-bottom: 3px solid var(--gold); margin-bottom: 40px; }
.page-header h1 { font-family: var(--serif); color: var(--gold); font-size: clamp(1.6rem,3vw,2.2rem); }
.page-header p { color: rgba(255,255,255,.6); margin-top: 8px; font-size: .95rem; }
.page-header .breadcrumb { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); margin-top: 12px; flex-wrap: wrap; }
.page-header .breadcrumb a { color: rgba(255,255,255,.4); }
.page-header .breadcrumb a:hover { color: var(--gold-light); }

.cat-color-badge { padding: 3px 10px; border-radius: 2px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #fff; }
.search-query { color: var(--gold-dark); font-weight: 700; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 14px; opacity: .35; }
.empty-state h3 { font-family: var(--serif); margin-bottom: 8px; }

/* Page content */
.page-content { background: var(--bg-card); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-content h2 { font-family: var(--serif); font-size: 1.5rem; margin: 28px 0 12px; border-bottom: 2px solid var(--gold); padding-bottom: 8px; }
.page-content h3 { font-family: var(--serif); font-size: 1.2rem; margin: 20px 0 10px; }
.page-content p { margin-bottom: 16px; line-height: 1.8; }
.page-content ul, .page-content ol { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 6px; line-height: 1.7; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media(max-width:768px) {
  .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-2); border-top: 1px solid rgba(255,255,255,.08); z-index: 999; }
  .main-nav ul.open { display: flex; }
  .main-nav a { border-bottom: 1px solid rgba(255,255,255,.05) !important; border-left: none !important; }
  .hamburger { display: block; }
  .header-search { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slide-overlay { padding: 24px; }
  .main-layout .container { grid-template-columns: 1fr; }
  .hero-slide-img { height: 300px; }
  .hero-static-img { height: 300px; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .hero-slide-img { height: 240px; }
}
