﻿/* Current Affairs article reading â€” premium continuous flow */
.tan-read {
  --read-paper: #FAF9F6;
  --read-dark: #0A2518;
  --read-green: #123824;
  --read-gold: #C9A84C;
  --read-muted: #6b7280;
  background: var(--read-paper);
  min-height: 40vh;
}

.tan-read__progress {
  position: sticky;
  top: 0;
  z-index: 45;
  height: 3px;
  background: #e5e7eb;
}
.tan-read__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--read-gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.55);
  transition: width 0.12s linear;
}

.tan-read__topbar {
  position: sticky;
  top: 3px;
  z-index: 44;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 37, 24, 0.08);
}
.tan-read__crumb {
  font-size: 12px;
  color: var(--read-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.tan-read__crumb a {
  color: var(--read-muted);
  text-decoration: none;
}
.tan-read__crumb a:hover { color: var(--read-dark); }
.tan-read__crumb-date {
  color: var(--read-dark);
  font-weight: 700;
}
.tan-read__counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--read-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.tan-read__counter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--read-gold);
  animation: tan-read-pulse 2s infinite;
}
@keyframes tan-read-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.tan-read__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem 1rem 2.75rem;
  box-sizing: border-box;
}
.tan-read__main {
  min-width: 0;
  max-width: none;
  width: 100%;
}
.tan-read__rail {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.tan-read__upnext {
  display: none;
}
@media (min-width: 1100px) {
  /* Within main pane: ~75% news + ~25% boxes ≈ page 60% / 20% beside menu */
  .tan-read__layout {
    grid-template-columns: minmax(0, 3fr) minmax(17rem, 1fr);
    gap: 1.35rem;
    align-items: start;
    padding: 1.25rem 1.35rem 3rem;
  }
  .tan-read__main {
    max-width: none;
  }
  .tan-read__rail {
    position: sticky;
    top: 4.25rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 1400px) {
  .tan-read__layout {
    grid-template-columns: minmax(0, 3.2fr) minmax(18rem, 1fr);
    gap: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.tan-read__upnext-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #eef3f0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}
.tan-read__upnext-badge {
  background: var(--read-gold);
  color: var(--read-dark);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
}
.tan-read__upnext-body { padding: 12px; }
.tan-read__upnext-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  display: block;
  margin-bottom: 4px;
}
.tan-read__upnext-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--read-dark);
  line-height: 1.3;
  margin: 0 0 6px;
}
.tan-read__upnext-hook {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tan-read__upnext a.tan-read__upnext-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--read-green);
  text-decoration: none;
}
.tan-read__upnext a.tan-read__upnext-link:hover { color: var(--read-gold); }

.tan-read__daybreak {
  position: relative;
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.tan-read__daybreak::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px solid rgba(10, 37, 24, 0.12);
}
.tan-read__daybreak-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--read-dark);
  color: var(--read-gold);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(10, 37, 24, 0.18);
}

/* Article block */
.tan-story {
  padding: 0.5rem 0 2rem;
}
.tan-story + .tan-story {
  margin-top: 0.5rem;
}
.tan-story__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}
.tan-story__badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
}
.tan-story__badge--subject {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}
.tan-story__badge--gs2 { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.tan-story__badge--gs3 { background: #f5f3ff; color: #6d28d9; border-color: #ddd6fe; }
.tan-story__badge--gs1 { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.tan-story__badge--gs4 { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
.tan-story__badge--editorial { background: #f8fafc; color: #334155; border-color: #e2e8f0; }
.tan-story__badge--opinion { background: #fdf4ff; color: #a21caf; border-color: #f5d0fe; }
.tan-story__badge--essay { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.tan-story__badge--ethics { background: #fef2f2; color: #9f1239; border-color: #fecdd3; }
.tan-story__badge--cat {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}
.tan-story__badge--subtopic {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.tan-story__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--read-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.tan-story__title a {
  color: inherit;
  text-decoration: none;
}
.tan-story__title a:hover { color: var(--read-gold); }

.tan-story__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  font-size: 13px;
  color: var(--read-muted);
  font-weight: 500;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
  margin-bottom: 1.75rem;
}
.tan-story__meta-author {
  color: var(--read-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tan-story__meta-sep {
  color: #d1d5db;
  margin: 0 10px;
}

.tan-story__lang {
  margin: -0.5rem 0 1.25rem;
}
.tan-story__fallback {
  font-size: 12px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 1rem;
}

/* Sections â€” unique designs */
.tan-sec { margin: 0 0 2rem; }

.tan-sec--brief {
  border-left: 4px solid var(--read-gold);
  padding: 0.35rem 0 0.35rem 1.25rem;
}
.tan-sec--brief .tan-sec__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--read-gold);
  margin: 0 0 8px;
}
.tan-sec--brief .tan-sec__body,
.tan-sec--brief .tan-sec__body p {
  font-family: "DM Sans", system-ui, sans-serif;
  font-style: normal;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  line-height: 1.75;
  color: #374151;
  font-weight: 400;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.tan-sec--summary .tan-sec__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin: 0 0 10px;
}
.tan-sec--summary .tan-sec__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1f2937;
}
.tan-sec--summary .tan-sec__body::first-letter {
  float: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.85;
  padding: 6px 10px 0 2px;
  color: var(--read-dark);
  font-weight: 700;
}

.tan-sec--why {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 1px 3px rgba(10, 37, 24, 0.04);
  position: relative;
}
.tan-sec--why .tan-sec__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #1d4ed8;
  padding: 5px 10px;
  border-radius: 6px;
  margin: 0 0 12px;
  line-height: 1.35;
  max-width: 100%;
  white-space: normal;
}
.tan-sec--why .tan-sec__body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #374151;
}

.tan-sec--analysis .tan-sec__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tan-sec--analysis .tan-sec__label {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--read-dark);
  margin: 0;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.tan-sec--analysis .tan-sec__rule {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.tan-sec--analysis .tan-sec__body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #374151;
}
.tan-sec--analysis .tan-sec__body h2,
.tan-sec--analysis .tan-sec__body h3,
.tan-sec--analysis .tan-sec__body h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--read-dark);
  font-weight: 800;
  line-height: 1.3;
  margin: 1.4rem 0 0.75rem;
}
.tan-sec--analysis .tan-sec__body p,
.tan-sec--analysis .tan-sec__body .tan-fmt-p {
  margin: 0 0 1.05rem;
}
.tan-sec--analysis .tan-sec__body .tan-formatted-content {
  color: #1f2937;
}
.tan-sec--analysis .tan-sec__body .tan-fmt-h2 {
  margin-top: 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--read-dark);
}
.tan-sec--analysis .tan-sec__body .tan-fmt-h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--read-dark);
  border-bottom: 2px solid rgba(201, 168, 76, 0.45);
  padding-bottom: 4px;
}
.tan-sec--analysis .tan-sec__body .tan-fmt-h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1f2937;
}
.tan-sec--analysis .tan-sec__body .tan-fmt-ul,
.tan-sec--analysis .tan-sec__body .tan-fmt-ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.tan-sec--analysis .tan-sec__body .tan-fmt-highlight {
  margin: 0.85rem 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid #C9A84C;
  background: #f7f3e8;
  border-radius: 0 0.55rem 0.55rem 0;
  color: #1f2937;
}

.tan-sec--facts {
  background: linear-gradient(145deg, #eef3f0 0%, #e4ebe7 100%);
  border: 1px solid #d4ddd8;
  border-radius: 1.15rem;
  padding: 1.75rem 1.35rem 1.35rem;
  position: relative;
  margin-top: 2.25rem;
}
.tan-sec--facts .tan-sec__label {
  position: absolute;
  top: -12px;
  left: 1.25rem;
  background: var(--read-dark);
  color: var(--read-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tan-sec--facts ul {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.tan-sec--facts li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #1f2937;
}
.tan-sec--facts li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--read-green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
  background-color: var(--read-green);
}
.tan-sec--facts .tan-sec__body { font-size: 0.95rem; line-height: 1.65; color: #1f2937; }

.tan-story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.tan-story__tag {
  display: inline-block;
  padding: 5px 12px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
}
.tan-story__tag:hover {
  background: #eef3f0;
  color: var(--read-dark);
}

.tan-read__divider {
  position: relative;
  padding: 2rem 0;
  text-align: center;
}
.tan-read__divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px dashed #d1d5db;
}
.tan-read__divider-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--read-paper);
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.tan-read__end {
  text-align: center;
  padding: 2rem 1rem 1rem;
  color: #6b7280;
  font-size: 13px;
}
.tan-read__end a {
  color: var(--read-dark);
  font-weight: 700;
  text-decoration: none;
}
.tan-read__end a:hover { color: var(--read-gold); }

/* Premium blocks sit inside story flow */
.tan-read .tan-premium-block {
  margin: 1.75rem 0;
}
.tan-read .tan-premium-block__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--read-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}


@media (max-width: 767px) {
  .tan-read__layout { padding: 0.85rem 0.85rem 2.5rem; }
  .tan-read__topbar { padding: 8px 12px; top: 0; }
  .tan-read__progress { top: 0; }
  .tan-story__meta { font-size: 12px; }
  .tan-unlock__grid { grid-template-columns: 1fr 1fr; }
}

/* Compact premium unlock */
.tan-unlock {
  margin: 1.35rem 0 0.85rem;
  width: 100%;
  max-width: none;
}
.tan-unlock--compact,
.tan-unlock--wide {
  max-width: none;
  width: 100%;
}
.tan-unlock__card {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, #1a4a32 0%, transparent 55%),
    linear-gradient(165deg, #0f2f1f 0%, #0a2518 48%, #071a10 100%);
  border-radius: 0.85rem;
  padding: 1.1rem 1.25rem 1.05rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 37, 24, 0.2);
  width: 100%;
  box-sizing: border-box;
}
.tan-unlock__icon { display: none; }
.tan-unlock__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.55rem;
  color: #fff;
}
.tan-unlock__text {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  margin: 0 auto 0.75rem;
}
.tan-unlock__teaser {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #f3f4f6 !important;
  text-align: left;
  max-width: 42rem;
  margin: 0 auto 0.95rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 0.65rem;
}
.tan-unlock__teaser .tan-formatted-content,
.tan-unlock__teaser .tan-formatted-content * {
  color: #f3f4f6 !important;
}
.tan-unlock__teaser .tan-fmt-p,
.tan-unlock__teaser p {
  margin: 0 0 0.55rem;
  color: #f3f4f6 !important;
}
.tan-unlock__teaser .tan-fmt-p:last-child,
.tan-unlock__teaser p:last-child {
  margin-bottom: 0;
}
.tan-unlock__teaser strong,
.tan-unlock__teaser .tan-fmt-p strong {
  color: #f5e6b8 !important;
  font-weight: 700;
}
.tan-unlock__teaser .tan-fmt-ol,
.tan-unlock__teaser .tan-fmt-ul {
  margin: 0.15rem 0 0.35rem;
  padding-left: 1.25rem;
  color: #f3f4f6 !important;
}
.tan-unlock__teaser .tan-fmt-ol li,
.tan-unlock__teaser .tan-fmt-ul li {
  margin-bottom: 0.4rem;
  color: #f3f4f6 !important;
}
.tan-unlock__teaser .tan-fmt-ol li::marker,
.tan-unlock__teaser .tan-fmt-ul li::marker {
  color: #C9A84C !important;
}
.tan-unlock__teaser .tan-fmt-h2,
.tan-unlock__teaser .tan-fmt-h3,
.tan-unlock__teaser .tan-fmt-h4 {
  color: #f5e6b8 !important;
  border-bottom-color: rgba(201, 168, 76, 0.45);
}
.tan-unlock__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  text-align: left;
}
.tan-unlock__feat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.45rem 0.5rem;
}
.tan-unlock__feat-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
.tan-unlock__feat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tan-unlock__feat--search .tan-unlock__feat-icon { color: #fb923c; }
.tan-unlock__feat--lang .tan-unlock__feat-icon { color: #60a5fa; }
.tan-unlock__feat--mains .tan-unlock__feat-icon { color: #fbbf24; }
.tan-unlock__feat--prelims .tan-unlock__feat-icon { color: #f87171; }
.tan-unlock__feat--scales .tan-unlock__feat-icon { color: #c084fc; }
.tan-unlock__feat--link .tan-unlock__feat-icon { color: #2dd4bf; }
.tan-unlock__feat-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}
.tan-unlock__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 16rem;
  padding: 0.65rem 1rem;
  border-radius: 0.6rem;
  background: var(--read-gold);
  color: #0a2518;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.tan-unlock__cta:hover { filter: brightness(1.05); color: #0a2518; }

/* Next story CTA */
.tan-read__next {
  margin: 1.75rem 0 0.5rem;
}
.tan-read__next-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8f88;
  margin: 0 0 0.55rem;
}
.tan-read__next-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--read-gold);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(10, 37, 24, 0.05);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.tan-read__next-card:hover {
  border-color: #d4cbb8;
  box-shadow: 0 10px 24px rgba(10, 37, 24, 0.08);
  transform: translateY(-1px);
}
.tan-read__next-gs {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #C9A84C;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tan-read__next-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0A2518;
}
.tan-read__next-cta {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A2518;
  margin-top: 0.25rem;
}
.tan-read__next-card:hover .tan-read__next-cta { color: #C9A84C; }

/* More stories — short title boxes */
.tan-more {
  margin: 2rem 0 1rem;
  padding-top: 0.5rem;
}
.tan-more__head { margin: 0 0 1rem; }
.tan-more__title {
  margin: 0 0 0.25rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0A2518;
}
.tan-more__sub {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  color: #6b7280;
}
.tan-more__group { margin: 0 0 1.15rem; }
.tan-more__cat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
}
.tan-more__cat-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #C9A84C;
}
.tan-more__cat-dot--gs1 { background: #e67e22; }
.tan-more__cat-dot--gs2 { background: #2563eb; }
.tan-more__cat-dot--gs3 { background: #059669; }
.tan-more__cat-dot--gs4 { background: #7c3aed; }
.tan-more__cat-dot--editorial { background: #6b7280; }
.tan-more__cat-dot--opinion { background: #0284c7; }
.tan-more__cat-dot--essay { background: #8b5cf6; }
.tan-more__cat-dot--ethics { background: #e11d48; }
.tan-more__cat-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4b5563;
}
.tan-more__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.55rem;
}
.tan-more__box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.55rem;
  border: 1px solid #e8e4dc;
  border-left-width: 3px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  min-height: 3.6rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.tan-more__box:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 37, 24, 0.07);
}
.tan-more__box--gs1 { border-left-color: #e67e22; background: #fff8f1; }
.tan-more__box--gs2 { border-left-color: #2563eb; background: #f3f7ff; }
.tan-more__box--gs3 { border-left-color: #059669; background: #f1fbf6; }
.tan-more__box--gs4 { border-left-color: #7c3aed; background: #f7f3ff; }
.tan-more__box--editorial { border-left-color: #6b7280; background: #f7f7f7; }
.tan-more__box--opinion { border-left-color: #0284c7; background: #f0f9ff; }
.tan-more__box--essay { border-left-color: #8b5cf6; background: #f8f4ff; }
.tan-more__box--ethics { border-left-color: #e11d48; background: #fff5f6; }
.tan-more__box-meta {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #8a8f88;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tan-more__box-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tan-read--single .tan-story { max-width: none; }
.tan-read--single .tan-story__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.3;
}
.tan-read--single .tan-sec__body,
.tan-read--single .tan-sec__body p {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #1f2937;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Dual Up Next / First story cards */
.tan-uppair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  width: 100%;
}
.tan-uppair--rail {
  grid-template-columns: 1fr;
}
@media (max-width: 1099px) {
  .tan-uppair--rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
  }
}
@media (max-width: 720px) {
  .tan-uppair--rail { grid-template-columns: 1fr; }
}
.tan-upcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(10, 37, 24, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 0;
}
.tan-upcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 37, 24, 0.1);
}
.tan-upcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: #eef1ef;
  border-bottom: 1px solid #e5e7eb;
}
.tan-upcard__eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}
.tan-upcard__badge {
  flex-shrink: 0;
  background: #C9A84C;
  color: #0A2518;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tan-upcard__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 0.95rem 1rem;
  flex: 1;
}
.tan-upcard__cat {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2563eb;
}
.tan-upcard__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
.tan-upcard__hook {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
.tan-upcard__cta {
  margin-top: auto;
  padding-top: 0.35rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A2518;
}
.tan-upcard:hover .tan-upcard__cta { color: #C9A84C; }

/* News Digestive */
.tan-digest {
  width: 100%;
  margin: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem 0.55rem;
  box-sizing: border-box;
}
.tan-digest--rail {
  margin: 0;
}
.tan-digest__date {
  min-width: 0;
  font-size: 0.78rem;
}
.tan-digest__count {
  flex-shrink: 0;
  color: #4b5563;
  font-size: 0.78rem;
}
.tan-digest__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.7rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid #ece8e1;
}
.tan-digest__icon {
  display: inline-flex;
  color: #C9A84C;
}
.tan-digest__title {
  margin: 0;
  font-family: ui-monospace, "DM Mono", "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111827;
}
.tan-digest__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tan-digest__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.15rem;
  border-bottom: 1px solid #f1efe9;
  text-decoration: none;
  font-family: ui-monospace, "DM Mono", "Courier New", monospace;
  font-size: 0.88rem;
  color: #1f2937;
  transition: background 0.12s;
}
.tan-digest__list li:last-child .tan-digest__row {
  border-bottom: none;
}
.tan-digest__row:hover {
  background: #faf9f6;
}
.tan-digest__row.is-current .tan-digest__date {
  font-weight: 800;
}
.tan-digest__date {
  min-width: 0;
}
.tan-digest__count {
  flex-shrink: 0;
  color: #4b5563;
}
.tan-digest__count strong {
  color: #9a4b1a;
  font-weight: 800;
}
.tan-digest__row.is-current .tan-digest__count strong {
  color: #9a4b1a;
}

/* ── In-depth premium teaser (new design) ── */
.tan-indepth {
  margin: 1.75rem 0 1.25rem;
  width: 100%;
}
.tan-indepth.is-dismissed { display: none; }
.tan-indepth__shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #0B1510;
  color: #fff;
  box-shadow: 0 18px 40px rgba(10, 37, 24, 0.28);
}
@media (min-width: 900px) {
  .tan-indepth__shell { grid-template-columns: 1.15fr 0.95fr; }
}
.tan-indepth__glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.tan-indepth__glow--a {
  top: -8rem; right: -6rem;
  background: #144531;
  opacity: 0.55;
}
.tan-indepth__glow--b {
  bottom: -8rem; left: -6rem;
  background: #1e3a8a;
  opacity: 0.35;
}
.tan-indepth__left,
.tan-indepth__right {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.35rem 1.6rem;
}
@media (min-width: 900px) {
  .tan-indepth__left,
  .tan-indepth__right { padding: 2.1rem 2rem; }
}
.tan-indepth__right {
  background: rgba(10, 38, 26, 0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .tan-indepth__right {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,0.1);
  }
}
.tan-indepth__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
}
.tan-indepth__lock {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(20, 69, 49, 0.55);
  border: 1px solid rgba(20, 69, 49, 0.9);
}
.tan-indepth__lock svg { width: 0.85rem; height: 0.85rem; }
/* Tailwind sets svg{display:block} — without width/height attrs SVGs expand to full column */
.tan-indepth__shell svg {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  max-width: 1.25rem;
  max-height: 1.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}
.tan-indepth__lock svg {
  width: 0.85rem;
  height: 0.85rem;
  max-width: 0.85rem;
  max-height: 0.85rem;
}
.tan-indepth__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.tan-indepth__tag {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.14);
  color: #F3C942;
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.tan-indepth__tag--topic {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  color: #e5e7eb;
  border-color: rgba(255,255,255,0.12);
}
.tan-indepth__title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.tan-indepth__lead {
  margin: 0 0 1.15rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
}
.tan-indepth__points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-bottom: 0.35rem;
}
.tan-indepth__point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.tan-indepth__num {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #F3C942;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
}
.tan-indepth__point p {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #e2e8f0;
}
.tan-indepth__em,
.tan-indepth__hl {
  font-style: italic;
  font-weight: 600;
}
.tan-indepth__hl--case {
  color: #F3C942;
}
.tan-indepth__hl--article {
  color: #7dd3fc;
}
.tan-indepth__em {
  color: #f9a8d4;
}
.tan-indepth__included {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.tan-indepth__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.22), transparent);
}
.tan-indepth__feats {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
}
.tan-indepth__feat {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.45rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
}
.tan-indepth__feat:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.tan-indepth__feat-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tan-indepth__feat-icon svg { width: 1rem; height: 1rem; max-width: 1rem; max-height: 1rem; }
.tan-indepth__feat-icon--search { color: #D4AF37; background: rgba(212,175,55,0.12); }
.tan-indepth__feat-icon--lang { color: #38BDF8; background: rgba(56,189,248,0.12); }
.tan-indepth__feat-icon--link { color: #2DD4BF; background: rgba(45,212,191,0.12); }
.tan-indepth__feat-icon--mains { color: #F472B6; background: rgba(244,114,182,0.12); }
.tan-indepth__feat-icon--prelims { color: #A3E635; background: rgba(163,230,53,0.12); }
.tan-indepth__feat-icon--scales { color: #A78BFA; background: rgba(167,139,250,0.12); }
.tan-indepth__feat-icon--book { color: #FB923C; background: rgba(251,146,60,0.12); }
.tan-indepth__feat strong {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
}
.tan-indepth__feat span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #94a3b8;
}
.tan-indepth__cta-wrap { margin-top: auto; }
.tan-indepth__cta-note {
  margin: 0 0 0.7rem;
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
}
.tan-indepth__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.95rem 1.1rem;
  border-radius: 0.8rem;
  background: #D4AF37;
  color: #0B1510;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.tan-indepth__cta svg { width: 1.15rem; height: 1.15rem; max-width: 1.15rem; max-height: 1.15rem; }
.tan-indepth__cta:hover {
  background: #F3C942;
  color: #0B1510;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.tan-indepth__signup {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}
.tan-indepth__signup a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 700;
}
.tan-indepth__signup a:hover { text-decoration: underline; }
.tan-indepth__dismiss {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.45rem;
  border: 0;
  background: transparent;
  color: #64748b;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tan-indepth__dismiss:hover { color: #94a3b8; }

/* Prev / Next under teaser */
.tan-story-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.35rem 0 1.5rem;
}
.tan-story-nav__btn {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tan-story-nav__btn:hover:not(.is-disabled) {
  border-color: #C9A84C;
  box-shadow: 0 6px 16px rgba(10,37,24,0.06);
}
.tan-story-nav__btn--next { text-align: right; align-items: flex-end; }
.tan-story-nav__btn.is-disabled {
  opacity: 0.45;
  cursor: default;
  background: #f8fafc;
}
.tan-story-nav__dir {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0A2518;
}
.tan-story-nav__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: center;
}
.tan-story-nav__btn--next .tan-story-nav__meta {
  justify-content: flex-end;
}
.tan-story-nav__cat {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A2518;
  background: #eef3f0;
  border: 1px solid #d4ddd8;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}
.tan-story-nav__views {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
}
.tan-story-nav__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tan-story-nav__btn.is-disabled .tan-story-nav__title {
  font-weight: 500;
  color: #9ca3af;
}

.tan-digest__more {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  border: 1px solid #e5e7eb;
  background: #faf9f6;
  color: #0A2518;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.tan-digest__more:hover { border-color: #C9A84C; background: #fff; }
.tan-digest__more:disabled { opacity: 0.6; cursor: wait; }
