/* ========================================
   Opangi Credit Hub - Magazine Theme
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #e8294a;
  --primary-d: #c41e3a;
  --dark:      #12151a;
  --dark2:     #1e2430;
  --dark3:     #2a3142;
  --blue:      #1a73e8;
  --green:     #34a853;
  --orange:    #fb8c00;
  --purple:    #7b1fa2;
  --teal:      #00897b;
  --text:      #222222;
  --text-m:    #666666;
  --text-l:    #999999;
  --border:    #e5e5e5;
  --bg:        #f5f7fa;
  --white:     #ffffff;
  --radius:    6px;
  --font:      'Work Sans', -apple-system, sans-serif;
  --font-s:    'Bitter', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800&family=Bitter:wght@400;600;700&display=swap');

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 0.8rem;
  color: #aaa;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-date { color: #888; }
.top-bar-social { display: flex; gap: 10px; }
.top-bar-social a {
  color: #aaa;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.top-bar-social a:hover { background: var(--primary); color: #fff; }

/* ===== HEADER ===== */
.site-header {
  background: var(--dark);
  padding: 20px 0 0;
  border-bottom: 3px solid var(--primary);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-main {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  font-family: var(--font-s);
  line-height: 1;
}
.logo-main span { color: var(--primary); }
.logo-sub {
  font-size: 0.7rem;
  color: #888;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header-search {
  display: flex;
  gap: 0;
}
.header-search input {
  padding: 9px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: #fff;
  font-size: 0.85rem;
  width: 220px;
  outline: none;
}
.header-search input::placeholder { color: #666; }
.header-search button {
  padding: 9px 14px;
  background: var(--primary);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}

/* ===== MAIN NAV ===== */
.main-nav {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.main-nav .inner {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  display: block;
  padding: 13px 16px;
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > a.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav-item.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark2);
  min-width: 220px;
  border-top: 2px solid var(--primary);
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dropdown a {
  display: block;
  padding: 10px 16px;
  color: #bbb;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.dropdown a:hover { color: #fff; background: rgba(255,255,255,0.07); padding-left: 22px; }
.nav-home { margin-right: auto; }
.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 12px 16px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BREAKING NEWS TICKER ===== */
.breaking-bar {
  background: var(--primary);
  padding: 7px 0;
  overflow: hidden;
}
.breaking-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.breaking-label {
  background: var(--dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  flex-shrink: 0;
  margin-right: 16px;
}
.breaking-text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breaking-text a { color: #fff; font-weight: 600; }

/* ===== FEATURED HERO ===== */
.hero-section { background: var(--white); padding: 28px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}
.hero-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-thumb-icon {
  font-size: 8rem;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.cat-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.cat-label.cat-basics   { background: #1a73e8; }
.cat-label.cat-improve  { background: #34a853; }
.cat-label.cat-report   { background: #7b1fa2; }
.cat-label.cat-cards    { background: #00897b; }
.cat-label.cat-loans    { background: #fb8c00; }
.cat-label.cat-tips     { background: #e8294a; }
.hero-content h2 {
  font-family: var(--font-s);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.hero-content h2 a { color: #fff; }
.hero-content h2 a:hover { color: #ffd; }
.hero-meta { display: flex; gap: 14px; font-size: 0.78rem; color: #ccc; }
.hero-meta span { display: flex; align-items: center; gap: 4px; }

/* Hero side stack */
.hero-side { display: flex; flex-direction: column; gap: 16px; }
.hero-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.hero-side-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.side-thumb {
  width: 110px;
  min-height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.side-content { padding: 12px 12px 12px 0; flex: 1; }
.side-content h3 { font-size: 0.88rem; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.side-content h3 a:hover { color: var(--primary); }
.side-meta { font-size: 0.72rem; color: var(--text-l); }

/* Gradient thumbs */
.th-blue   { background: linear-gradient(135deg,#1a73e8,#0d47a1); }
.th-green  { background: linear-gradient(135deg,#34a853,#1b5e20); }
.th-orange { background: linear-gradient(135deg,#fb8c00,#e65100); }
.th-purple { background: linear-gradient(135deg,#7b1fa2,#4a148c); }
.th-teal   { background: linear-gradient(135deg,#00897b,#004d40); }
.th-red    { background: linear-gradient(135deg,#e8294a,#b71c1c); }
.th-indigo { background: linear-gradient(135deg,#3949ab,#1a237e); }
.th-amber  { background: linear-gradient(135deg,#f9a825,#e65100); }
.th-cyan   { background: linear-gradient(135deg,#0097a7,#006064); }
.th-pink   { background: linear-gradient(135deg,#d81b60,#880e4f); }
.th-gray   { background: linear-gradient(135deg,#546e7a,#263238); }
.th-lime   { background: linear-gradient(135deg,#558b2f,#1b5e20); }

/* ===== SECTION HEADINGS ===== */
.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark);
}
.section-head h2 {
  font-family: var(--font-s);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-head .see-all {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-head .see-all:hover { text-decoration: underline; }

/* ===== ARTICLE CARD ===== */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.card-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.card-thumb-num {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.card-body { padding: 16px; }
.card-body .cat-label { margin-bottom: 8px; }
.card-body h3 {
  font-family: var(--font-s);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body h3 a:hover { color: var(--primary); }
.card-excerpt {
  font-size: 0.82rem;
  color: var(--text-m);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-l);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-author { font-weight: 600; color: var(--text-m); }
.card-read-time { display: flex; align-items: center; gap: 4px; }

/* ===== CONTENT LAYOUT ===== */
.content-wrap { padding: 32px 0 48px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 32px;
  align-items: start;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.article-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

/* ===== LIST ARTICLE (horizontal card) ===== */
.list-article {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
  margin-bottom: 16px;
}
.list-article:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); }
.list-thumb {
  width: 130px;
  min-height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}
.list-content { padding: 14px 16px 14px 0; flex: 1; }
.list-content h3 { font-size: 0.92rem; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.list-content h3 a:hover { color: var(--primary); }
.list-excerpt { font-size: 0.8rem; color: var(--text-m); line-height: 1.5; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.list-meta { font-size: 0.73rem; color: var(--text-l); display: flex; gap: 10px; }

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 20px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
}
.widget-head {
  background: var(--dark);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-body { padding: 16px; }

/* Popular posts widget */
.popular-post {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.popular-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.popular-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--border);
  flex-shrink: 0;
  width: 28px;
  line-height: 1;
  padding-top: 2px;
}
.popular-info h4 { font-size: 0.82rem; font-weight: 700; line-height: 1.4; margin-bottom: 4px; }
.popular-info h4 a:hover { color: var(--primary); }
.popular-info span { font-size: 0.72rem; color: var(--text-l); }

/* Categories widget */
.cat-list { list-style: none; }
.cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list li a { font-weight: 500; transition: color 0.2s; }
.cat-list li a:hover { color: var(--primary); }
.cat-count {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-m);
  padding: 1px 8px;
}

/* Newsletter widget */
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form p { font-size: 0.82rem; color: var(--text-m); line-height: 1.5; }
.newsletter-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--primary); }
.btn-subscribe {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--primary-d); }

/* Score widget */
.score-widget { text-align: center; }
.score-dial {
  width: 140px;
  height: 70px;
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
}
.score-dial svg { width: 140px; height: 140px; margin-top: -70px; transform: scaleY(-1); }
.score-ranges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.score-range-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}
.score-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.score-range-label { flex: 1; color: var(--text-m); }
.score-range-num { font-weight: 600; color: var(--text); font-size: 0.75rem; }

/* ===== CATEGORY DIVIDER ===== */
.cat-section { margin-bottom: 40px; }
.cat-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cat-divider-bar {
  width: 4px;
  height: 22px;
  border-radius: 2px;
  flex-shrink: 0;
}
.cat-divider h2 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.cat-divider .see-all { margin-left: auto; font-size: 0.75rem; font-weight: 600; color: var(--primary); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 48px 0 0;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .logo-main { font-size: 1.5rem; margin-bottom: 12px; }
.footer-about p { font-size: 0.83rem; line-height: 1.7; color: #777; }
.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: 0.82rem;
  color: #777;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col li a::before { content: '›'; color: var(--primary); }
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #555;
}
.footer-bottom a { color: #777; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary); }
.footer-links { display: flex; gap: 20px; }

/* ===== ARTICLE PAGE ===== */
.article-page { padding: 36px 0 60px; }
.article-page .inner-wrap {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 36px;
  align-items: start;
}
.article-hero-thumb {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.article-hero-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4));
}
.article-header { margin-bottom: 28px; }
.article-header .cat-label { margin-bottom: 12px; }
.article-title {
  font-family: var(--font-s);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--text-m);
  flex-wrap: wrap;
}
.meta-author { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--text); }
.meta-author-avatar {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.article-body { font-size: 1rem; line-height: 1.85; color: #333; }
.article-body h2 {
  font-family: var(--font-s);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dark);
}
.article-body h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; color: var(--dark2); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--dark); }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 14px 20px;
  background: var(--bg);
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-m);
}
.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
}
.info-box h4 { font-size: 0.9rem; font-weight: 700; color: #1e40af; margin-bottom: 8px; }
.info-box p, .info-box li { font-size: 0.9rem; color: #1e3a8a; }
.tip-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
}
.tip-box h4 { font-size: 0.9rem; font-weight: 700; color: #166534; margin-bottom: 8px; }
.tip-box p, .tip-box li { font-size: 0.9rem; color: #14532d; }
.score-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}
.score-table th {
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.score-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.score-table tr:hover td { background: var(--bg); }

/* Share buttons */
.share-bar {
  display: flex;
  gap: 8px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.share-bar span { font-size: 0.82rem; font-weight: 700; color: var(--text-m); align-self: center; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-li { background: #0a66c2; }
.share-copy { background: var(--text-m); }

/* Related articles */
.related-section { margin-top: 48px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  transition: all 0.15s;
}
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination span.current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb .inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-l);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; flex-wrap: wrap; }
  .hero-side-card { flex: 1; min-width: 260px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-page .inner-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .nav-toggle-btn { display: block; }
  .main-nav .inner { flex-direction: column; align-items: stretch; }
  .nav-links-wrap { display: none; flex-direction: column; }
  .nav-links-wrap.open { display: flex; }
  .nav-item > a { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown { position: static; box-shadow: none; border-top: none; background: rgba(255,255,255,0.04); }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-main { min-height: 300px; }
  .hero-content h2 { font-size: 1.3rem; }
  .hero-side { flex-direction: column; }
}
