/* ============================================================
   AFORE.COM.MX — Global Stylesheet
   Diseño Moderno / Fintech — 2026
   ============================================================ */

:root {
  --primary:     #1a3c5e;
  --accent:      #00b894;
  --accent2:     #0984e3;
  --gold:        #f9a825;
  --danger:      #d63031;
  --bg:          #f4f7fb;
  --bg-card:     #ffffff;
  --text:        #1e2d3d;
  --text-muted:  #6b7c93;
  --border:      #dde3ed;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.13);
  --nav-height:  68px;
  --font:        'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

/* ─── Typography ─── */
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--text-muted); }
.text-center { text-align: center; }

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

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--primary);
  height: var(--nav-height);
  display: flex; align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand .logo-icon {
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.navbar-brand .logo-icon span { font-size: 1.2rem; }
.navbar-brand .brand-text { color: #fff; font-size: 1.25rem; font-weight: 800; letter-spacing: -.5px; }
.navbar-brand .brand-text small { font-size: .65rem; color: var(--accent); display: block; font-weight: 400; letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.12); color: #fff; text-decoration: none; }
.nav-links a.active { background: var(--accent); color: #fff; }

.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 8px 18px !important; border-radius: 24px !important; font-weight: 600 !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2b4a 60%, #1a4a7a 100%);
  padding: 80px 0 60px; color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,184,148,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,184,148,.2); border: 1px solid rgba(0,184,148,.4);
  color: var(--accent); padding: 6px 14px; border-radius: 20px; font-size: .8rem; font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 30px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: all .25s; text-decoration: none !important;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #00a381; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,184,148,.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-blue { background: var(--accent2); color: #fff; }
.btn-blue:hover { background: #0773c5; transform: translateY(-2px); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 20px 16px; text-align: center; backdrop-filter: blur(6px);
}
.stat-card .stat-num { font-size: 1.9rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-card .stat-label { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: #fff; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .badge {
  display: inline-block; background: rgba(0,184,148,.12); color: var(--accent);
  font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-header h2 { color: var(--primary); margin-bottom: 10px; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.card-icon.green  { background: rgba(0,184,148,.12); }
.card-icon.blue   { background: rgba(9,132,227,.12); }
.card-icon.gold   { background: rgba(249,168,37,.12); }
.card-icon.purple { background: rgba(162,84,200,.12); }
.card-icon.red    { background: rgba(214,48,49,.1); }
.card h3 { color: var(--primary); margin-bottom: 8px; }
.card p  { font-size: .9rem; }

/* ─────────────────────────────────────────
   TABLE
───────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: #fff; }
thead tr { background: var(--primary); color: #fff; }
thead th { padding: 14px 16px; text-align: left; font-size: .82rem; font-weight: 600; letter-spacing: .5px; white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
tbody tr:hover { background: #f0f6ff; }
tbody td { padding: 13px 16px; font-size: .9rem; }
tbody tr:last-child { border-bottom: none; }
.badge-rank { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: .78rem; font-weight: 700; }
.rank-1 { background: #fff3e0; color: #e65100; }
.rank-2 { background: #f3f3f3; color: #546e7a; }
.rank-3 { background: #fff8e1; color: #f9a825; }
.rank-n { background: var(--bg); color: var(--text-muted); }
.tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.tag-green { background: rgba(0,184,148,.12); color: #00a381; }
.tag-blue  { background: rgba(9,132,227,.12);  color: #0773c5; }
.tag-gold  { background: rgba(249,168,37,.12);  color: #e6930a; }
.tag-red   { background: rgba(214,48,49,.1);    color: #c0392b; }

/* ─────────────────────────────────────────
   FILTER BAR
───────────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 28px; box-shadow: var(--shadow);
}
.filter-bar label { font-size: .82rem; font-weight: 600; color: var(--primary); }
.filter-bar select, .filter-bar input {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: .88rem; color: var(--text); background: var(--bg); cursor: pointer;
  outline: none; transition: border .2s;
}
.filter-bar select:focus, .filter-bar input:focus { border-color: var(--accent2); }

/* ─────────────────────────────────────────
   ADSENSE ZONES
───────────────────────────────────────── */
.ad-zone {
  background: var(--bg); border: 2px dashed var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--text-muted);
  font-size: .78rem; text-align: center; gap: 6px;
}
.ad-zone-leaderboard  { width: 100%; height: 90px;  min-height: 90px; }
.ad-zone-rectangle    { width: 300px; height: 250px; min-width: 300px; }
.ad-zone-wide         { width: 100%; height: 90px; }
.ad-zone-inline       { width: 100%; height: 180px; }
.ad-zone-sidebar      { width: 100%; height: 600px; }
.ad-zone span { font-size: 1.3rem; }
.ad-banner-top        { padding: 12px 0; background: #fff; border-bottom: 1px solid var(--border); }
.ad-banner-bottom     { padding: 20px 0; margin-top: 40px; }
.ad-inline-section    { padding: 24px 0; }
.ad-sidebar-sticky    { position: sticky; top: calc(var(--nav-height) + 20px); }

/* Layout with sidebar */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
@media (max-width: 1000px) { .content-sidebar { grid-template-columns: 1fr; } .ad-sidebar-sticky { display: none; } }

/* ─────────────────────────────────────────
   CALCULATOR
───────────────────────────────────────── */
.calc-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-lg);
}
.calc-group { margin-bottom: 22px; }
.calc-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--primary); margin-bottom: 7px; }
.calc-group input[type=range] { width: 100%; accent-color: var(--accent); }
.calc-group .value-display {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 3px 12px; border-radius: 20px; font-size: .82rem; font-weight: 700; margin-left: 10px;
}
.calc-result {
  background: linear-gradient(135deg, var(--primary), #0d2b4a);
  border-radius: var(--radius); padding: 28px; color: #fff; text-align: center; margin-top: 28px;
}
.calc-result .result-num { font-size: 2.6rem; font-weight: 800; color: var(--accent); }
.calc-result .result-label { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: 4px; }
.calc-result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.calc-result-item { background: rgba(255,255,255,.1); border-radius: 10px; padding: 14px; }
.calc-result-item .num { font-size: 1.2rem; font-weight: 700; }
.calc-result-item .lbl { font-size: .75rem; color: rgba(255,255,255,.65); margin-top: 3px; }

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; user-select: none;
  font-weight: 600; color: var(--primary); gap: 12px;
}
.faq-question:hover { background: #f8faff; }
.faq-icon { font-size: 1.2rem; transition: transform .3s; color: var(--accent2); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-answer p { padding: 0 22px 18px; font-size: .92rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ─────────────────────────────────────────
   GLOSSARY
───────────────────────────────────────── */
.glossary-alpha { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.alpha-btn {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-weight: 700; font-size: .85rem;
  color: var(--text-muted); transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.alpha-btn:hover, .alpha-btn.active { background: var(--accent2); color: #fff; border-color: var(--accent2); }
.glossary-term { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 14px; }
.glossary-term h3 { color: var(--primary); font-size: 1rem; display: flex; align-items: center; gap: 10px; }
.glossary-term h3 .letter-tag { background: var(--accent2); color: #fff; border-radius: 6px; padding: 2px 8px; font-size: .75rem; }
.glossary-term p { font-size: .9rem; margin-top: 6px; }

/* ─────────────────────────────────────────
   TIPS PAGE
───────────────────────────────────────── */
.tips-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tip-tab {
  padding: 9px 20px; border-radius: 24px; border: 2px solid var(--border);
  background: #fff; cursor: pointer; font-size: .88rem; font-weight: 600;
  color: var(--text-muted); transition: all .2s;
}
.tip-tab:hover { border-color: var(--accent2); color: var(--accent2); }
.tip-tab.active { background: var(--accent2); color: #fff; border-color: var(--accent2); }
.tip-panel { display: none; }
.tip-panel.active { display: block; }
.tip-step { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.tip-step-num {
  min-width: 40px; height: 40px; border-radius: 50%; background: var(--accent2);
  color: #fff; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tip-step-content h4 { color: var(--primary); font-size: 1rem; margin-bottom: 4px; }
.tip-step-content p { font-size: .9rem; }
.alert-box {
  display: flex; gap: 14px; padding: 16px 20px; border-radius: var(--radius);
  margin: 20px 0; align-items: flex-start;
}
.alert-box.info  { background: rgba(9,132,227,.08);  border-left: 4px solid var(--accent2); }
.alert-box.warn  { background: rgba(249,168,37,.1);   border-left: 4px solid var(--gold); }
.alert-box.good  { background: rgba(0,184,148,.08);   border-left: 4px solid var(--accent); }
.alert-box .alert-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.alert-box p { font-size: .9rem; margin: 0; color: var(--text); }

/* ─────────────────────────────────────────
   AFORE LOGOS / CARDS
───────────────────────────────────────── */
.afore-logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.afore-logo-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; cursor: pointer;
  transition: all .2s; box-shadow: var(--shadow);
}
.afore-logo-card:hover { border-color: var(--accent2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.afore-logo-card .afore-initial {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0 auto 10px;
}
.afore-logo-card p { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }

/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */
.breadcrumb { padding: 14px 0; font-size: .82rem; color: var(--text-muted); }
.breadcrumb a { color: var(--accent2); }
.breadcrumb span { margin: 0 8px; }

/* ─────────────────────────────────────────
   PAGE HERO (sub-pages)
───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  padding: 48px 0 40px; color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.4rem); }
.page-hero p  { color: rgba(255,255,255,.75); margin-top: 8px; font-size: 1rem; }
.page-hero .breadcrumb a { color: var(--accent); }
.page-hero .breadcrumb { color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--primary); color: rgba(255,255,255,.75);
  padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  transition: background .2s; color: #fff; text-decoration: none !important;
}
.social-btn:hover { background: var(--accent); }

/* ─────────────────────────────────────────
   PROGRESS BAR
───────────────────────────────────────── */
.progress-bar { background: var(--border); border-radius: 4px; height: 8px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: var(--accent2); transition: width .6s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid         { grid-template-columns: 1fr; }
  .hero-stats        { grid-template-columns: repeat(3,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links         { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
                       background: var(--primary); flex-direction: column; padding: 20px;
                       border-top: 1px solid rgba(255,255,255,.1); z-index: 999; }
  .nav-links.open    { display: flex; }
  .hamburger         { display: flex; }
  .hero-stats        { grid-template-columns: 1fr 1fr; }
  .calc-result-grid  { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex  { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-12 { gap: 12px; }
.hidden { display: none !important; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-green   { color: var(--accent); }
.text-red     { color: var(--danger); }
.fw-700       { font-weight: 700; }
.fs-sm        { font-size: .85rem; }

/* ============================================================
   v2.0 — Compliance AdSense (mayo 2026)
   Disclaimer global + Cookie banner
   ============================================================ */

.global-disclaimer {
  background: #fff8e1;
  border-bottom: 1px solid #f9d77a;
  color: #6a4c00;
  font-size: .82rem;
  padding: 8px 0;
  text-align: center;
  line-height: 1.4;
}
.global-disclaimer a { color: #b07a00; text-decoration: underline; font-weight: 600; }

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(26, 60, 94, .98);
  color: #fff;
  z-index: 9999;
  padding: 18px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  display: flex; justify-content: center;
}
.cookie-content {
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.cookie-content h4 { color: #fff; margin-bottom: 4px; font-size: 1rem; }
.cookie-content p  { color: rgba(255,255,255,.85); font-size: .85rem; margin: 0; }
.cookie-content a  { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-cookie {
  padding: 9px 16px; border-radius: 8px; border: 0; cursor: pointer;
  font-size: .82rem; font-weight: 600; font-family: var(--font);
  transition: opacity .2s;
}
.btn-cookie:hover { opacity: .85; }
.btn-cookie-accept { background: var(--accent); color: #fff; }
.btn-cookie-reject { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-cookie-config { background: rgba(255,255,255,.15); color: #fff; }

@media (max-width: 720px) {
  .cookie-content { grid-template-columns: 1fr; }
  .cookie-buttons { justify-content: stretch; }
  .btn-cookie { flex: 1; min-width: 100px; }
}

/* Aviso de transparencia publicitaria */
.ad-label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); text-align: center; margin-bottom: 4px;
  font-weight: 600; opacity: .75;
}

/* Caja de contenido legal (privacidad/términos/descargo) */
.legal-content h2 { color: var(--primary); margin: 32px 0 12px; font-size: 1.3rem; }
.legal-content p, .legal-content li { color: var(--text); font-size: .95rem; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }

/* Fecha de publicación / actualización en artículos */
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: var(--text-muted);
  padding: 10px 14px; background: rgba(9, 132, 227, .06);
  border-radius: 8px; margin: 16px 0 24px;
  border-left: 3px solid var(--accent2);
}
.article-meta strong { color: var(--primary); }
