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

/* blink — live badge animation (defined here since article.css loads standalone) */
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

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

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

/* ── 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: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 5px;
  margin-bottom: 14px;
  font-family: var(--font-ui);
  box-shadow: var(--shadow-red);
}

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

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

/* ── 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); font-family: var(--font-ui); }
.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: 11.5px; color: var(--text-light); font-family: var(--font-ui); }
.article-readtime {
  font-size: 11px; color: var(--text-light);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 20px;
  font-family: var(--font-ui);
}

/* ── FEATURED IMAGE ─────────────────────────────────── */
.article-featured-img {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #0e1f3d 0%, #1e3560 50%, #2a4a7f 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.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-lg); padding: 20px 22px; margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.toc-title { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); }
.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: 16.5px; line-height: 1.8; color: var(--text-mid); overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; display: flow-root; }
/* Gutenberg block reset — prevent all float/column issues */
.article-body > * { float: none !important; clear: both; columns: unset !important; max-width: 100% !important; box-sizing: border-box; overflow-wrap: break-word; }
.article-body .wp-block-columns { display: flex !important; flex-direction: column !important; gap: 16px; }
.article-body .wp-block-column { width: 100% !important; flex: none !important; }
.article-body figure { width: 100% !important; max-width: 100% !important; float: none !important; margin: 16px 0 !important; }
.article-body .wp-block-image { width: 100% !important; float: none !important; }
.article-body .wp-block-image img { width: 100%; height: auto; }
.article-body p { margin-bottom: 22px; overflow-wrap: break-word; word-break: break-word; }
.article-body h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); margin: 36px 0 14px; line-height: 1.3; letter-spacing: -0.2px; clear: both; display: block; width: 100%; }
.article-body h3 { font-family: var(--font-display);  font-size: 19px; font-weight: 700; 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); }

/* ── IMAGES INSIDE ARTICLE BODY ─────────────────────── */
.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 28px auto;
}
.article-body figure {
  margin: 28px 0;
}
.article-body figure img {
  margin: 0 auto;
}
.article-body figcaption {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-ui);
  line-height: 1.5;
}
/* WordPress block image classes */
.article-body .wp-block-image {
  margin: 28px 0;
}
.article-body .wp-block-image img {
  margin: 0;
  border-radius: 8px;
}
.article-body .wp-block-image figcaption {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 6px;
  font-family: var(--font-ui);
}
/* Image right after heading — thoda zyada gap */
.article-body h2 + p img,
.article-body h3 + p img {
  margin-top: 12px;
}

/* ── IN-CONTENT ADS ─────────────────────────────────── */
.in-content-ad {
  margin: 36px 0;
  padding: 14px 0;
  background: #f7f8fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.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; }

/* ── ALSO READ BOX ─────────────────────────────────── */
.also-read-box {
  border-radius: var(--radius-lg);
  background: transparent;
  margin: 36px 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.arb-header {
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 14px;
  position: relative;
  border-bottom: 1px solid var(--border);
  border-left: 4px solid var(--red);
  background: transparent;
}

.arb-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.2px;
  color: var(--navy);
  font-family: var(--font-ui);
}

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

.arb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.arb-item:last-child { border-bottom: none; }
.arb-item:hover { background: #fafbfc; }

/* Number badge */
.arb-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  font-family: var(--font-ui);
  transition: background .2s, color .2s;
}
.arb-item:nth-child(-n+3) .arb-num {
  background: var(--red);
  color: #fff;
}
.arb-item:hover .arb-num {
  background: var(--red);
  color: #fff;
}

.arb-thumb {
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy);
  position: relative;
}
.arb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.arb-item:hover .arb-thumb img { transform: scale(1.05); }

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

.arb-cat {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 4px;
  display: inline-block;
  font-family: var(--font-ui);
}

.arb-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
  font-family: var(--font-display);
}
.arb-item:hover .arb-title { color: var(--red); }

.arb-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}
.arb-date {
  font-size: 10.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
}

/* ── 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 ── */
@media (max-width: 640px) {
  .writer-bio-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 14px;
    border-radius: 14px;
  }
  .writer-bio-avatar {
    width: 72px;
    height: 72px;
  }
  .writer-bio-initials {
    font-size: 20px;
  }
  .writer-bio-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .writer-bio-top {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .writer-bio-badge {
    font-size: 8.5px;
  }
  .writer-bio-name {
    font-size: 16px;
    text-align: center;
  }
  .writer-bio-role {
    text-align: center;
  }
  .writer-bio-all-btn {
    align-self: center;
    font-size: 10.5px;
    padding: 6px 16px;
    margin-top: 4px;
  }
  .writer-bio-divider {
    width: 100%;
  }
  .writer-bio-desc {
    font-size: 12.5px;
    line-height: 1.65;
    text-align: center;
  }
}

/* ── 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: 11.5px; color: var(--text-mid); padding: 4px 12px; transition: all .2s; cursor: pointer; font-family: var(--font-ui); }

@media (max-width: 640px) {
  .article-tags { gap: 7px; margin: 20px 0; padding: 14px 0; }
  .tags-label { font-size: 10.5px; width: 100%; margin-bottom: 4px; }
  .tag { font-size: 11px; padding: 4px 11px; }
}
.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: 18px; font-weight: 700; color: var(--navy); padding: 0 0 10px 14px; border-bottom: 1px solid var(--border); border-left: 4px solid var(--red); margin-bottom: 18px; display: flex; align-items: center; }

/* New hero+list layout */
.rel-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* Hero — left big */
.rel-hero {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.rel-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #1a2a4a;
}
.rel-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 32px 14px 14px;
}
.rel-hero-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rel-hero-time {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
}
.rel-hero:hover .rel-hero-img { filter: brightness(1.08); }

/* List — right side */
.rel-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rel-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.rel-item:last-child { border-bottom: none; }
.rel-item:hover .rel-item-title { color: var(--red); }
.rel-item-img {
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: #1a2a4a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rel-item-body { flex: 1; min-width: 0; }
.rel-item-title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
  margin-top: 4px;
}
.rel-item-time {
  font-size: 11px;
  color: var(--text-light);
  font-family: var(--font-ui);
}
.related-card:hover 
/* ── ============================================= ──
   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-lg);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
}

/* Widget header — matches sw-header style */
.sidebar-widget-head {
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px 10px 14px;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  border-left: 4px solid var(--red);
  font-family: var(--font-ui);
  position: relative;
}

/* 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: 9.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-ui); }
.trending-title { font-family: var(--font-serif); font-size: 13px; color: var(--text); line-height: 1.7; font-weight: 400; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.trending-title:hover { color: var(--red); cursor: pointer; }
.trending-time { font-size: 11px; color: var(--text-light); font-family: var(--font-ui); }

/* ── WHATSAPP CHANNEL JOIN BANNER ───────────────────── */
.wa-join-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #0a3d1f 0%, #075e2b 40%, #0d7a38 100%);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.wa-join-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.wa-join-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 20%;
  width: 220px; height: 220px;
  background: rgba(37,211,102,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.wa-join-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.wa-join-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  backdrop-filter: blur(4px);
}
.wa-join-icon svg { width: 24px; height: 24px; }
.wa-join-text { flex: 1; min-width: 0; }

/* ── Title / Desc / Meta ── */
.wa-join-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-join-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-join-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.wa-join-site {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.wa-join-dot {
  color: rgba(255,255,255,0.3);
  font-size: 10.5px;
}
.wa-join-members {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: #25d366;
  font-weight: 600;
}
.wa-live-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── JOIN NOW BUTTON — Base Style ── */
.wa-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #0a3d1f;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-ui);
  text-decoration: none;
  height: 38px;
  padding: 0 18px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.18s;
}
.wa-join-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #0a3d1f;
}
.wa-join-btn-icon { display: none; }

/* ============================================================
   WHATSAPP BANNER — COMPLETE RESPONSIVE SYSTEM
   Covers: 320px → 4K  |  Mobile · Tablet · Desktop · Wide
   ============================================================ */

/* ── 4K / Ultra-wide (≥ 1920px) ── */
@media (min-width: 1920px) {
  .wa-join-banner  { padding: 22px 32px; gap: 24px; border-radius: 18px; }
  .wa-join-icon    { width: 56px; height: 56px; border-radius: 14px; }
  .wa-join-icon svg { width: 28px; height: 28px; }
  .wa-join-title   { font-size: 17px; }
  .wa-join-desc    { font-size: 13px; }
  .wa-join-site,
  .wa-join-members { font-size: 11.5px; }
  .wa-join-btn     { height: 56px; padding: 0 30px; font-size: 14px; }
}

/* ── Large Desktop / Full HD (1400px – 1919px) ── */
@media (min-width: 1400px) and (max-width: 1919px) {
  .wa-join-banner  { padding: 20px 26px; gap: 20px; border-radius: 16px; }
  .wa-join-icon    { width: 50px; height: 50px; border-radius: 13px; }
  .wa-join-icon svg { width: 26px; height: 26px; }
  .wa-join-title   { font-size: 16px; }
  .wa-join-desc    { font-size: 12.5px; }
  .wa-join-btn     { height: 50px; padding: 0 26px; font-size: 13.5px; }
}

/* ── Standard Desktop / Laptop (1024px – 1399px) ── */
@media (min-width: 1024px) and (max-width: 1399px) {
  .wa-join-banner  { padding: 18px 22px; gap: 18px; }
  .wa-join-icon    { width: 46px; height: 46px; border-radius: 12px; }
  .wa-join-icon svg { width: 24px; height: 24px; }
  .wa-join-title   { font-size: 15px; }
  .wa-join-desc    { font-size: 12px; }
  .wa-join-btn     { height: 46px; padding: 0 22px; font-size: 13px; }
}

/* ── Small Laptop / Tablet Landscape (769px – 1023px) ── */
@media (min-width: 769px) and (max-width: 1023px) {
  .wa-join-banner  { padding: 16px 18px; gap: 14px; border-radius: 12px; }
  .wa-join-icon    { width: 42px; height: 42px; border-radius: 11px; }
  .wa-join-icon svg { width: 22px; height: 22px; }
  .wa-join-title   { font-size: 14px; }
  .wa-join-desc    { font-size: 11.5px; }
  .wa-join-btn     { height: 42px; padding: 0 20px; font-size: 12.5px; }
}

/* ── Tablet Portrait / Large Phone Landscape (481px – 768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
  .wa-join-banner  { flex-direction: row; align-items: center; padding: 13px 16px; gap: 12px; border-radius: 12px; margin-bottom: 20px; }
  .wa-join-left    { gap: 11px; flex: 1; min-width: 0; }
  .wa-join-icon    { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
  .wa-join-icon svg { width: 20px; height: 20px; }
  .wa-join-title   { font-size: 13.5px; margin-bottom: 2px; }
  .wa-join-desc    { font-size: 11px; margin-bottom: 4px; }
  .wa-join-meta    { gap: 4px; }
  .wa-join-site    { font-size: 10px; }
  .wa-join-members { font-size: 10px; }
  .wa-join-btn     { flex-shrink: 0; height: 38px; padding: 0 16px; font-size: 12px; }
}

/* ── Standard Mobile — iPhone 13/14, Pixel, Galaxy (391px – 480px) ── */
@media (min-width: 391px) and (max-width: 480px) {
  .wa-join-banner  { flex-direction: row; align-items: center; padding: 11px 13px; gap: 10px; border-radius: 10px; margin-bottom: 16px; }
  .wa-join-left    { gap: 9px; flex: 1; min-width: 0; overflow: hidden; }
  .wa-join-icon    { width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0; }
  .wa-join-icon svg { width: 19px; height: 19px; }
  .wa-join-title   { font-size: 12.5px; margin-bottom: 2px; }
  .wa-join-desc    { font-size: 10.5px; margin-bottom: 3px; }
  .wa-join-meta    { gap: 4px; }
  .wa-join-site    { font-size: 9.5px; }
  .wa-join-members { font-size: 9.5px; }
  .wa-join-btn     { flex-shrink: 0; height: 36px; padding: 0 13px; font-size: 11.5px; }
}

/* ── Small Mobile — iPhone SE, Galaxy A03 (321px – 390px) ── */
@media (min-width: 321px) and (max-width: 390px) {
  .wa-join-banner  { flex-direction: column; align-items: stretch; padding: 13px 12px; gap: 10px; border-radius: 10px; margin-bottom: 14px; }
  .wa-join-left    { gap: 9px; width: 100%; }
  .wa-join-icon    { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }
  .wa-join-icon svg { width: 18px; height: 18px; }
  .wa-join-title   { font-size: 12.5px; margin-bottom: 2px; white-space: normal; }
  .wa-join-desc    { font-size: 10.5px; margin-bottom: 3px; white-space: normal; }
  .wa-join-meta    { gap: 4px; }
  .wa-join-site    { font-size: 9px; }
  .wa-join-members { font-size: 9px; }
  .wa-join-btn     { width: 100%; height: 38px; justify-content: center; padding: 0 14px; font-size: 12px; }
}

/* ── Ultra Small (≤ 320px) ── */
@media (max-width: 320px) {
  .wa-join-banner  { flex-direction: column; align-items: stretch; padding: 11px 10px; gap: 9px; border-radius: 8px; margin-bottom: 12px; }
  .wa-join-left    { gap: 8px; width: 100%; }
  .wa-join-icon    { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; }
  .wa-join-icon svg { width: 16px; height: 16px; }
  .wa-join-title   { font-size: 12px; margin-bottom: 2px; white-space: normal; }
  .wa-join-desc    { font-size: 10px; margin-bottom: 3px; white-space: normal; }
  .wa-join-meta    { flex-wrap: wrap; gap: 3px; }
  .wa-join-site    { font-size: 9px; }
  .wa-join-members { font-size: 9px; }
  .wa-join-btn     { width: 100%; height: 34px; justify-content: center; padding: 0 12px; font-size: 11px; }
}

/* ══════════════════════════════════════════════════════
   ARTICLE PAGE — MOBILE RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1023px) — sidebar thodi chhoti ── */
@media (max-width: 1023px) {
  .article-wrap {
    grid-template-columns: 1fr 260px;
    gap: 24px;
    padding: 24px 16px 40px;
  }
}

/* ── Tablet Portrait (≤ 768px) — sidebar hide, single column ── */
@media (max-width: 768px) {
  .article-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 14px 32px;
  }
  .article-sidebar {
    display: none !important;
  }
  .article-title {
    font-size: 26px;
  }
  .article-featured-img {
    height: 280px;
  }
  .rel-block { grid-template-columns: 1fr 1fr; gap: 14px; }
  .rel-hero-img { aspect-ratio: 16/9; }
  .rel-hero-title { font-size: 14px; }
  .rel-item-img { width: 70px; min-width: 70px; height: 52px; }
  .rel-item-title { font-size: 13px; }
  .section-heading { font-size: 16px; margin-bottom: 14px; }
  .sidebar-widget-head { font-size: 15px; }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  .section-heading { font-size: 14px; margin-bottom: 12px; }
  .sidebar-widget-head { font-size: 14px; padding: 5px 12px 9px 12px; }
  .rel-block { grid-template-columns: 1fr; gap: 12px; }
  .rel-hero-img { aspect-ratio: 16/9; }
  .rel-hero-title { font-size: 14px; }
  .rel-item { padding: 8px 0; }
  .rel-item-img { width: 68px; min-width: 68px; height: 50px; }
  .rel-item-title { font-size: 12.5px; }
  .article-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 12px 28px;
  }
  .article-sidebar {
    display: none !important;
  }
  main.article-main {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }
  .article-title {
    font-size: 22px;
    line-height: 1.5;
  }
  .article-synopsis {
    font-size: 14px;
    padding: 10px 14px;
  }
  .article-featured-img {
    height: 220px;
    border-radius: 10px;
  }
  .article-body {
    font-size: 15px;
    line-height: 1.78;
  }
  .article-body h2 {
    font-size: 20px;
  }
  .article-body h3 {
    font-size: 17px;
  }
  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .rel-block { grid-template-columns: 1fr; gap: 10px; }
  .arb-item {
    padding: 12px 14px;
    gap: 10px;
  }
  .arb-thumb {
    width: 70px;
    min-width: 70px;
    height: 54px;
  }
  .trending-title { font-size: 12.5px; }
  .toc-box {
    padding: 14px 16px;
  }
}

/* ── Small Mobile (≤ 400px) ── */
@media (max-width: 400px) {
  .article-wrap {
    padding: 10px 10px 24px;
  }
  .article-title {
    font-size: 20px;
  }
  .article-featured-img {
    height: 190px;
  }
  .article-body {
    font-size: 14.5px;
  }
}

/* ── Responsive: Also Read Box ── */
@media (max-width: 768px) {
  .also-read-box { margin: 24px 0; border-radius: 10px; }
  .arb-header { padding: 6px 14px 6px 12px; }
  .arb-label { font-size: 15px; }
  .arb-title { font-size: 13px; }
  .arb-item { padding: 10px 14px; gap: 10px; }
  .arb-thumb { width: 68px; min-width: 68px; height: 52px; }
  .arb-num { width: 22px; height: 22px; font-size: 10px; }
}

@media (max-width: 640px) {
  .also-read-box { margin: 18px 0; }
  .arb-header { padding: 6px 12px 6px 12px; }
  .arb-label { font-size: 14px; }
  .arb-title { font-size: 12.5px; -webkit-line-clamp: 2; }
  .arb-item { padding: 9px 12px; gap: 8px; }
  .arb-thumb { width: 60px; min-width: 60px; height: 46px; border-radius: 6px; }
  .arb-num { width: 20px; height: 20px; font-size: 9.5px; border-radius: 5px; }
  .arb-cat { font-size: 8.5px; }
  .arb-date { font-size: 10px; }
}

@media (max-width: 400px) {
  .arb-label { font-size: 13.5px; }
  .arb-title { font-size: 12px; }
  .arb-thumb { width: 54px; min-width: 54px; height: 42px; }
}
