/* ======================================================
   BusinessMunch — article.css
   Livehindustan style: Narrow center column + right sidebar
   ====================================================== */

/* ── ARTICLE OUTER WRAP ─────────────────────────────── */
.article-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 20px 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* ── ARTICLE MAIN COLUMN ─────────────────────────────── */
/* min-width:0 zaroori hai — bina iske grid column overflow karta hai */
main.article-main {
  min-width: 0;
  width: 100%;
}

/* ── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--text-light); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: #ccc; }
.breadcrumb .current { color: var(--text-mid); font-weight: 500; }

/* ── CATEGORY BADGE ─────────────────────────────────── */
.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* ── TITLE ──────────────────────────────────────────── */
.article-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0;
  letter-spacing: -0.5px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f2f5;
}

/* ── SYNOPSIS ───────────────────────────────────────── */
.article-synopsis {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 18px 0;
  padding: 14px 18px;
  background: #f8f9fa;
  border-left: 4px solid var(--red);
  border-radius: 0 5px 5px 0;
  font-family: var(--font-serif);
}

/* ── DECK / SUBTITLE ────────────────────────────────── */
.article-deck {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 22px;
  font-weight: 400;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

/* ── META BAR ───────────────────────────────────────── */
.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.article-author-info { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
  flex-shrink: 0; overflow: hidden;
}
.author-details { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-size: 13px; font-weight: 700; color: var(--text); }
.author-name:hover { color: var(--red); }
.author-role { font-size: 11px; color: var(--text-light); }
.article-meta-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.article-date { font-size: 12px; color: var(--text-light); }
.article-readtime {
  font-size: 11.5px; color: var(--text-light);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 20px;
}

/* ── SOCIAL SHARE ───────────────────────────────────── */
.social-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: nowrap;
  background: #f7f8fc;
  border: 1px solid #eaedf5;
  border-radius: 50px;
  padding: 8px 16px;
}
.social-share-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9aa0b4;
  margin-right: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, background .18s;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.share-btn span { display: none; }
.share-btn:hover { transform: translateY(-2px) scale(1.1); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.share-fb { background: #1877f2; color: white; }
.share-fb:hover { background: #1464d0; }
.share-tw { background: #000; color: white; }
.share-tw:hover { background: #333; }
.share-li { background: #0a66c2; color: white; }
.share-li:hover { background: #0855a0; }
.share-wa { background: #25d366; color: white; }
.share-wa:hover { background: #1fba58; }
.share-copy { background: #eaedf5; color: #6b7490; border: none; }
.share-copy:hover { background: #dde0ec; color: #1a2233; }

/* ── FEATURED IMAGE ─────────────────────────────────── */
.article-featured-img {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #0e1f3d 0%, #1e3560 50%, #2a4a7f 100%);
  border-radius: 8px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.article-featured-img-emoji { font-size: 72px; margin-bottom: 16px; }
.article-featured-img-title { font-family: var(--font-display); font-size: 22px; color: rgba(255,255,255,.7); text-align: center; padding: 0 40px; }
.article-featured-img-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: rgba(255,255,255,.75); font-size: 11px; padding: 8px 16px; }

/* ── TABLE OF CONTENTS ──────────────────────────────── */
.toc-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 26px; }
.toc-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.toc-title::before { content: '≡'; font-size: 15px; color: var(--red); }
.toc-list { list-style: none; display: flex; flex-direction: column; }
.toc-list li { border-bottom: 1px solid var(--off-white); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; color: var(--text-mid); transition: color .2s; line-height: 1.4; }
.toc-list a:hover { color: var(--red); }
.toc-num { font-size: 11px; font-weight: 700; color: var(--red); min-width: 18px; }

/* ── ARTICLE BODY ───────────────────────────────────── */
.article-body { font-family: var(--font-serif); font-size: 17px; line-height: 1.82; color: var(--text-mid); }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--text); margin: 36px 0 14px; line-height: 1.3; letter-spacing: -0.2px; }
.article-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 400; color: var(--text); margin: 28px 0 10px; }
.article-body blockquote { border-left: 4px solid var(--red); padding: 14px 20px; margin: 28px 0; background: var(--red-soft); border-radius: 0 var(--radius) var(--radius) 0; }
.article-body blockquote p { font-size: 18px; color: var(--text); font-style: italic; margin: 0; line-height: 1.6; }
.article-body blockquote cite { display: block; font-size: 12.5px; color: var(--text-light); margin-top: 8px; font-style: normal; font-weight: 600; }
.article-body ul { padding-left: 20px; margin-bottom: 20px; }
.article-body ul li { margin-bottom: 8px; }
.article-body strong { font-weight: 700; color: var(--text); }
.article-body a { color: var(--red); border-bottom: 1px solid rgba(212,43,43,0.3); transition: border-color .2s; }
.article-body a:hover { border-bottom-color: var(--red); }

/* ── IN-CONTENT ADS ─────────────────────────────────── */
.in-content-ad { margin: 28px 0; }
.in-content-ad-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #ccc; text-align: center; margin-bottom: 6px; }
.ica-desktop { display: block; }
.ica-mobile  { display: none; }


/* ── ALSO READ BOX ──────────────────────────────────── */
/* ── ALSO READ BOX — REDESIGNED ─────────────────────── */
.also-read-box {
  border-radius: 16px;
  background: #fff;
  margin: 36px 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
}

.arb-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #b52a1c 0%, #e63528 50%, #f04e3e 100%);
  padding: 14px 20px;
  position: relative;
  overflow: hidden;
}
.arb-header::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.arb-header::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  box-shadow: 10px 0 0 rgba(255,255,255,0.3), 20px 0 0 rgba(255,255,255,0.15);
}
.arb-icon {
  font-size: 14px;
  background: rgba(255,255,255,0.22);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.arb-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.arb-list { display: flex; flex-direction: column; padding: 6px 0; }

.arb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f2f7;
  transition: background .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.arb-item:last-child { border-bottom: none; }
.arb-item:hover {
  background: linear-gradient(90deg, #fff5f5 0%, #fafafa 100%);
  box-shadow: inset 4px 0 0 #e63528;
}

/* Number badge */
.arb-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f5f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #b0b8cc;
  letter-spacing: -0.5px;
  transition: background .2s, color .2s;
}
.arb-item:hover .arb-num {
  background: #e63528;
  color: #fff;
}

.arb-thumb {
  width: 84px;
  min-width: 84px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.14);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.arb-item:hover .arb-thumb {
  transform: scale(1.04);
  box-shadow: 0 5px 16px rgba(0,0,0,0.2);
}
.arb-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.07);
  pointer-events: none;
}

.arb-body { flex: 1; min-width: 0; }

.arb-cat {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #e63528;
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff0ef;
  padding: 2px 7px;
  border-radius: 4px;
}
.arb-cat::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #e63528;
  border-radius: 50%;
}

.arb-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a2233;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
  letter-spacing: -0.1px;
}
.arb-item:hover .arb-title { color: #e63528; }

.arb-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.arb-date {
  font-size: 10.5px;
  color: #aab0c4;
  display: flex;
  align-items: center;
  gap: 4px;
}
.arb-date::before {
  content: '🕐';
  font-size: 9px;
  opacity: 0.6;
}

.arb-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0c8d8;
  font-size: 16px;
  font-weight: 600;
  transition: background .2s, color .2s, transform .2s;
  margin-left: 4px;
}
.arb-item:hover .arb-arrow {
  background: #e63528;
  color: #fff;
  transform: translateX(3px);
}

/* ── WRITER BIO BOX ─────────────────────────────────── */
.writer-bio-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: linear-gradient(135deg, #0f1c35 0%, #1a2f55 60%, #1e3560 100%);
  border-radius: 18px;
  padding: 28px 26px;
  margin: 36px 0 28px;
  position: relative;
  overflow: hidden;
}
/* Background decoration circles */
.writer-bio-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.writer-bio-box::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 30%;
  width: 200px; height: 200px;
  background: rgba(230,53,40,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.writer-bio-avatar {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #b52a1c, #e63528);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.writer-bio-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.writer-bio-initials {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.writer-bio-content { flex: 1; min-width: 0; position: relative; z-index: 1; }

.writer-bio-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.writer-bio-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #f0a070;
  background: rgba(230,53,40,0.2);
  border: 1px solid rgba(230,53,40,0.35);
  display: inline-block;
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 6px;
}

.writer-bio-name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.3px;
  line-height: 1.2;
  transition: color .18s;
}
.writer-bio-name:hover { color: #f0a070; }

.writer-bio-role {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 500;
}

.writer-bio-all-btn {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background .18s, border-color .18s;
  white-space: nowrap;
  margin-top: 2px;
  backdrop-filter: blur(4px);
}
.writer-bio-all-btn:hover {
  background: #e63528;
  border-color: #e63528;
  color: #fff;
}

.writer-bio-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 12px 0;
}

.writer-bio-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin: 0;
}

/* writer-bio mobile handled in 640px block below */


/* ── TAGS ───────────────────────────────────────────── */
.article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 28px 0; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tags-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.tag { display: inline-block; background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--text-mid); padding: 4px 12px; transition: all .2s; cursor: pointer; }
.tag:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── RELATED ARTICLES ───────────────────────────────── */
.related-section { margin: 28px 0; }
.section-heading { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--text); padding-bottom: 12px; border-bottom: 2px solid var(--border); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.section-heading::before { content: ''; display: block; width: 4px; height: 22px; background: var(--red); border-radius: 2px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.related-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.related-card-img { height: 140px; background: linear-gradient(135deg, #0e1f3d, #2a4a7f); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; font-size: 36px; position: relative; overflow: hidden; }
.related-card-body { padding: 14px; }
.related-cat { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--red); margin-bottom: 6px; }
.related-title { font-family: var(--font-display); font-size: 14.5px; color: var(--text); line-height: 1.4; margin-bottom: 8px; font-weight: 400; }
.related-card:hover .related-title { color: var(--red); }
.related-meta { font-size: 11px; color: var(--text-light); }

/* ── ============================================= ──
   RIGHT SIDEBAR
   ─────────────────────────────────────────────── */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
  /* Sticky sidebar — stays on screen while reading */
  position: sticky;
  top: 80px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Widget header — red left bar accent */
.sidebar-widget-head {
  background: var(--navy);
  color: white;
  padding: 11px 16px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 3px solid var(--red);
}

/* Sidebar Ad */
.sidebar-ad { border-radius: var(--radius); overflow: hidden; }
.sidebar-ad-label { font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #bbb; text-align: center; padding: 5px 0 3px; }

/* Trending list */
.trending-list { list-style: none; display: flex; flex-direction: column; padding: 4px 0; }
.trending-item { display: flex; gap: 10px; align-items: flex-start; padding: 11px 16px; border-bottom: 1px solid #f5f6f9; }
.trending-item:last-child { border-bottom: none; }
.trending-num { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: #dde0e8; line-height: 1; flex-shrink: 0; min-width: 24px; padding-top: 2px; }
.trending-text { display: flex; flex-direction: column; gap: 4px; }
.trending-cat { font-size: 10px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.8px; }
.trending-title { font-family: var(--font-serif); font-size: 13px; color: var(--text); line-height: 1.48; font-weight: 400; }
.trending-title:hover { color: var(--red); cursor: pointer; }
.trending-time { font-size: 11px; color: var(--text-light); }

/* Newsletter sidebar widget */
.nl-widget { background: var(--navy); border-radius: var(--radius); padding: 20px; box-sizing: border-box; width: 100%; }
.nl-widget-badge { display: inline-block; background: var(--red); color: white; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 10px; border-radius: 3px; margin-bottom: 10px; }
.nl-widget-heading { font-family: var(--font-display); font-size: 17px; color: white; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.nl-widget-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 14px; line-height: 1.6; }
.nl-widget input { display: block; width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 5px; padding: 10px 14px; color: white; font-size: 13px; font-family: var(--font-display); outline: none; margin-bottom: 8px; }
.nl-widget input::placeholder { color: rgba(255,255,255,0.4); }
.nl-widget button { display: block; width: 100%; box-sizing: border-box; background: var(--red); color: white; border: none; border-radius: 5px; padding: 11px 10px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-display); transition: background .2s; text-align: center; }
.nl-widget button:hover { background: var(--red-dark); }

/* Newsletter inline (shown on mobile where sidebar is hidden) */
.nl-widget-inline { display: none; margin: 28px 0; }

/* ======================================================
   RESPONSIVE — TABLET  (≤900px)
   ====================================================== */
@media (max-width: 900px) {
  .article-wrap         { grid-template-columns: 1fr; gap: 0; padding: 20px 16px 36px; }
  .article-sidebar      { display: none; }
  .nl-widget-inline     { display: block; }
  .related-grid         { grid-template-columns: 1fr 1fr; gap: 14px; }
  .article-title        { font-size: 28px; }
  .article-featured-img { height: 320px; }
  .ica-desktop          { display: none; }
  .ica-mobile           { display: block; }
}

/* ======================================================
   RESPONSIVE — MOBILE  (≤640px)
   ====================================================== */
@media (max-width: 640px) {
  html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }

  /* ── Article layout ── */
  .article-wrap         { padding: 12px 12px 28px; }
  .article-sidebar      { display: none; }
  .nl-widget-inline     { display: block; }

  /* ── Breadcrumb ── */
  .breadcrumb           { font-size: 10.5px; gap: 4px; margin-bottom: 10px; flex-wrap: wrap; }

  /* ── Category badge ── */
  .article-category-badge { font-size: 9px; padding: 3px 9px; margin-bottom: 10px; }

  /* ── Title ── */
  .article-title        { font-size: 22px; line-height: 1.28; padding-bottom: 12px; }

  /* ── Synopsis ── */
  .article-synopsis     { font-size: 14px; padding: 12px 14px; margin: 14px 0; }

  /* ── Deck ── */
  .article-deck         { font-size: 15px; margin-bottom: 16px; padding-left: 12px; }

  /* ── Meta bar ── */
  .article-meta-bar     { flex-direction: column; align-items: flex-start; gap: 10px; padding: 10px 0; margin-bottom: 16px; }
  .article-meta-right   { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .author-avatar        { width: 34px; height: 34px; font-size: 12px; }
  .author-name          { font-size: 12px; }
  .author-role          { font-size: 10px; }
  .article-date         { font-size: 11px; }
  .article-readtime     { font-size: 10.5px; }

  /* ── Social Share — Scrollable pill bar on mobile ── */
  .social-share {
    gap: 7px;
    padding: 7px 14px;
    overflow-x: auto;
    overflow-y: visible;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-radius: 50px;
    justify-content: flex-start;
  }
  .social-share::-webkit-scrollbar { display: none; }
  .social-share-label   { font-size: 9px; letter-spacing: 1px; flex-shrink: 0; }
  .share-btn            { width: 34px; height: 34px; flex-shrink: 0; }

  /* ── Featured image ── */
  .article-featured-img        { height: 210px; border-radius: 6px; margin-bottom: 18px; }
  .article-featured-img-emoji  { font-size: 48px; margin-bottom: 8px; }
  .article-featured-img-title  { font-size: 15px; padding: 0 16px; }
  .article-featured-img-caption { font-size: 10px; padding: 6px 12px; }

  /* ── TOC ── */
  .toc-box              { padding: 14px 16px; margin-bottom: 18px; }
  .toc-title            { font-size: 10px; margin-bottom: 10px; }
  .toc-list a           { font-size: 12px; padding: 6px 0; }

  /* ── Article body ── */
  .article-body         { font-size: 15.5px; line-height: 1.74; }
  .article-body p       { margin-bottom: 18px; }
  .article-body h2      { font-size: 20px; margin: 26px 0 10px; }
  .article-body h3      { font-size: 17px; margin: 20px 0 8px; }
  .article-body blockquote { padding: 12px 14px; margin: 20px 0; }
  .article-body blockquote p { font-size: 15px; }

  /* ── Also Read ── */
  .also-read-box        { border-radius: 12px; margin: 24px 0; }
  .arb-header           { padding: 11px 14px; }
  .arb-label            { font-size: 10px; letter-spacing: 2px; }
  .arb-item             { padding: 10px 14px; gap: 10px; }
  .arb-num              { width: 22px; height: 22px; font-size: 10px; border-radius: 6px; }
  .arb-thumb            { width: 62px; min-width: 62px; height: 48px; border-radius: 8px; }
  .arb-cat              { font-size: 8px; padding: 1px 6px; letter-spacing: 1px; }
  .arb-title            { font-size: 12.5px; line-height: 1.4; }
  .arb-date             { font-size: 10px; }
  .arb-arrow            { width: 24px; height: 24px; font-size: 14px; }

  /* ── Writer Bio Box ── */
  .writer-bio-box       { flex-direction: column; align-items: center; text-align: center; padding: 22px 16px; gap: 16px; border-radius: 14px; margin: 28px 0; }
  .writer-bio-box::before { width: 120px; height: 120px; top: -30px; right: -20px; }
  .writer-bio-avatar    { width: 68px; height: 68px; }
  .writer-bio-initials  { font-size: 20px; }
  .writer-bio-top       { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 8px; }
  .writer-bio-badge     { font-size: 8.5px; letter-spacing: 2px; }
  .writer-bio-name      { font-size: 15px; }
  .writer-bio-role      { font-size: 11px; }
  .writer-bio-all-btn   { padding: 5px 14px; font-size: 11px; }
  .writer-bio-divider   { margin: 8px 0; }
  .writer-bio-desc      { font-size: 13px; line-height: 1.65; text-align: left; }

  /* ── Tags ── */
  .article-tags         { gap: 6px; margin: 18px 0; padding: 12px 0; }
  .tag                  { font-size: 11px; padding: 3px 10px; }

  /* ── Related ── */
  .related-section      { margin-top: 20px; }
  .section-heading      { font-size: 17px; margin-bottom: 14px; padding-bottom: 10px; }
  .related-grid         { grid-template-columns: 1fr 1fr; gap: 10px; }
  .related-card-img     { height: 110px; }
  .related-card-body    { padding: 10px; }
  .related-title        { font-size: 13px; }
  .related-meta         { font-size: 10px; }

  /* ── Sponsored on Article page ── */
  .sponsored-section--article { margin: 24px 0 8px; }
  .sponsored-section--article .sponsored-header { margin-bottom: 10px; }
  .sponsored-section--article .sponsored-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 6px;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .sponsored-section--article .sponsored-grid::-webkit-scrollbar { display: none; }
  .sponsored-section--article .sponsored-card {
    flex: 0 0 78vw;
    max-width: 280px;
    min-width: 230px;
    scroll-snap-align: start;
  }
  .sponsored-section--article .sponsored-card-img  { height: 130px; }
  .sponsored-section--article .sponsored-card-body { padding: 12px; }
  .sponsored-section--article .sponsored-card-title { font-size: 13px; }
  .sponsored-section--article .sponsored-card-desc  { font-size: 12px; }

  /* ── Newsletter inline ── */
  .nl-widget-inline     { margin: 24px 0; }
  .nl-widget            { padding: 18px 16px; }
  .nl-widget-heading    { font-size: 15px; }
  .nl-widget-sub        { font-size: 11.5px; margin-bottom: 12px; }
}

@media (max-width: 400px) {
  .article-title        { font-size: 20px; }
  .related-grid         { grid-template-columns: 1fr; }
  .social-share         { padding: 6px 10px; gap: 6px; }
  .share-btn            { width: 30px; height: 30px; }
  .arb-thumb            { width: 54px; min-width: 54px; height: 42px; }
  .writer-bio-desc      { font-size: 12.5px; }
}

/* ── SPONSORED SECTION — Article page ───────────────── */
.sponsored-section--article {
  margin: 32px 0 8px;
  padding: 0;
  background: transparent;
}
