/* ==========================================================================
   THE BESTOWALS - ABOUT US PAGE STYLESHEET
   Accurate visual reproduction of reference design
   ========================================================================== */

/* --- Base & Custom Tokens for About Page --- */
:root {
  --font-script: 'Caveat', cursive;
  --about-cream-bg: #faf5ee;
  --about-card-bg: #f8f3ec;
  --about-border-subtle: #ebdcd0;
  --about-pill-green-bg: #edf3ea;
  --about-pill-green-border: #d4e0cf;
  --about-pill-green-text: #44563a;
  --about-accent-amber: #c87a26;
  --about-accent-amber-light: #fdf5ec;
}

/* ==========================================================================
   1. GLOBAL SHARED ABOUT UTILITIES
   ========================================================================== */
.about-page-wrapper {
  background-color: var(--about-cream-bg);
  color: var(--color-text-body);
  overflow-x: clip;
}

.about-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.about-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--about-pill-green-bg);
  color: var(--about-pill-green-text);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--about-pill-green-border);
  margin-bottom: 1.25rem;
}

.about-eyebrow-center {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.about-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.about-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.about-section-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 auto;
}

.accent-line-amber {
  width: 46px;
  height: 3px;
  background: var(--about-accent-amber);
  border-radius: 2px;
  margin: 1.25rem 0 1.75rem 0;
}

.accent-line-center {
  margin: 1.25rem auto 1.75rem auto;
}

/* ==========================================================================
   2. SECTION 1: ABOUT HERO (FULL BACKGROUND COMPOSITION)
   ========================================================================== */
.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 640px;
  background-color: var(--about-cream-bg);
  background-image: url('../assets/images/about/hero-bg.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}

.about-hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.about-hero-content {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}

.about-hero-eyebrow {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  color: #48593f;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: inline-block;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 3.8vw, 3.35rem);
  font-weight: 600;
  color: #1a1510;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.15rem;
}

.about-hero-lead {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 600;
  color: #221c17;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.about-hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.86rem, 0.98vw, 0.94rem);
  color: #695e50;
  line-height: 1.6;
  margin-bottom: 1.15rem;
}

.about-hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 2.3vw, 2.25rem);
  font-weight: 600;
  color: #374b2f;
  line-height: 1.25;
  margin-bottom: 1.85rem;
  letter-spacing: 0.01em;
}

/* 4 Feature Card Container */
.about-hero-features-card {
  background: rgba(254, 252, 248, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #ebdcd0;
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 16px rgba(34, 28, 23, 0.04);
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 4px 2px;
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  color: #48593f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: #48593f;
}

.hero-feature-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: #221c17;
  line-height: 1.2;
}

/* ==========================================================================
   3. SECTION 2: OUR JOURNEY TIMELINE
   ========================================================================== */
.about-journey-section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: var(--about-cream-bg);
}

.journey-timeline-desktop {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 0 10px;
}

/* Timeline Horizontal Connecting Bar */
.journey-timeline-desktop::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #d1dcce;
  z-index: 1;
}

.timeline-node {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.timeline-icon-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fbf8f3;
  border: 1.5px solid #bdd0b7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-green);
  box-shadow: 0 4px 12px rgba(72, 89, 63, 0.06);
  margin-bottom: 1.25rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.timeline-node:hover .timeline-icon-bubble {
  transform: translateY(-4px) scale(1.06);
  border-color: var(--color-primary-green);
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(72, 89, 63, 0.15);
}

.timeline-icon-bubble svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary-green);
}

.timeline-year {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-green);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.timeline-text {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Mobile Timeline (Hidden on Desktop by default) */
.journey-timeline-mobile {
  display: none;
}

/* ==========================================================================
   4. SECTION 3: WHY CHOOSE THE BESTOWALS
   ========================================================================== */
.about-why-section {
  padding: clamp(2.5rem, 4.5vw, 4.5rem) 0;
}

.why-choose-card {
  background: #f2f6ee;
  border: 1px solid #d8e4d4;
  border-radius: 22px;
  padding: clamp(2.25rem, 3.8vw, 3.25rem) clamp(1.75rem, 3.2vw, 3rem);
  box-shadow: 0 4px 20px rgba(59, 80, 51, 0.05);
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1.15fr 4fr;
  gap: clamp(1.5rem, 2.8vw, 2.75rem);
  align-items: center;
}

.why-choose-header {
  border-right: none;
  padding-right: 0;
}

.why-choose-title {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 700;
  color: #3b5033;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.why-choose-sub {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: #73695c;
  line-height: 1.5;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.why-feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-smooth);
}

.why-feature-col:hover {
  transform: translateY(-3px);
}

.why-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d4dfcc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b5033;
  margin-bottom: 0.95rem;
  box-shadow: 0 2px 8px rgba(72, 89, 63, 0.05);
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.why-feature-col:hover .why-icon-circle {
  border-color: #48593f;
  box-shadow: 0 4px 14px rgba(72, 89, 63, 0.12);
  transform: scale(1.05);
}

.why-icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: #3b5033;
}

.why-col-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e1914;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.why-col-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #73695c;
  line-height: 1.48;
}

/* ==========================================================================
   5. SECTION 4: BRAND STORY / EDITORIAL (FULL BACKGROUND CARD)
   ========================================================================== */
.about-story-section {
  padding: clamp(2.5rem, 4.5vw, 4.5rem) 0;
  position: relative;
}

.story-editorial-card {
  position: relative;
  background-color: var(--about-cream-bg);
  background-image: url('../assets/images/about/story-bg.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  border: 1px solid #ebdcd0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(34, 28, 23, 0.04);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 420px;
  padding: clamp(2.5rem, 4.5vw, 4rem) clamp(2rem, 4vw, 4.5rem);
}

.story-editorial-content {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.story-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  font-weight: 600;
  color: #1a1510;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.story-editorial-body {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  color: #4a443b;
  line-height: 1.68;
  margin-bottom: 0.85rem;
}

.story-script-quote {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 2.1vw, 2.15rem);
  font-weight: 600;
  color: #2e4a27;
  line-height: 1.3;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   6. SECTION 5: MEET THE TEAM
   ========================================================================== */
.about-team-section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: radial-gradient(circle at 10% 50%, rgba(232, 240, 228, 0.4), transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(232, 240, 228, 0.4), transparent 40%),
    var(--about-cream-bg);
}

/* Faint Botanical Corner Vines */
.team-bg-decoration {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 120px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

.team-bg-left {
  left: 0;
}

.team-bg-right {
  right: 0;
  transform: scaleX(-1);
}

.team-cards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

.team-card {
  background: var(--color-bg-card);
  border: 1px solid var(--about-border-subtle);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(34, 28, 23, 0.04);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(72, 89, 63, 0.12);
  border-color: rgba(72, 89, 63, 0.3);
}

.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f5ebe0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-info-wrap {
  padding: 1.25rem 1.15rem 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.team-role {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--about-accent-amber);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.team-bio {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}

.team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 0.5rem;
  border-top: 1px solid #f0e6dc;
  width: 100%;
}

.team-social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c8273;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.team-social-link:hover {
  color: var(--color-primary-green);
  transform: translateY(-2px);
}

.team-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   7. SECTION 6: BRAND IMPACT / STATS (FULL BACKGROUND COMPOSITION)
   ========================================================================== */
.about-impact-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: var(--about-cream-bg);
  background-image: url('../assets/images/about/impact-bg.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}

.about-impact-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.about-impact-content {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  position: relative;
}

.about-impact-eyebrow {
  font-family: var(--font-sub);
  font-size: 0.84rem;
  font-weight: 700;
  color: #2e4325;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: inline-block;
}

.about-impact-content .accent-line-amber {
  margin: 8px auto 26px auto;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2.25rem);
  width: 100%;
}

.impact-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.impact-icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e4325;
  margin-bottom: 0.75rem;
  transition: transform var(--transition-smooth);
}

.impact-stat-item:hover .impact-icon-circle {
  transform: scale(1.12);
}

.impact-icon-circle svg {
  width: 32px;
  height: 32px;
  stroke: #2e4325;
}

.impact-number {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 700;
  color: #2e4325;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.impact-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #6e6457;
  line-height: 1.35;
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS
   ========================================================================== */

/* --- Tablet / Medium Screen (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .about-hero-section {
    min-height: 560px;
    background: linear-gradient(to right, rgba(250, 245, 238, 0.95) 0%, rgba(250, 245, 238, 0.88) 60%, rgba(250, 245, 238, 0.35) 100%),
      url('../assets/images/about/hero-bg.png') no-repeat right center / cover;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-header {
    border-right: none;
    border-bottom: 1px solid rgba(216, 201, 185, 0.7);
    padding-right: 0;
    padding-bottom: 1.5rem;
    text-align: center;
  }

  .why-choose-title br {
    display: none;
  }

  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin: 0 auto;
  }

  .about-impact-section {
    min-height: 480px;
    background: linear-gradient(to right, rgba(250, 245, 238, 0.95) 0%, rgba(250, 245, 238, 0.88) 60%, rgba(250, 245, 238, 0.35) 100%),
      url('../assets/images/about/impact-bg.png') no-repeat right center / cover;
  }

  .story-editorial-card {
    min-height: 380px;
    background: linear-gradient(to left, rgba(250, 245, 238, 0.95) 0%, rgba(250, 245, 238, 0.88) 55%, rgba(250, 245, 238, 0.35) 100%),
      url('../assets/images/about/story-bg.png') no-repeat left center / cover;
  }
}

/* --- Mobile / Small Tablet (max-width: 768px) --- */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: auto;
    background: linear-gradient(to bottom, rgba(250, 245, 238, 0.97) 0%, rgba(250, 245, 238, 0.9) 70%, rgba(250, 245, 238, 0.4) 100%),
      url('../assets/images/about/hero-bg.png') no-repeat right bottom / cover;
    padding: 2.75rem 0 3.25rem 0;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero-features-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
  }

  /* Journey Timeline turns Vertical on Mobile */
  .journey-timeline-desktop {
    display: none;
  }

  .journey-timeline-mobile {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 56px;
    margin-top: 1.5rem;
  }

  /* Vertical Track Line */
  .journey-timeline-mobile::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    width: 2px;
    background: #c5d6c1;
  }

  .timeline-mobile-node {
    position: relative;
    margin-bottom: 2.25rem;
  }

  .timeline-mobile-node:last-child {
    margin-bottom: 0;
  }

  .timeline-mobile-node .timeline-icon-bubble {
    position: absolute;
    left: -56px;
    top: 0;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }

  .timeline-mobile-node .timeline-icon-bubble svg {
    width: 22px;
    height: 22px;
  }

  .timeline-mobile-content {
    background: #ffffff;
    border: 1px solid var(--about-border-subtle);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 2px 10px rgba(34, 28, 23, 0.03);
  }

  .timeline-mobile-content .timeline-year {
    display: inline-block;
    margin-bottom: 0.2rem;
  }

  .timeline-mobile-content .timeline-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }

  /* Why Choose Features Grid */
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Story Editorial Card */
  .story-editorial-card {
    min-height: auto;
    background: linear-gradient(to bottom, rgba(250, 245, 238, 0.96) 0%, rgba(250, 245, 238, 0.9) 65%, rgba(250, 245, 238, 0.4) 100%),
      url('../assets/images/about/story-bg.png') no-repeat left top / cover;
    padding: 2.25rem 1.5rem;
    justify-content: flex-start;
  }

  /* Impact Section Full BG Mobile */
  .about-impact-section {
    min-height: auto;
    background: linear-gradient(to bottom, rgba(250, 245, 238, 0.97) 0%, rgba(250, 245, 238, 0.9) 70%, rgba(250, 245, 238, 0.4) 100%),
      url('../assets/images/about/impact-bg.png') no-repeat right bottom / cover;
    padding: 2.75rem 0 3.25rem 0;
  }

  .about-impact-inner {
    justify-content: center;
    width: 100%;
  }

  .about-impact-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .about-impact-eyebrow {
    display: block;
    width: 100%;
    text-align: center;
  }

  .about-impact-content .accent-line-amber {
    margin: 8px auto 24px auto;
  }

  /* Stats Grid */
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    justify-items: center;
  }

  .impact-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .team-bg-decoration {
    display: none;
  }
}

/* --- Small Mobile Screens (max-width: 480px) --- */
@media (max-width: 480px) {
  .about-hero-features-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .hero-feature-item {
    padding: 6px 2px;
  }

  .hero-feature-label {
    font-size: 0.68rem;
  }

  .why-choose-card {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-cards-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .journey-timeline-mobile {
    padding-left: 48px;
  }

  .journey-timeline-mobile::before {
    left: 20px;
  }

  .timeline-mobile-node .timeline-icon-bubble {
    left: -48px;
    width: 40px;
    height: 40px;
  }

  .timeline-mobile-node .timeline-icon-bubble svg {
    width: 18px;
    height: 18px;
  }

  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.5rem;
  }

  .impact-number {
    font-size: 1.5rem;
  }

  .impact-label {
    font-size: 0.76rem;
  }
}