/* ═══════════════════════════════════════════════════════
   ppplahore.pk - Global stylesheet
   White canvas, PPP flag tricolor (green / black / red)
   English: Inter · Urdu: Noto Nastaliq Urdu
   ═══════════════════════════════════════════════════════ */

:root {
  --green: #009900;
  --green-dark: #007300;
  --green-deep: #004D00;
  --green-tint: #E8F7E8;
  --green-line: #B5E8B5;

  --red: #FF0000;
  --red-dark: #CC0000;
  --red-tint: #FFECEC;

  --black: #000000;
  --ink: #1C1E21;
  --gray-700: #3F444B;
  --gray-500: #6B7280;
  --gray-400: #9AA1AA;
  --gray-200: #E5E7EB;
  --gray-100: #F2F4F5;
  --gray-50: #F8FAF9;
  --white: #FFFFFF;

  --font-en: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-ur: 'Noto Nastaliq Urdu', serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(17, 18, 19, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(17, 18, 19, 0.16);
  --shadow-lg: 0 24px 60px -24px rgba(1, 61, 29, 0.28);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green-dark); text-decoration: none; }

button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.urdu {
  font-family: var(--font-ur);
  direction: rtl;
  line-height: 2;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 300;
  background: var(--green-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ── Flag motif ───────────────────────────────────────── */
/* Both motifs follow the official flag: vertical stripes, red / black / green left to right */
.flag-stripe {
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0 34%,
    var(--black) 34% 67%,
    var(--green) 67% 100%);
}

.flag-chip {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 8px 20px -8px rgba(206, 17, 38, 0.5); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }

.btn-outline { border-color: var(--green); color: var(--green-dark); background: #fff; }
.btn-outline:hover { background: var(--green-tint); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ── Eyebrow / labels ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}

/* ── Topbar ───────────────────────────────────────────── */
.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-block: 4px;
}
.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar-ur { font-size: 14px; color: #A6E7A6; }
.tb-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}
.topbar-right { display: flex; align-items: center; gap: 4px; }
.tb-link {
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12.5px;
}
.tb-link:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }

.lang-toggle {
  margin-left: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 999px;
  padding: 3px 14px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-ur);
  line-height: 1.8;
  transition: background 0.15s, border-color 0.15s;
}
.lang-toggle:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

/* ── Header / nav ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* ── Leadership masthead: letterhead-style banner under the nav ── */
.leaders-banner {
  background: #fff;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--gray-200);
}
.leaders-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 24px;
}
.lb-logo { flex-shrink: 0; width: 128px; height: 128px; display: block; }
.lb-logo img { width: 100%; height: 100%; object-fit: contain; }
.lb-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lb-strip { width: 100%; max-width: 720px; }
.lb-strip img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.lb-wordmark {
  margin: 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(15px, 1.9vw, 23px);
  line-height: 1;
}
.lb-wordmark .lb-red { color: var(--red); }
.lb-wordmark .lb-blk { color: var(--ink); }
@media (max-width: 640px) {
  .leaders-banner-inner { gap: 14px; padding: 10px 16px; }
  .lb-logo { width: 68px; height: 68px; }
  .lb-wordmark { letter-spacing: 0.03em; }
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo { width: 42px; height: 42px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.brand-sub { font-size: 11px; color: var(--gray-500); letter-spacing: 0.05em; text-transform: uppercase; }

.primary-nav { flex: 1; display: flex; justify-content: center; align-self: stretch; }
.nav {
  display: flex;
  gap: 2px;
  list-style: none;
  align-self: stretch;
  align-items: stretch;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 9px;
}
.nav-link:hover { background: var(--green-tint); color: var(--green-deep); }
.nav-link .caret { font-size: 9px; color: var(--gray-400); }

/* Dropdown opens flush under the trigger: no dead hover gap. The nav items
   are stretched to the full header height and a ::before bridge covers any
   remaining pixel gap, so the pointer never leaves the hover zone while
   travelling from the link into the panel. */
.nav-item { display: flex; align-items: center; align-self: stretch; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: none;
  z-index: 120;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
}
.dropdown a:hover { background: var(--green-tint); color: var(--green-deep); }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.site-header.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-100);
  background: #fff;
  padding: 12px 24px 24px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.site-header.open .mobile-nav { display: block; }
.m-group { border-bottom: 1px solid var(--gray-100); }
.m-group summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 4px;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-group summary::-webkit-details-marker { display: none; }
.m-group summary::after {
  content: '+';
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}
.m-group[open] summary::after { content: '−'; }
.m-links { padding: 0 4px 14px; }
.m-links a, .m-link {
  display: block;
  padding: 9px 12px;
  font-size: 14.5px;
  color: var(--gray-700);
  border-radius: 8px;
}
.m-links a:hover, .m-link:hover { background: var(--green-tint); color: var(--green-deep); }
.m-link { padding: 14px 4px; font-weight: 600; font-size: 15.5px; color: var(--ink); border-bottom: 1px solid var(--gray-100); border-radius: 0; }
.m-cta { margin-top: 18px; width: 100%; }

/* ── News ticker ──────────────────────────────────────── */
.ticker {
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  padding: 9px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  z-index: 2;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.ticker-viewport { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 55s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.tick-item { font-size: 13.5px; color: rgba(255, 255, 255, 0.92); padding-inline: 26px; }
.tick-dot { color: var(--red); font-style: normal; font-size: 10px; }
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 76px 0 72px;
  background:
    radial-gradient(900px 480px at 88% -10%, var(--green-tint) 0%, transparent 65%),
    radial-gradient(600px 340px at -5% 110%, var(--red-tint) 0%, transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero-title { margin: 22px 0 0; }
.hero-urdu {
  display: block;
  font-family: var(--font-ur);
  direction: rtl;
  text-align: left;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.9;
}
/* Slogan with a refined hand-painted brush behind it: one soft green wash
   under the title and a single confident red brushstroke as the divider.
   Painterly but clean — no speckles, no scratchy bristles. */
.hero-slogan {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 12px 34px 14px 6px;
}
.hero-brush {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-brush .hb-green { fill: #009900; opacity: 0.13; }
.hero-brush .hb-green-core { fill: #007A00; opacity: 0.10; }
.hero-brush .hb-red { fill: #E60000; opacity: 0.92; }
.hero-title-main {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.32;
  color: var(--green-deep);
}
.hero-title-sub {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(19px, 2.3vw, 26px);
  font-weight: 600;
  line-height: 1.95;
  color: var(--red);
  margin-top: 20px;
}
.hero-en {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 10px;
}
.hero-en em {
  font-style: normal;
  color: var(--red);
}
.hero-lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--gray-500);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Chairman card */
.chairman-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 34px 32px 30px;
  overflow: hidden;
}
.chairman-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--green) 0 34%,
    var(--black) 34% 67%,
    var(--red) 67% 100%);
}
.quote-mark {
  font-size: 64px;
  line-height: 0.6;
  color: var(--green-line);
  font-family: Georgia, serif;
  margin-bottom: 14px;
}
.chairman-quote { font-size: 16.5px; color: var(--gray-700); }
.chairman-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chairman-person b { display: block; font-size: 15.5px; }
.chairman-person span { font-size: 13px; color: var(--gray-500); }
.card-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 14.5px;
}
.card-link:hover { text-decoration: underline; }

/* ── Featured Jalsa card (hero) ───────────────────────── */
.jalsa-feature {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px 20px;
  overflow: hidden;
  animation: jf-in 0.55s ease both;
}
@keyframes jf-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.jalsa-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--black) 34% 67%, var(--green) 67% 100%);
}
.jf-top { display: flex; align-items: center; gap: 11px; }
.jf-logo { width: 34px; height: 34px; border-radius: 8px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.jf-kicker { display: flex; flex-direction: column; line-height: 1.25; }
.jf-kicker .k-en {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.jf-kicker .k-ur {
  font-family: var(--font-ur);
  direction: rtl;
  text-align: left;
  font-size: 14px;
  color: var(--red-dark);
  line-height: 1.7;
}
.jf-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.jf-video {
  position: relative;
  margin: 15px 0 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
.jf-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jf-badge {
  position: absolute;
  left: 12px; bottom: 11px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 999px;
}
.jf-sound {
  position: absolute;
  right: 10px; bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.jf-sound:hover { background: rgba(0, 0, 0, 0.88); }
.jf-sound .ic-on { display: none; }
.jf-sound.is-on .ic-off { display: none; }
.jf-sound.is-on .ic-on { display: inline; }
.jf-title {
  font-family: var(--font-ur);
  direction: rtl;
  text-align: right;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700;
  line-height: 1.95;
  color: var(--green-deep);
}
.jf-caption {
  font-family: var(--font-ur);
  direction: rtl;
  text-align: right;
  font-size: 13.5px;
  line-height: 2;
  color: var(--gray-600);
  margin-top: 10px;
}
.jf-countdown { display: flex; gap: 8px; margin: 16px 0; }
.jf-countdown .cd-cell {
  flex: 1;
  text-align: center;
  background: var(--green-tint);
  border: 1px solid var(--green-line);
  border-radius: 12px;
  padding: 9px 4px 7px;
}
.jf-countdown .cd-cell b {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.jf-countdown .cd-cell span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.jf-cta { width: 100%; }

/* ── Stats band ───────────────────────────────────────── */
.stats-band {
  background: var(--green-deep);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  padding: 30px 12px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.stat:first-child { border-left: none; }
.stat .num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 76px 0; }
.section.tint { background: var(--gray-50); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.section-head h2 {
  font-size: clamp(26px, 3vw, 33px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head .sub {
  color: var(--gray-500);
  margin-top: 7px;
  font-size: 15.5px;
  max-width: 560px;
}
.link-more {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  padding-bottom: 4px;
}
.link-more:hover { text-decoration: underline; }

/* ── News cards ───────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
}
.news-thumb.th-green { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); }
.news-thumb.th-red { background: linear-gradient(135deg, var(--red) 0%, #660000 100%); }
.news-thumb.th-dark { background: linear-gradient(135deg, #2A2D30 0%, var(--black) 100%); }
.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 140px at 82% 18%, rgba(255, 255, 255, 0.14), transparent 70%);
}
.news-thumb.has-thumb { background: #111; }
.news-thumb.has-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-thumb.has-thumb::after { background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%); }
.art-cover.has-thumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-thumb .cat {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.news-body { padding: 20px 22px 24px; }
.news-body h3 {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}
.news-meta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--gray-400);
}

/* ── Video carousel ───────────────────────────────────── */
.carousel-nav { display: flex; gap: 10px; }
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.icon-btn:hover { background: var(--green-tint); border-color: var(--green-line); }

.carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-line) transparent;
}
.video-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0F2E0F 0%, var(--green-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(206, 17, 38, 0.6);
  transition: transform 0.15s;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.video-thumb .dur {
  position: absolute;
  right: 10px;
  bottom: 9px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
}
.video-body { padding: 16px 18px 20px; }
.video-body h3 { font-size: 15px; font-weight: 700; line-height: 1.45; }

/* ── Events ───────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
}

.featured-event {
  position: relative;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 38px 38px 36px;
  overflow: hidden;
}
.featured-event::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 90% -20%, rgba(255, 255, 255, 0.12), transparent 65%);
}
.fe-watermark {
  position: absolute;
  right: -8px;
  bottom: -52px;
  font-size: 200px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}
.featured-event > * { position: relative; }
.fe-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.fe-title {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  margin-top: 18px;
  letter-spacing: -0.02em;
}
.fe-sub {
  font-size: 19px;
  color: #A6E7A6;
  margin-top: 2px;
  text-align: left;
}
.fe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 16px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
}
.fe-meta span { display: inline-flex; align-items: center; gap: 7px; }
.fe-meta .ico { color: #A6E7A6; font-style: normal; }

.countdown {
  display: flex;
  gap: 12px;
  margin: 26px 0 28px;
}
.cd-cell {
  min-width: 76px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 12px 8px 10px;
}
.cd-cell b {
  display: block;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cd-cell span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.fe-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.event-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-item {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.event-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.date-block {
  flex-shrink: 0;
  width: 66px;
  text-align: center;
  background: var(--green-tint);
  border-radius: 12px;
  padding: 10px 0 8px;
  color: var(--green-deep);
}
.date-block b { display: block; font-size: 24px; font-weight: 800; line-height: 1.1; }
.date-block span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; }
.event-info h3 { font-size: 15.5px; font-weight: 700; }
.event-info p { font-size: 13.5px; color: var(--gray-500); margin-top: 3px; }

/* ── Membership CTA band ──────────────────────────────── */
.cta-band {
  position: relative;
  background: var(--black);
  color: #fff;
  padding: 88px 0;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 12% 110%, rgba(0, 132, 61, 0.25), transparent 65%),
    radial-gradient(600px 300px at 88% -10%, rgba(206, 17, 38, 0.18), transparent 65%);
}
.cta-inner { position: relative; max-width: 720px; margin-inline: auto; }
.cta-urdu {
  font-size: 26px;
  color: #A6E7A6;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 8px;
}
.cta-band p {
  margin-top: 16px;
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.7);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

/* ── Follow band ──────────────────────────────────────── */
.follow-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.follow-inner h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.follow-inner .sub { color: var(--gray-500); margin-top: 6px; max-width: 520px; font-size: 15px; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.social-pill:hover {
  border-color: var(--green);
  background: var(--green-tint);
  transform: translateY(-2px);
}
.social-pill .sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.social-pill:nth-child(even) .sp-dot { background: var(--red); }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding: 64px 0 48px;
}
.f-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.f-brand-row img { width: 42px; height: 42px; border-radius: 10px; }
.f-brand-row b { display: block; color: #fff; font-size: 16px; }
.f-brand-row span { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.footer-brand p { font-size: 14px; max-width: 300px; color: rgba(255, 255, 255, 0.6); }
.f-urdu { margin-top: 16px; font-size: 16px; color: #A6E7A6; text-align: left; }

.footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  padding: 5px 0;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.f-jiye { font-size: 17px; color: #A6E7A6; }

/* ── Toast ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  z-index: 400;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 12px;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-md);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-width: min(420px, calc(100vw - 48px));
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Motion preferences ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .ticker-viewport { overflow-x: auto; }
  .pulse-dot, .jf-live { animation: none; }
  .jalsa-feature { animation: none; }
  .btn:hover, .news-card:hover, .video-card:hover, .event-item:hover, .social-pill:hover { transform: none; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1040px) {
  .primary-nav, .header-cta { display: none; }
  .header-inner { justify-content: space-between; }
  .hamburger { display: flex; }

  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-urdu { text-align: left; }

  .events-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat { border: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; padding: 48px 0 32px; }
}

@media (max-width: 640px) {
  .topbar-left .tb-text { display: none; }
  .tb-sep { display: none; }
  .topbar-right .tb-link { display: none; }

  .section { padding: 56px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }

  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 22px 8px; }
  .stat .num { font-size: 28px; }

  .featured-event { padding: 28px 24px; }
  .countdown { gap: 8px; }
  .cd-cell { min-width: 0; flex: 1; }
  .cd-cell b { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   Inner pages (Session 2+)
   ═══════════════════════════════════════════════════════ */

.page-hero {
  background:
    radial-gradient(800px 400px at 90% -20%, var(--green-tint) 0%, transparent 65%),
    var(--white);
  padding: 46px 0 38px;
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--green-dark); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--green-dark); font-weight: 600; }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.urdu-sub {
  display: block;
  font-family: var(--font-ur);
  direction: rtl;
  text-align: left;
  line-height: 2;
  font-size: 19px;
  color: var(--green-dark);
  margin-top: 6px;
}
.page-hero .lead {
  margin-top: 14px;
  font-size: 17px;
  color: var(--gray-500);
  max-width: 720px;
}

/* Section sub-navigation */
.subnav {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
}
.subnav-row {
  display: flex;
  gap: 8px;
  padding-block: 14px;
  overflow-x: auto;
}
.subnav-row a {
  flex-shrink: 0;
  padding: 8px 17px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.subnav-row a:hover { background: var(--green-tint); border-color: var(--green-line); color: var(--green-deep); }
.subnav-row a.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Article prose */
.prose { max-width: 780px; font-size: 16px; color: var(--gray-700); }
.prose h2 {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 42px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--green);
  background: var(--green-tint);
  border-radius: 0 14px 14px 0;
  padding: 20px 26px;
  margin: 26px 0;
  font-size: 17.5px;
  font-weight: 500;
  color: var(--green-deep);
}
.prose blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
}

/* Placeholder note (content owed by the owner) */
.ph-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1.5px dashed var(--gray-300);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 24px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-500);
}
.ph-note .ph-chip {
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

/* Timeline */
.timeline { position: relative; max-width: 780px; margin-top: 10px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-200);
}
.tl-item { position: relative; padding: 0 0 36px 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
}
.tl-item.red::before { border-color: var(--red); }
.tl-item.black::before { border-color: var(--black); }
.tl-year {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--green-deep);
  background: var(--green-tint);
  border-radius: 999px;
  padding: 3px 13px;
}
.tl-item.red .tl-year { color: var(--red-dark); background: var(--red-tint); }
.tl-item.black .tl-year { color: #fff; background: var(--black); }
.tl-item h3 { font-size: 17.5px; font-weight: 700; margin: 11px 0 6px; }
.tl-item p { font-size: 14.5px; color: var(--gray-500); max-width: 640px; }
.ev-chip {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  border: 1.5px dashed var(--gray-300);
  border-radius: 999px;
  padding: 3px 12px;
}

/* Legacy profiles (Bhutto legacy page) */
.legacy-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: start;
  padding: 46px 0;
  border-bottom: 1px solid var(--gray-100);
}
.legacy-profile:last-of-type { border-bottom: none; }
.legacy-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.legacy-photo.p-green { background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%); }
.legacy-photo.p-red { background: linear-gradient(150deg, var(--red) 0%, #5E0912 100%); }
.legacy-photo.p-black { background: linear-gradient(150deg, #33373B 0%, var(--black) 100%); }
.legacy-photo .ph-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
}
.legacy-info h2 { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; }
.legacy-info .urdu-name {
  font-family: var(--font-ur);
  direction: rtl;
  text-align: left;
  line-height: 2;
  font-size: 17px;
  color: var(--green-dark);
}
.legacy-role {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin: 10px 0 16px;
}
.legacy-info p { font-size: 15.5px; color: var(--gray-700); margin-bottom: 14px; }
.legacy-facts { list-style: none; margin-top: 18px; display: grid; gap: 9px; }
.legacy-facts li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--gray-500);
}
.legacy-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Photo archive placeholder grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.photo-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1.5px dashed var(--gray-300);
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  text-align: center;
  color: var(--gray-400);
  font-size: 12px;
}
.photo-tile b { color: var(--gray-500); font-size: 13px; font-weight: 700; }

/* Pillar / link cards */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.pillar-card .p-num {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red);
}
.pillar-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-top: 9px; }
.pillar-card p { font-size: 14px; color: var(--gray-500); margin-top: 8px; }
a.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-line);
}
.pillar-card .card-arrow {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--green-dark);
}

/* PDF placeholder frame */
.pdf-frame {
  border: 1.5px dashed var(--gray-300);
  background: var(--gray-50);
  border-radius: 18px;
  padding: 64px 24px;
  text-align: center;
  color: var(--gray-500);
}
.pdf-frame .pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--red-tint);
  color: var(--red);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.pdf-frame p { max-width: 440px; margin: 0 auto 22px; font-size: 14.5px; }

/* TOC layout (constitution) */
.toc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 96px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 18px;
}
.toc h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.toc a {
  display: block;
  font-size: 14px;
  color: var(--gray-600, #4B5563);
  padding: 6px 10px;
  border-radius: 7px;
}
.toc a:hover { background: var(--green-tint); color: var(--green-deep); }

/* Fact cards (Lahore chapter) */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fact-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 24px;
}
.fact-card .fk {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.fact-card .fv {
  display: block;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-top: 5px;
}
.fact-card .fs { font-size: 13px; color: var(--gray-500); margin-top: 3px; }

@media (max-width: 900px) {
  .legacy-profile { grid-template-columns: 1fr; gap: 26px; }
  .legacy-photo { max-width: 300px; }
  .toc-layout { grid-template-columns: 1fr; gap: 28px; }
  .toc { position: static; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 36px 0 30px; }
}

/* ═══════════════════════════════════════════════════════
   Leadership (Session 3)
   ═══════════════════════════════════════════════════════ */

.leader-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* Zone office bearer blocks (town pages) */
.zone-block { margin-bottom: 34px; }
.zone-block:last-child { margin-bottom: 0; }
.zone-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 800;
}
.zone-head .m-seat { margin-top: 0; font-size: 13px; }
.zone-count { font-size: 12.5px; font-weight: 600; color: var(--gray-400); }
.leader-feature {
  display: flex;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 26px 28px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
a.leader-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-line);
}
.lf-avatar {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lf-avatar.lf-pending {
  background: var(--gray-100);
  color: var(--gray-400);
  border: 1.5px dashed var(--gray-300);
  font-size: 15px;
}
.lf-info .lf-name { display: block; font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.lf-info .lf-role { display: block; font-size: 13.5px; color: var(--gray-500); margin-top: 2px; }
.lf-info .card-arrow { margin-top: 10px; }

/* Real leader portraits (already composited on white) */
.lf-avatar.lf-photo { background: #fff; border: 1px solid var(--gray-200); overflow: hidden; padding: 0; }
.lf-avatar.lf-photo img,
.legacy-photo.has-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.legacy-photo.has-photo { background: #fff; border: 1px solid var(--gray-200); color: transparent; }

/* Member card (reusable person card) */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.member-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.m-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.member-card.pending .m-avatar {
  background: var(--gray-50);
  color: var(--gray-400);
  border: 1.5px dashed var(--gray-300);
  font-size: 13px;
}
.m-name { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.m-name.pending-name { color: var(--gray-400); font-weight: 600; }
.m-urdu {
  display: block;
  font-family: var(--font-ur);
  direction: rtl;
  line-height: 2;
  font-size: 13px;
  color: var(--green-dark);
}
.m-role { display: block; font-size: 12.5px; color: var(--gray-500); margin-top: 4px; }
.m-seat {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  background: var(--green-tint);
  padding: 3px 12px;
  border-radius: 999px;
}

/* Featured profile layout */
.profile-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.profile-side { display: flex; flex-direction: column; gap: 20px; }
.side-card {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px 22px;
}
.side-card h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.side-facts { list-style: none; display: grid; gap: 12px; }
.side-facts li { font-size: 14.5px; color: var(--gray-700); }
.side-facts li b {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1px;
}
.social-mini-row { display: flex; flex-wrap: wrap; gap: 8px; }
.social-mini {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 7px 15px;
  transition: background 0.15s, border-color 0.15s;
}
.social-mini:hover { background: var(--green-tint); border-color: var(--green-line); color: var(--green-deep); }

@media (max-width: 900px) {
  .leader-feature-grid { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 1fr; gap: 30px; }
  .profile-layout .legacy-photo { max-width: 300px; }
}

/* ═══════════════════════════════════════════════════════
   Organization / Tanzeem (Session 4)
   ═══════════════════════════════════════════════════════ */

/* Office bearers table */
.bearers-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: #fff;
}
.bearers-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.bearers-table th {
  text-align: left;
  background: var(--green-deep);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 18px;
  white-space: nowrap;
}
.bearers-table th.th-urdu {
  font-family: var(--font-ur);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
.bearers-table td {
  padding: 12px 18px;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.bearers-table tbody tr:nth-child(even) td { background: var(--gray-50); }
.bearers-table .role-cell { font-weight: 600; color: var(--ink); white-space: nowrap; }
.bearers-table .urdu-cell {
  font-family: var(--font-ur);
  direction: rtl;
  text-align: right;
  line-height: 1.9;
  font-size: 14px;
}
.bearers-table .pending-cell { color: var(--gray-400); }

/* Town cards */
.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.town-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 26px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
a.town-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-line);
}
.town-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.town-card .t-urdu {
  display: block;
  font-family: var(--font-ur);
  direction: rtl;
  text-align: left;
  line-height: 2;
  font-size: 14px;
  color: var(--green-dark);
}
.town-card .t-meta {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
}
.town-card .t-meta .pend { color: var(--gray-400); }
.town-card .t-meta b { color: var(--ink); font-weight: 700; }
.town-card .card-arrow { margin-top: 14px; }

/* Town page: link across to this town's zones */
.town-zones-link { margin-top: 26px; }
.town-zones-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-deep);
  background: var(--green-tint);
  border: 1px solid var(--green-line);
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.town-zones-cta:hover { background: #e3f4e3; transform: translateY(-1px); }
.muted-line { color: var(--gray-500); font-size: 15px; margin: 0; }

/* Zones page: one section per town, with that town's zones */
.zone-town { margin-bottom: 48px; }
.zone-town:last-child { margin-bottom: 0; }
.zone-town > .section-head { border-bottom: 2px solid var(--green-line); padding-bottom: 12px; margin-bottom: 22px; }
.zone-town .zt-urdu { font-family: var(--font-ur); font-size: 0.72em; font-weight: 600; color: var(--green-deep); }

/* Organogram tree */
.org-tree {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 22px 26px;
}
.org-tree details > *:not(summary) { margin-left: 24px; }
.org-tree details details {
  border-left: 2px solid var(--gray-100);
  padding-left: 10px;
  margin-top: 2px;
}
.org-tree summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.org-tree summary::-webkit-details-marker { display: none; }
.org-tree summary::before {
  content: '\25B8';
  color: var(--green);
  font-size: 12px;
  transition: transform 0.15s;
}
.org-tree details[open] > summary::before { content: '\25BE'; }
.org-tree summary:hover { background: var(--green-tint); }
.lvl-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.lvl-division { background: var(--green); color: #fff; }
.lvl-district { background: var(--black); color: #fff; }
.lvl-town { background: var(--green-tint); color: var(--green-deep); }
.ot-urdu {
  margin-left: auto;
  font-family: var(--font-ur);
  direction: rtl;
  line-height: 1.9;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-400);
}
.org-leaf {
  padding: 8px 12px 10px 34px;
  font-size: 13.5px;
  color: var(--gray-500);
}

/* Office bearer search */
.search-box { max-width: 640px; }
.search-input {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15.5px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
}
.search-results { margin-top: 26px; }
.search-hint { font-size: 14.5px; color: var(--gray-400); padding: 8px 2px; }

@media (max-width: 640px) {
  .org-tree { padding: 14px; }
  .org-tree details > *:not(summary) { margin-left: 10px; }
  .ot-urdu { display: none; }
}

/* ═══════════════════════════════════════════════════════
   Allied wings (Session 5)
   ═══════════════════════════════════════════════════════ */

.wing-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.wi-0 { background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.wi-1 { background: linear-gradient(135deg, var(--red), #660000); }
.wi-2 { background: linear-gradient(135deg, #33373B, var(--black)); }

.chapter-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.chapter-group {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 26px;
}
.chapter-group h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chapter-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-deep);
}
.chapter-note { font-size: 12.5px; color: var(--gray-400); margin-top: 14px; }

/* ═══════════════════════════════════════════════════════
   Newsroom & media centre (Session 6)
   ═══════════════════════════════════════════════════════ */

.news-excerpt { font-size: 13.5px; color: var(--gray-500); margin-top: 8px; line-height: 1.55; }

.feed-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.feed-controls .search-input { max-width: 320px; padding: 11px 16px; font-size: 14px; }
.news-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.news-tab {
  padding: 8px 17px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.news-tab:hover { background: var(--green-tint); border-color: var(--green-line); color: var(--green-deep); }
.news-tab.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Article page */
.cat-chip {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.page-hero .art-title { max-width: 820px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-400);
  margin-top: 14px;
}
.share-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.share-btn {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.share-btn:hover { background: var(--green-tint); border-color: var(--green-line); color: var(--green-deep); }

.art-cover {
  aspect-ratio: 3 / 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
}
.urdu-para {
  font-family: var(--font-ur);
  direction: rtl;
  text-align: right;
  line-height: 2.2;
  font-size: 16px;
  color: var(--gray-700);
  background: var(--gray-50);
  border-right: 4px solid var(--green);
  border-radius: 12px 0 0 12px;
  padding: 18px 24px;
  margin: 28px 0;
}

/* Archive controls */
.archive-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.archive-controls .search-input { padding: 11px 16px; font-size: 14px; }
.arch-count { font-size: 13.5px; color: var(--gray-400); margin-bottom: 24px; }

/* Video grid (news bulletins & media library) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* Newspaper editions */
.edition-list { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.edition-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px 20px;
}
.edition-item .einfo h3 { font-size: 15.5px; font-weight: 700; }
.edition-item .einfo p { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.edition-item .ev-chip { margin-left: auto; margin-top: 0; flex-shrink: 0; }

/* Brand swatches */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.swatch {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.swatch .sw-color { height: 84px; }
.swatch .sw-info { padding: 12px 16px; font-size: 12.5px; color: var(--gray-500); }
.swatch .sw-info b { display: block; font-size: 13.5px; color: var(--ink); }

@media (max-width: 900px) {
  .archive-controls { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .archive-controls { grid-template-columns: 1fr; }
  .feed-controls { flex-direction: column; align-items: stretch; }
  .feed-controls .search-input { max-width: none; }
}

/* ═══════════════════════════════════════════════════════
   Membership & forms (Session 7)
   ═══════════════════════════════════════════════════════ */

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 26px;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 16.5px; font-weight: 700; }
.step-card p { font-size: 14px; color: var(--gray-500); margin-top: 8px; }

.form-card {
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 34px 36px 38px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form-field .hint { font-size: 11.5px; color: var(--gray-400); }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
}
textarea.form-input { resize: vertical; min-height: 84px; }
.form-error { display: none; font-size: 12px; font-weight: 500; color: var(--red-dark); }
.form-field.invalid .form-error { display: block; }
.form-field.invalid .form-input { border-color: var(--red); }
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-700);
}
.check-row input { margin-top: 3px; accent-color: var(--green); width: 16px; height: 16px; }
.form-actions { margin-top: 26px; }

.form-success,
.lookup-result { display: none; margin-top: 26px; border-radius: 18px; padding: 30px 32px; }
.form-success.show,
.lookup-result.show { display: block; }
.form-success,
.lookup-result.good {
  background: var(--green-tint);
  border: 1.5px solid var(--green-line);
}
.lookup-result.neutral {
  background: var(--gray-50);
  border: 1.5px dashed var(--gray-300);
}
.status-chip {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.lookup-result.neutral .status-chip { background: var(--gray-400); }
.form-success h3, .lookup-result h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.form-success p, .lookup-result p { font-size: 14.5px; color: var(--gray-700); margin-top: 10px; }
.ref-code {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid var(--green-line);
  border-radius: 12px;
  padding: 10px 22px;
  margin-top: 14px;
}
.summary-rows { margin-top: 18px; display: grid; gap: 8px; }
.summary-rows div { font-size: 14px; color: var(--gray-700); }
.summary-rows b { color: var(--ink); }

@media (max-width: 900px) {
  .steps-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-card { padding: 24px 20px 28px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   Constituencies & events (Session 8)
   ═══════════════════════════════════════════════════════ */

.seat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.seat-tile {
  display: block;
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 12px 18px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.seat-tile b {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
.seat-tile span { font-size: 11.5px; font-weight: 600; color: var(--gray-400); }
a.seat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-line);
}

/* Events calendar */
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.cal-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 6px 0;
}
.cal-day {
  position: relative;
  min-height: 64px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  background: #fff;
}
.cal-day.other { background: var(--gray-50); border-color: transparent; color: var(--gray-200); }
.cal-day.today { border-color: var(--black); }
.cal-day.has-event {
  background: var(--green-tint);
  border-color: var(--green-line);
  color: var(--green-deep);
}
.cal-dot {
  position: absolute;
  left: 9px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.cal-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 640px) {
  .cal-day { min-height: 44px; padding: 4px 6px; font-size: 11.5px; }
}

/* ═══════════════════════════════════════════════════════
   Urdu mode & RTL (Session 10)
   ═══════════════════════════════════════════════════════ */

body.lang-ur .nav-link,
body.lang-ur .m-group summary,
body.lang-ur .m-link,
body.lang-ur .header-cta,
body.lang-ur .m-cta,
body.lang-ur .footer h4,
body.lang-ur .tb-text {
  font-family: var(--font-ur);
  line-height: 1.9;
}
body.lang-ur .nav-link { font-size: 15px; }
body.lang-ur .footer h4 { font-size: 15px; text-transform: none; letter-spacing: 0; }

html[dir="rtl"] .hero-urdu,
html[dir="rtl"] .urdu-sub,
html[dir="rtl"] .t-urdu,
html[dir="rtl"] .f-urdu,
html[dir="rtl"] .fe-sub { text-align: right; }
html[dir="rtl"] .urdu-para {
  border-right: none;
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
}
html[dir="rtl"] .prose blockquote {
  border-left: none;
  border-right: 4px solid var(--green);
  border-radius: 14px 0 0 14px;
}
html[dir="rtl"] .toast { border-left: none; border-right: 4px solid var(--red); }
html[dir="rtl"] .dropdown { left: auto; right: 0; }
html[dir="rtl"] .timeline::before { left: auto; right: 12px; }
html[dir="rtl"] .tl-item { padding: 0 44px 36px 0; }
html[dir="rtl"] .tl-item::before { left: auto; right: 4px; }
