/* ========================================================
   E-MAGAZINE KINH TẾ: HTX HỒNG XUÂN
   Design System: Business Editorial / Luxury Agricultural Economy
   Typography: Encode Sans for Titles & Section Headlines
   ======================================================== */

:root {
  /* Color Palette */
  --bg-deep-forest: #081a11;
  --bg-forest-card: #0f2c1d;
  --bg-forest-lighter: #163d29;
  --bg-olive-tint: #1c4a32;
  
  --bg-page-cream: #faf7f2;
  --bg-card-cream: #ffffff;
  --bg-card-cream-tint: #f4eee3;
  --bg-quote-tint: #edf4ef;

  --text-primary-dark: #122019;
  --text-body-dark: #26382f;
  --text-muted-dark: #4a5e54;

  --text-light-headline: #ffffff;
  --text-light-body: #e8f2ec;
  --text-light-muted: #b0c7ba;

  /* Gold & Star Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5e08b;
  --gold-dark: #a67c1e;
  --gold-gradient: linear-gradient(135deg, #fae8a8 0%, #d4af37 50%, #b08518 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-glow-strong: rgba(212, 175, 55, 0.6);

  /* Emerald / Forest Accents */
  --emerald-primary: #2d6a4f;
  --emerald-light: #40916c;
  --emerald-glow: rgba(45, 106, 79, 0.25);

  /* Typography */
  --font-title: 'Encode Sans', sans-serif;
  --font-serif-editorial: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing & Spacing (Min 18px body font) */
  --font-size-base: 18.5px;
  --line-height-base: 1.85;
  --container-max-width: 920px;
  --wide-container-max-width: 1220px;
  --feature-image-max-width: 1320px;

  /* Borders & Shadows */
  --border-subtle-light: rgba(18, 32, 25, 0.08);
  --border-gold-subtle: rgba(212, 175, 55, 0.4);
  --border-gold-solid: #d4af37;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-elevation: 0 20px 45px rgba(8, 26, 17, 0.12);
  --shadow-dark-card: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.editorial-body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-body-dark);
  background-color: var(--bg-page-cream);
  overflow-x: hidden;
}

/* Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--gold-primary);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* ========================================================
   COVER / HEADER HERO (Business Luxury Editorial)
   ======================================================== */
.magazine-cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 1.5rem 4rem;
  background: radial-gradient(circle at 50% 20%, #153a27 0%, var(--bg-deep-forest) 75%);
  color: var(--text-light-headline);
  text-align: center;
  overflow: hidden;
}

.cover-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.7;
}

.cover-ambient-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(45, 106, 79, 0.2) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.cover-inner-container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Meta Kicker Badge */
.cover-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.cover-meta-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.cover-meta-badge .badge-text {
  font-family: var(--font-title);
  font-size: 0.95rem; /* ~18px visual scale */
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* Main Title in Encode Sans */
.main-editorial-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  font-family: var(--font-title);
}

.title-sub-label {
  font-family: var(--font-title);
  font-size: 1.15rem; /* >= 18px */
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #a4c2b2;
  text-transform: uppercase;
}

.title-highlight {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #ffffff 0%, #f4eee3 60%, #e2d2ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.title-coop-name {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

/* Title Ornament / 5 Stars */
.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
  margin-bottom: 2.2rem;
}

.ornament-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}

.ornament-star-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-primary);
}

.ornament-star-group .star-icon {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.ornament-star-group .star-center {
  width: 30px;
  height: 30px;
  transform: translateY(-2px);
  color: var(--gold-light);
  filter: drop-shadow(0 0 12px var(--gold-primary));
}

/* Sapo Card */
.editorial-sapo-card {
  position: relative;
  max-width: 900px;
  padding: 2.4rem 3rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 44, 29, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-dark-card);
  margin-bottom: 2.5rem;
}

.sapo-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.editorial-sapo {
  font-family: var(--font-serif-editorial);
  font-size: clamp(1.22rem, 1.9vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.95;
  color: #f7f3ea;
  text-align: center;
}

/* Transformation Pipeline Flow */
.sapo-flow-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 980px;
  margin-bottom: 2.5rem;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.pipeline-step .step-num {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  padding: 2px 8px;
  border-radius: 999px;
}

.pipeline-step .step-label {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  color: #eaf3ed;
}

.pipeline-arrow {
  color: var(--gold-primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.pipeline-step.gold-step {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 18px var(--gold-glow);
}

.pipeline-step.gold-step .step-label {
  color: #fff;
  font-weight: 800;
}

/* Scroll Cue */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.scroll-text {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-light-muted);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.7);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--gold-primary);
  animation: scrollBounce 2s infinite ease-in-out;
}

@keyframes scrollBounce {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ========================================================
   SECTION HEADERS & CONTAINERS (Encode Sans Headlines)
   ======================================================== */
.magazine-main-flow {
  width: 100%;
}

.editorial-section {
  padding: 5.5rem 1.5rem;
  position: relative;
}

.part-1-section {
  background-color: var(--bg-page-cream);
}

.part-2-section {
  background: linear-gradient(180deg, #f3eee4 0%, #faf7f2 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.editorial-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Section Lead Banner */
.section-lead-banner {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 3.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 0.45rem 1.5rem;
  border-radius: 999px;
  background: var(--bg-forest-lighter);
  color: #fff;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 12px rgba(8, 26, 17, 0.18);
}

.section-badge.gold-badge-bg {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* Section Headline in Encode Sans */
.section-headline {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 900;
  color: var(--text-primary-dark);
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.section-headline-decor {
  width: 90px;
  height: 5px;
  border-radius: 3px;
  background: var(--emerald-primary);
  margin: 0 auto;
}

.section-headline-decor.gold-decor {
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Editorial Typography & Paragraphs */
.editorial-prose-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.editorial-paragraph {
  font-size: 1.15rem; /* 18.4px */
  line-height: 1.95;
  color: var(--text-body-dark);
  text-align: justify;
}

/* Dropcap for section openings */
.editorial-paragraph.with-dropcap .dropcap {
  float: left;
  font-family: var(--font-title);
  font-size: 4.8rem;
  line-height: 0.8;
  padding-top: 6px;
  padding-right: 14px;
  padding-bottom: 2px;
  color: var(--emerald-primary);
  font-weight: 900;
}

.editorial-paragraph.with-dropcap .dropcap.gold-dropcap {
  color: var(--gold-dark);
}

.editorial-paragraph.highlight-box {
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-quote-tint);
  border-left: 6px solid var(--emerald-primary);
  font-style: italic;
  font-family: var(--font-serif-editorial);
  font-size: 1.3rem; /* > 18px */
  line-height: 1.9;
  color: var(--bg-forest-card);
  box-shadow: var(--shadow-soft);
}

.editorial-paragraph.highlight-box.gold-border-box {
  background: linear-gradient(135deg, #fdfbf6 0%, #f6efe2 100%);
  border-left: 6px solid var(--gold-primary);
  color: #3b3014;
  font-style: normal;
  font-family: var(--font-title);
  font-weight: 700;
}

.editorial-paragraph.conclusion-paragraph {
  font-size: 1.22rem; /* > 18px */
  font-weight: 600;
  line-height: 1.95;
  color: #152c20;
}

/* Summary Quote in Part 1 */
.editorial-summary-quote {
  margin: 2.5rem 0 1rem;
  padding: 2.4rem 2.8rem;
  background: linear-gradient(145deg, #102e20 0%, #091c13 100%);
  border-radius: var(--radius-md);
  border-left: 6px solid var(--gold-primary);
  box-shadow: var(--shadow-elevation);
}

.editorial-summary-quote .quote-body {
  font-family: var(--font-serif-editorial);
  font-size: 1.3rem; /* > 18px */
  font-style: italic;
  line-height: 1.95;
  color: #f7f3ea;
}

/* ========================================================
   FEATURE EDITORIAL IMAGES
   ======================================================== */
.editorial-feature-image-wrapper {
  max-width: var(--feature-image-max-width);
  margin: 3.8rem auto;
  padding: 0 1rem;
}

.feature-image-frame {
  position: relative;
  width: 100%;
  height: clamp(340px, 50vw, 560px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevation);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-image-frame:hover .feature-image {
  transform: scale(1.03);
}

.image-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 26, 17, 0.75) 100%);
  pointer-events: none;
}

.feature-caption {
  margin-top: 1.2rem;
  padding: 0 0.5rem;
}

.caption-content {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.caption-tag {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  background-color: var(--emerald-primary);
  color: #fff;
  text-transform: uppercase;
}

.caption-tag.gold-tag {
  background-color: var(--gold-dark);
}

.caption-text {
  font-size: 1.125rem; /* 18px */
  color: var(--text-muted-dark);
  font-style: italic;
  line-height: 1.7;
}

/* ========================================================
   INFOGRAPHIC 1: TIMELINE SVG TƯƠNG TÁC
   (ALL TEXT >= 18PX, BOLD, HIGH CONTRAST)
   ======================================================== */
.editorial-infographic-wrapper {
  max-width: var(--wide-container-max-width);
  margin: 4.8rem auto;
  padding: 0 1rem;
}

.infographic-card {
  background: radial-gradient(circle at 50% 0%, #153926 0%, var(--bg-forest-card) 60%, #0a1f15 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.8rem 2.8rem;
  color: var(--text-light-body);
  box-shadow: var(--shadow-dark-card);
  position: relative;
  overflow: hidden;
}

.infographic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.infographic-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3.2rem;
}

/* Infographic Kicker >= 18px, Bold */
.info-kicker {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.info-kicker.gold-kicker {
  color: var(--gold-primary);
}

/* Infographic Title in Encode Sans */
.info-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.info-subtitle {
  font-size: 1.2rem; /* > 18px */
  font-weight: 600;
  color: var(--text-light-muted);
  line-height: 1.75;
}

/* Triplet Banner */
.metric-triplet-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.8rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  margin-bottom: 3.8rem;
}

.metric-triplet-item {
  text-align: center;
  flex: 1;
  min-width: 220px;
}

.metric-big-number {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.metric-big-number .gold-text {
  color: var(--gold-primary);
}

.metric-unit {
  font-family: var(--font-title);
  font-size: 1.15rem; /* 18.4px */
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.metric-sub {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--text-light-muted);
}

.metric-divider-arrow {
  color: var(--gold-primary);
  font-size: 1.8rem;
  font-weight: 900;
  opacity: 0.8;
}

/* Transformation Flow Vector Strip (Text >= 18px, Bold) */
.transformation-flow-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 135px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tf-step:hover {
  transform: translateY(-4px);
}

.tf-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.tf-icon-box svg {
  width: 28px;
  height: 28px;
}

.tf-name {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}

.tf-connector {
  color: var(--gold-primary);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.tf-connector svg {
  width: 20px;
  height: 20px;
}

.tf-step.highlight-step .tf-icon-box {
  background: rgba(45, 106, 79, 0.5);
  border-color: var(--emerald-light);
  color: #ffffff;
}

.tf-step.gold-glow-step .tf-icon-box {
  background: var(--gold-gradient);
  border-color: #fff;
  color: #122019;
  box-shadow: 0 0 18px var(--gold-primary);
}

/* Timeline Interactive Grid (All text >= 18px, bold) */
.timeline-interactive-grid {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 3.5rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
}

.timeline-spine-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(212, 175, 55, 0.4) 100%);
  border-radius: 2px;
  z-index: 1;
}

.timeline-card-node {
  position: relative;
  width: calc(50% - 45px);
  margin-bottom: 2.8rem;
  transition: transform 0.3s ease;
  z-index: 2;
}

.timeline-card-node::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid #081a11;
  box-shadow: 0 0 12px var(--gold-primary);
  z-index: 3;
}

.timeline-card-node:hover {
  transform: translateY(-3px);
}

.timeline-card-node.left-node {
  align-self: flex-start;
  margin-right: auto;
  margin-left: 0;
  text-align: right;
}

.timeline-card-node.left-node::after {
  right: -54px;
}

.timeline-card-node.right-node {
  align-self: flex-end;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}

.timeline-card-node.right-node::after {
  left: -54px;
}

.node-year-badge {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: var(--bg-olive-tint);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  font-family: var(--font-title);
  font-size: 1.15rem; /* >= 18px */
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.node-year-badge.gold-badge {
  background: var(--gold-gradient);
  color: #122019;
  box-shadow: 0 0 15px var(--gold-glow);
}

.node-content-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.8rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  text-align: left;
}

.timeline-card-node:hover .node-content-box {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
}

.node-content-box.gold-border {
  border: 1.5px solid var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.node-tag {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--emerald-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.node-tag.gold-tag {
  color: var(--gold-light);
}

.node-title {
  font-family: var(--font-title);
  font-size: 1.35rem; /* ~21.6px */
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.node-desc {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: 1.75;
  color: #dbe9df;
}

.timeline-bottom-note {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
}

.timeline-bottom-note .note-icon {
  width: 42px;
  height: 42px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.timeline-bottom-note .note-text {
  font-size: 1.15rem; /* 18.4px */
  font-weight: 600;
  line-height: 1.8;
  color: #ffffff;
}

.timeline-bottom-note .note-text strong {
  font-family: var(--font-title);
  color: var(--gold-light);
  font-weight: 900;
}

/* ========================================================
   INFOGRAPHIC 2: HỆ SINH THÁI CHẤT LƯỢNG HTX HỒNG XUÂN
   (ALL TEXT >= 18PX, BOLD, HIGH CONTRAST)
   ======================================================== */
.infographic-card.luxury-theme {
  background: radial-gradient(circle at 50% 10%, #173f2a 0%, #0e291b 60%, #07170e 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
}

/* Central OCOP 5-Star Hero Box */
.central-ocop-hero-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.8rem;
  padding: 2.8rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.central-seal-emblem {
  position: relative;
  width: 290px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-glow-rings {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.5);
  animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.seal-inner-circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, #1d4d34 0%, #0c2317 100%);
  border: 3.5px solid var(--gold-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 40px var(--gold-glow);
  padding: 1.2rem;
}

.seal-top-text {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.seal-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.seal-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.seal-star-gold {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

.seal-star-gold.seal-star-main {
  width: 26px;
  height: 26px;
  fill: var(--gold-light);
  filter: drop-shadow(0 0 8px var(--gold-primary));
}

.seal-product-label {
  font-family: var(--font-title);
  font-size: 1.25rem; /* 20px */
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.seal-sub-caption {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.central-stats-summary {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  min-width: 300px;
}

.stat-badge-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-badge-card:hover {
  transform: translateX(4px);
  border-color: rgba(212, 175, 55, 0.6);
}

.stat-badge-card.highlight-gold-card {
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--gold-primary);
}

.stat-badge-card .stat-big {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.stat-badge-card.highlight-gold-card .stat-big {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-badge-card .stat-name {
  font-family: var(--font-title);
  font-size: 1.22rem; /* > 18px */
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.3rem;
}

.stat-badge-card .stat-desc {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--text-light-muted);
}

/* Portfolio Cards Grid */
.ocop-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.8rem;
}

.portfolio-item-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}

.portfolio-item-card.gold-leader {
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.portfolio-star-badge {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.15em;
}

.portfolio-star-badge.silver-star {
  color: #f5e08b;
}

.portfolio-title {
  font-family: var(--font-title);
  font-size: 1.5rem; /* > 18px */
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.portfolio-rank {
  font-family: var(--font-title);
  font-size: 1.15rem; /* 18.4px */
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.portfolio-text {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: 1.7;
  color: #dbe9df;
}

/* Accolades Section (Text >= 18px, Bold) */
.accolades-section {
  margin-bottom: 3.8rem;
  text-align: center;
}

.accolade-kicker {
  font-family: var(--font-title);
  font-size: 1.15rem; /* 18.4px */
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.accolade-pill {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.25);
  text-align: left;
}

.accolade-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.accolade-icon.gold-icon {
  background: var(--gold-gradient);
  color: #122019;
}

.accolade-icon svg {
  width: 24px;
  height: 24px;
}

.accolade-info {
  display: flex;
  flex-direction: column;
}

.accolade-title {
  font-family: var(--font-title);
  font-size: 1.18rem; /* > 18px */
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
}

.accolade-org {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--text-light-muted);
  margin-top: 0.3rem;
}

/* Value Chain & Processing Stream Diagram (Text >= 18px, Bold) */
.value-chain-diagram-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  margin-bottom: 3.8rem;
}

.vc-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.vc-kicker {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.vc-title {
  font-family: var(--font-title);
  font-size: 1.6rem; /* > 18px */
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.vc-flow-canvas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vc-node-box {
  flex: 1;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: center;
}

.vc-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-forest-lighter);
  color: #fff;
  margin-bottom: 0.9rem;
}

.vc-node-title {
  font-family: var(--font-title);
  font-size: 1.3rem; /* ~21px */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.vc-node-desc {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: 1.7;
  color: #dbe9df;
}

.vc-split-arrows {
  width: 60px;
  height: 40px;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-svg-branch {
  width: 100%;
  height: 100%;
}

.vc-dual-lines {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1.3;
  min-width: 280px;
}

.vc-subline-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  text-align: left;
}

.subline-icon {
  font-size: 2.2rem;
}

.subline-info {
  display: flex;
  flex-direction: column;
}

.subline-title {
  font-family: var(--font-title);
  font-size: 1.22rem; /* > 18px */
  font-weight: 800;
  color: #ffffff;
}

.subline-desc {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: #dbe9df;
}

.vc-merge-arrow {
  width: 40px;
  height: 40px;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-svg-merge {
  width: 36px;
  height: 36px;
}

.vc-node-box.node-outcome {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  text-align: left;
}

.vc-node-box.node-outcome .vc-node-desc {
  color: #ffffff;
  font-weight: 600;
}

/* Strategic Goal Box */
.strategic-target-card {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(45, 106, 79, 0.25) 100%);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.target-flag-icon {
  font-size: 2.8rem;
}

.target-details {
  display: flex;
  flex-direction: column;
}

.target-label {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.target-statement {
  font-family: var(--font-title);
  font-size: 1.45rem; /* > 18px */
  font-weight: 800;
  color: #ffffff;
  line-height: 1.45;
}

/* ========================================================
   EDITORIAL PULL-QUOTES
   ======================================================== */
.editorial-pull-quote-wrapper {
  margin: 3.8rem 0;
}

.editorial-pull-quote {
  position: relative;
  padding: 3.2rem 3.8rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #102a1d 0%, #091a11 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-dark-card);
  text-align: center;
}

.editorial-pull-quote .quote-symbol {
  font-family: var(--font-title);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.4;
  margin-bottom: -1.8rem;
}

.editorial-pull-quote .quote-text {
  font-family: var(--font-serif-editorial);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.65;
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.editorial-pull-quote .quote-author-line {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.editorial-pull-quote .author-dash {
  color: var(--gold-primary);
  margin-right: 0.4rem;
}

/* ========================================================
   CLOSING EDITORIAL BANNER & SUMMARY
   ======================================================== */
.closing-editorial-banner {
  position: relative;
  padding: 6.5rem 1.5rem;
  background: radial-gradient(circle at 50% 30%, #153e2a 0%, var(--bg-deep-forest) 80%);
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.closing-container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.closing-chain-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 4.8rem;
}

.chain-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 190px;
  text-align: center;
}

.chain-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.chain-node:hover .chain-icon-circle {
  transform: scale(1.08);
  border-color: var(--gold-primary);
}

.chain-icon-circle svg {
  width: 32px;
  height: 32px;
}

.chain-icon-circle.gold-circle {
  background: var(--gold-gradient);
  color: #122019;
  border-color: #ffffff;
  box-shadow: 0 0 22px var(--gold-primary);
}

.chain-title {
  font-family: var(--font-title);
  font-size: 1.18rem; /* > 18px */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.chain-sub {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--text-light-muted);
}

.chain-arrow {
  color: var(--gold-primary);
  font-size: 1.8rem;
  font-weight: 900;
  opacity: 0.75;
}

.closing-quote-statement {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.2rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 44, 29, 0.65);
  border: 1.5px solid var(--gold-primary);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.closing-star-row {
  font-size: 1.8rem;
  color: var(--gold-primary);
  letter-spacing: 0.25em;
  margin-bottom: 1.4rem;
}

.closing-main-text {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 2.2rem;
}

.closing-signoff {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding-top: 1.6rem;
}

.signoff-label {
  font-family: var(--font-title);
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.signoff-sub {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--text-light-muted);
}

/* ========================================================
   FOOTER
   ======================================================== */
.magazine-footer {
  background-color: #05120c;
  color: #8fa89b;
  padding: 3.2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  max-width: 850px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ffffff;
}

.footer-tagline {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: #a4c2b2;
}

.footer-decor-line {
  width: 50px;
  height: 3px;
  background: var(--gold-primary);
  margin: 0 auto 1.6rem;
  opacity: 0.6;
}

.footer-copyright {
  font-size: 1.125rem; /* 18px */
  line-height: 1.7;
}

/* ========================================================
   SCROLL REVEAL ANIMATIONS (Fail-safe, high performance)
   ======================================================== */
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-animated .reveal-on-scroll:not(.is-visible) {
  opacity: 0.15;
  transform: translateY(20px);
}

.js-animated .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   RESPONSIVE DESIGN (Desktop, Tablet, Mobile)
   ======================================================== */

/* --- TABLET & MEDIUM SCREENS (max-width: 992px) --- */
@media (max-width: 992px) {
  .editorial-paragraph {
    font-size: 1.125rem; /* 18px */
    text-align: left;
  }

  .timeline-interactive-grid {
    max-width: 100%;
  }

  .timeline-spine-line {
    left: 24px;
    transform: none;
  }

  .timeline-card-node {
    width: calc(100% - 65px) !important;
    margin-left: 65px !important;
    margin-right: 0 !important;
    text-align: left !important;
    align-self: flex-start !important;
  }

  .timeline-card-node::after {
    left: -49px !important;
    right: auto !important;
  }

  .timeline-card-node.left-node .node-desc {
    text-align: left !important;
  }

  .vc-split-arrows, .vc-merge-arrow {
    display: none;
  }

  .vc-flow-canvas {
    flex-direction: column;
    align-items: stretch;
  }

  .central-ocop-hero-box {
    flex-direction: column;
    padding: 2.2rem 1.8rem;
    gap: 2.2rem;
  }

  .editorial-sapo-card {
    padding: 2rem 1.8rem;
  }

  .infographic-card {
    padding: 2.8rem 1.8rem;
  }

  .editorial-pull-quote {
    padding: 2.6rem 2rem;
  }

  .closing-quote-statement {
    padding: 2.4rem 1.8rem;
  }

  .chain-arrow {
    display: none;
  }
}

/* --- MOBILE LANDSCAPE & SMALL TABLET (max-width: 768px) --- */
@media (max-width: 768px) {
  .magazine-cover {
    padding: 4.5rem 1.2rem 3rem;
  }

  .cover-meta-badge {
    max-width: 100%;
    padding: 0.45rem 1rem;
  }

  .cover-meta-badge .badge-text {
    font-size: 0.88rem;
    white-space: normal;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }

  .title-highlight {
    font-size: clamp(1.75rem, 5.5vw, 2.4rem);
  }

  .title-coop-name {
    font-size: clamp(1.45rem, 4.5vw, 2rem);
  }

  .title-ornament {
    max-width: 320px;
    gap: 1rem;
    margin-bottom: 1.8rem;
  }

  .editorial-section {
    padding: 4rem 1.2rem;
  }

  .editorial-feature-image-wrapper {
    margin: 2.5rem auto;
    padding: 0;
  }

  .feature-image-frame {
    height: 280px;
    border-radius: var(--radius-md);
  }

  .metric-triplet-banner {
    flex-direction: column;
    padding: 1.8rem 1.2rem;
    gap: 1.4rem;
  }

  .metric-divider-arrow {
    transform: rotate(90deg);
    margin: -0.3rem 0;
  }

  .transformation-flow-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.2rem 0.8rem;
    padding: 1.5rem 1rem;
  }

  .tf-connector {
    display: none;
  }

  .ocop-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .accolades-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .closing-chain-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
    margin-bottom: 3.5rem;
  }

  .chain-node {
    width: 100%;
  }
}

/* --- MOBILE PHONES (max-width: 540px) --- */
@media (max-width: 540px) {
  :root {
    --font-size-base: 18px;
  }

  .magazine-cover {
    padding: 3.5rem 1rem 2.5rem;
  }

  .cover-meta-badge {
    border-radius: 12px;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .cover-meta-badge .badge-text {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .main-editorial-title {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .title-sub-label {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .title-highlight {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .title-coop-name {
    font-size: 1.38rem;
    line-height: 1.3;
  }

  .editorial-sapo-card {
    padding: 1.5rem 1.1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.8rem;
  }

  .editorial-sapo {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .sapo-flow-pipeline {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .pipeline-step {
    width: 100%;
    justify-content: flex-start;
    padding: 0.55rem 0.9rem;
  }

  .pipeline-step .step-label {
    font-size: 1.05rem;
  }

  .pipeline-arrow {
    display: none;
  }

  .editorial-section {
    padding: 3.2rem 1rem;
  }

  .section-lead-banner {
    margin-bottom: 2.2rem;
  }

  .section-badge {
    font-size: 0.92rem;
    padding: 0.35rem 1rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
  }

  .section-headline {
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .editorial-prose-block {
    gap: 1.5rem;
  }

  .editorial-paragraph {
    font-size: 1.125rem; /* 18px */
    line-height: 1.85;
    text-align: left;
  }

  .editorial-paragraph.with-dropcap .dropcap {
    font-size: 3.6rem;
    padding-right: 8px;
    padding-top: 2px;
  }

  .editorial-paragraph.highlight-box {
    padding: 1.4rem 1.2rem;
    font-size: 1.18rem;
    line-height: 1.8;
  }

  .editorial-summary-quote {
    padding: 1.5rem 1.2rem;
    margin: 2rem 0 0.8rem;
  }

  .editorial-summary-quote .quote-body {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .feature-image-frame {
    height: 220px;
  }

  /* Infographics on small mobile */
  .editorial-infographic-wrapper {
    margin: 3rem auto;
    padding: 0;
  }

  .infographic-card {
    padding: 1.8rem 1rem;
    border-radius: var(--radius-md);
  }

  .infographic-header {
    margin-bottom: 2rem;
  }

  .info-kicker {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .info-title {
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 0.8rem;
  }

  .info-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
  }

  .metric-big-number {
    font-size: 2.1rem;
  }

  .metric-unit {
    font-size: 1.05rem;
  }

  .metric-sub {
    font-size: 0.95rem;
  }

  .transformation-flow-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding: 1rem 0.6rem;
    margin-bottom: 2.5rem;
  }

  .tf-step {
    gap: 0.5rem;
  }

  .tf-icon-box {
    width: 46px;
    height: 46px;
  }

  .tf-icon-box svg {
    width: 22px;
    height: 22px;
  }

  .tf-name {
    font-size: 0.95rem;
  }

  /* Timeline Mobile */
  .timeline-interactive-grid {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }

  .timeline-spine-line {
    left: 14px;
    width: 3px;
  }

  .timeline-card-node {
    width: calc(100% - 38px) !important;
    margin-left: 38px !important;
    margin-bottom: 1.8rem;
  }

  .timeline-card-node::after {
    left: -30px !important;
    top: 18px;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .node-year-badge {
    font-size: 0.95rem;
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.6rem;
  }

  .node-content-box {
    padding: 1.2rem 1rem;
    border-radius: var(--radius-sm);
  }

  .node-tag {
    font-size: 0.95rem;
  }

  .node-title {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
  }

  .node-desc {
    font-size: 1.125rem; /* 18px */
    line-height: 1.65;
  }

  .timeline-bottom-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1rem;
    gap: 0.7rem;
  }

  .timeline-bottom-note .note-icon {
    width: 32px;
    height: 32px;
  }

  .timeline-bottom-note .note-text {
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
  }

  /* Infographic 2 Mobile */
  .central-ocop-hero-box {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .central-seal-emblem {
    width: 220px;
    height: 220px;
  }

  .seal-inner-circle {
    width: 204px;
    height: 204px;
    padding: 0.6rem;
    border-width: 2.5px;
  }

  .seal-top-text {
    font-size: 0.9rem;
  }

  .seal-title {
    font-size: 2.3rem;
    margin-bottom: 0.2rem;
  }

  .seal-stars {
    gap: 0.15rem;
    margin-bottom: 0.25rem;
  }

  .seal-star-gold {
    width: 15px;
    height: 15px;
  }

  .seal-star-gold.seal-star-main {
    width: 19px;
    height: 19px;
  }

  .seal-product-label {
    font-size: 1.05rem;
  }

  .central-stats-summary {
    min-width: 100%;
    gap: 0.8rem;
  }

  .stat-badge-card {
    padding: 1rem 1.1rem;
  }

  .stat-badge-card .stat-big {
    font-size: 2rem;
  }

  .stat-badge-card .stat-name {
    font-size: 1.125rem;
  }

  .stat-badge-card .stat-desc {
    font-size: 0.95rem;
  }

  .portfolio-item-card {
    padding: 1.5rem 1.1rem;
  }

  .portfolio-star-badge {
    font-size: 1.35rem;
  }

  .portfolio-title {
    font-size: 1.35rem;
  }

  .portfolio-rank {
    font-size: 1.05rem;
  }

  .portfolio-text {
    font-size: 1.125rem;
    line-height: 1.65;
  }

  .accolade-kicker {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .accolade-pill {
    padding: 1rem 1.1rem;
    gap: 0.9rem;
  }

  .accolade-icon {
    width: 40px;
    height: 40px;
  }

  .accolade-icon svg {
    width: 20px;
    height: 20px;
  }

  .accolade-title {
    font-size: 1.125rem;
  }

  .accolade-org {
    font-size: 0.95rem;
  }

  .value-chain-diagram-box {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .vc-title {
    font-size: 1.3rem;
  }

  .vc-node-box {
    min-width: 100%;
    padding: 1.3rem 1rem;
  }

  .vc-badge {
    font-size: 0.95rem;
  }

  .vc-node-title {
    font-size: 1.15rem;
  }

  .vc-node-desc {
    font-size: 1.125rem;
    line-height: 1.65;
  }

  .vc-dual-lines {
    min-width: 100%;
    gap: 0.8rem;
  }

  .vc-subline-card {
    padding: 0.9rem 1rem;
    gap: 0.8rem;
  }

  .subline-icon {
    font-size: 1.8rem;
  }

  .subline-title {
    font-size: 1.125rem;
  }

  .subline-desc {
    font-size: 0.95rem;
  }

  .strategic-target-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem 1.1rem;
    gap: 0.7rem;
  }

  .target-flag-icon {
    font-size: 2.2rem;
  }

  .target-label {
    font-size: 0.95rem;
  }

  .target-statement {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  /* Pull Quote Mobile */
  .editorial-pull-quote-wrapper {
    margin: 2.5rem 0;
  }

  .editorial-pull-quote {
    padding: 1.8rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .editorial-pull-quote .quote-symbol {
    font-size: 3.5rem;
    margin-bottom: -1rem;
  }

  .editorial-pull-quote .quote-text {
    font-size: 1.35rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
  }

  .editorial-pull-quote .quote-author-line {
    font-size: 0.95rem;
  }

  /* Closing Banner Mobile */
  .closing-editorial-banner {
    padding: 4rem 1rem 3rem;
  }

  .closing-chain-flow {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 0.8rem;
    margin-bottom: 2.8rem;
  }

  .chain-icon-circle {
    width: 56px;
    height: 56px;
    margin-bottom: 0.6rem;
  }

  .chain-icon-circle svg {
    width: 26px;
    height: 26px;
  }

  .chain-title {
    font-size: 1.05rem;
  }

  .chain-sub {
    font-size: 0.9rem;
  }

  .closing-quote-statement {
    padding: 1.8rem 1.1rem;
    border-radius: var(--radius-md);
  }

  .closing-star-row {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .closing-main-text {
    font-size: 1.35rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
  }

  .signoff-label {
    font-size: 0.95rem;
  }

  .signoff-sub {
    font-size: 0.9rem;
  }

  .magazine-footer {
    padding: 2.5rem 1rem;
  }
}

