/*
Theme Name: PBN Magna Editorial
Theme URI: https://magnawarta.com
Description: Suara yang Bergema Sepanjang Masa. Portal berita profesional jaringan PBN.
Author: Portal Berita Nusantara
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: pbn-magna-editorial
Tags: news, blog, dark, full-width-template, custom-menu, featured-images
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,900&family=Newsreader:wght@300;400;600;700&display=swap');

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

:root {
  --bg:         #120508;
  --bg2:        #1a070c;
  --bg3:        #220a0f;
  --primary:    #8b1a2a;
  --accent:     #c0c0c0;
  --accent2:    #e0e0e0;
  --text:       #f5f0f0;
  --muted:      rgba(245,240,240,0.50);
  --border:     rgba(245,240,240,0.08);
  --radius:     8px;
  --transition: 0.2s ease;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Newsreader', Georgia, serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; }

/* ── READING PROGRESS BAR ── */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: #8b1a2a;
  z-index: 9999;
  transition: width 0.1s;
}

/* ── BREAKING BAR ── */
.breaking-bar {
  background: #8b1a2a;
  padding: 7px 0;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.breaking-label {
  display: inline-block;
  background: #ffffff;
  color: #8b1a2a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 10px;
  margin-right: 16px;
  flex-shrink: 0;
}
.ticker-wrap {
  display: flex;
  overflow: hidden;
  flex: 1;
}
.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-set {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  padding-right: 0;
}
.ticker-set a {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 32px 0 0;
  white-space: nowrap;
  opacity: 0.92;
}
.ticker-set a:hover { opacity: 1; color: #ffffff; text-decoration: underline; }
.breaking-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: #1a070c;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-branding { flex-shrink: 0; }
.site-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  color:#f5f0f0;
  display: block;
}
.site-title:hover { opacity: 0.85; }
.site-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
  margin-top: 2px;
  display: block;
}

/* ── NAV ── */
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 4px;
  position: relative;
  transition: color var(--transition);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 1px;
}
.header-nav a:hover { color: var(--accent); }
.header-nav a:hover::after { transform: scaleX(1); }

/* ── HEADER ACTIONS ── */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.search-toggle {
  background: none;
  color: var(--muted);
  padding: 8px;
  border-radius: 4px;
  font-size: 1rem;
  transition: color var(--transition);
  display: flex; align-items: center;
}
.search-toggle:hover { color: var(--accent); }
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 500;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  backdrop-filter: blur(8px);
}
.search-overlay.active { display: flex; }
.search-overlay form {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}
.search-overlay input {
  width: 100%;
  background: var(--bg2);
  border: 2px solid var(--accent);
  border-radius: 6px;
  padding: 16px 24px;
  font-size: 1.2rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
}
.search-overlay input::placeholder { color: var(--muted); }
.search-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  color: var(--muted);
  font-size: 1.5rem;
  padding: 8px;
}

/* ── HAMBURGER MOBILE ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }

/* ── HERO SECTION ── */
.hero-section {
  max-width: 1320px;
  margin: 32px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.hero-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  background: var(--bg2);
  cursor: pointer;
}
.hero-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-main:hover img { transform: scale(1.03); }
.hero-main .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.hero-main .hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.cat-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c0c0c0;
  border: 1px solid #c0c0c0;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.hero-main h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-main h2 a { color: #fff; }
.hero-main h2 a:hover { color: var(--accent); }
.hero-meta {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta span { display: flex; align-items: center; gap: 4px; }
.hero-placeholder {
  width: 100%;
  height: 480px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2rem;
}

/* ── SIDE ARTICLES ── */
.hero-side-top, .hero-side-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.side-card {
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.side-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.side-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.side-card:hover img { transform: scale(1.05); }
.side-card .side-body { padding: 12px; }
.side-card .cat-badge { margin-bottom: 6px; border-color: transparent; padding: 2px 0; }
.side-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
}
.side-card h3 a { color: var(--text); }
.side-card h3 a:hover { color: var(--accent); }
.side-card .card-meta {
  font-size: 0.62rem;
  color: var(--muted);
}

/* ── SECTION TITLE ── */
.section-title {
  max-width: 1320px;
  margin: 48px auto 20px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-title h2 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.section-title .title-bar {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title .title-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── ARTICLE GRID ── */
.article-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.article-card {
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.article-card .card-img {
  overflow: hidden;
  height: 180px;
}
.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
  loading: lazy;
}
.article-card:hover img { transform: scale(1.05); }
.article-card .card-img-placeholder {
  width: 100%;
  height: 180px;
  background: #1a070c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.5rem;
}
.card-body { padding: 16px; }
.card-body .cat-badge { margin-bottom: 8px; border-color: transparent; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--accent); }
.card-meta {
  font-size: 0.62rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* ── PAGINATION ── */
.pagination {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ── SINGLE ARTICLE ── */
.single-hero {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}
.single-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.single-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.single-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.breadcrumb {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border); }
.article-header { margin-bottom: 32px; }
.article-header .cat-badge { margin-bottom: 16px; font-size: 0.65rem; }
.article-header h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.article-meta .author { font-weight: 600; color: var(--text); }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.article-featured-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 32px 0 8px;
  max-height: 480px;
  object-fit: cover;
}
.image-caption {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
  text-align: center;
}
/* Article Body */
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
}
.article-body p { margin-bottom: 24px; }
.article-body p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.75;
  margin: 8px 12px 0 0;
  color: var(--accent);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid #8b1a2a;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body img {
  border-radius: var(--radius);
  margin: 24px 0;
}
/* Tags */
.article-tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.article-tags .tags-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.tag-pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all var(--transition);
}
.tag-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
/* Social Share Floating */
.share-floating {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 50;
}
.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transition: transform var(--transition), opacity var(--transition);
  border: none;
  text-decoration: none;
}
.share-btn:hover { transform: scale(1.15); opacity: 0.9; color: #fff; }
.share-wa { background: #25D366; }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.share-tg { background: #0088CC; }
/* Related Articles */
.related-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.related-section h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.related-section h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── ARCHIVE / CATEGORY ── */
.archive-header {
  max-width: 1320px;
  margin: 48px auto 32px;
  padding: 0 24px;
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}
.archive-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.archive-header p { font-size: 0.85rem; color: var(--muted); }

/* ── 404 PAGE ── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.page-404 .code-404 {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -16px;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.page-404 p { font-size: 1rem; color: var(--muted); margin-bottom: 32px; }
.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  transition: opacity var(--transition);
}
.btn-home:hover { opacity: 0.85; color: var(--bg); }

/* ── ADSENSE SLOTS ── */
.ad-slot {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 32px;
  text-align: center;
}
.ad-slot-inner {
  background: var(--bg2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color:#f5f0f0;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }

/* Network footer */
.footer-network {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.footer-network h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.network-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.network-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all var(--transition);
}
.network-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-bottom {
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: var(--accent); }

/* ── SEARCH PAGE ── */
.search-header {
  max-width: 1320px;
  margin: 48px auto 32px;
  padding: 0 24px;
}
.search-header h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.search-header p { font-size: 0.85rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1.5fr 1fr; }
  .article-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-side-top, .hero-side-bottom { grid-template-columns: 1fr; }
  .hero-main img { height: 300px; }
  .hero-main { min-height: 300px; }
  .hero-main h2 { font-size: 1.4rem; }
  .article-grid { grid-template-columns: 1fr; }
  .article-header h1 { font-size: 1.7rem; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .share-floating { display: none; }
}
@media (max-width: 480px) {
  .hero-main img { height: 240px; }
  .article-header h1 { font-size: 1.4rem; }
  .article-body p:first-of-type::first-letter { font-size: 3.5rem; }
}
