/* ===================================================================
   FINANCIAL CAPITAL — page-specific styles
   =================================================================== */

/* ===================================================================
   HERO
   =================================================================== */
.fc-hero { background: #f0f8f4; }

/* ===================================================================
   SHARED
   =================================================================== */
.fc-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.fc-p {
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.78;
  color: var(--ink);
  margin-bottom: 16px;
}
.fc-p:last-child { margin-bottom: 0; }

/* ===================================================================
   OVERVIEW SECTION
   =================================================================== */
.fc-ov {
  background: #ffffff;
}
.fc-ov__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 56px);
}
.fc-ov__quote {
  border-left: 4px solid var(--brand);
  padding-left: 24px;
  margin-bottom: 40px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: var(--brand);
}

/* ===================================================================
   OVERVIEW 2-COL ROW
   =================================================================== */
.fc-ov__row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.fc-ov__text { align-self: start; }

/* ===================================================================
   IMAGE + STATS
   =================================================================== */
.fc-is {
  background: #ffffff;
}
.fc-is__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) 56px;
}
.fc-is__stats {
  background: #5fb795;
  border-radius: 8px;
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fc-is__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 20px;
}
.fc-is__stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.fc-is__stat-num {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.fc-is__currency {
  font-weight: 400;
}
.fc-is__stat-label {
  font-size: clamp(12px, 0.85vw, 13px);
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

/* ===================================================================
   SDG / MATERIAL PRIORITIES / RISKS ROW
   =================================================================== */
.fc-meta {
  background: #ffffff;
}
.fc-meta__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 56px) 16px;
}
.fc-meta__row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.fc-meta__col {
  flex: 1;
  min-width: 160px;
}
.fc-meta__col:last-child { padding-left: 48px; }
.fc-meta__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.fc-meta__sdg-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fc-meta__sdg-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.fc-meta__mat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fc-meta__mat-list li {
  font-size: clamp(13px, 0.9vw, 14px);
  line-height: 1.6;
  color: var(--ink);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid #dde8f2;
}
.fc-meta__mat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.fc-meta__mat-list li:last-child { border-bottom: none; }
.fc-meta__risk-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fc-meta__risk-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fc-meta__risk-icon.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   KEY FINANCIAL HIGHLIGHTS
   =================================================================== */
.fc-kfh {
  background: #f7f9fc;
}
.fc-kfh__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 56px) 64px;
}
.fc-kfh__title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 48px;
}
.fc-kfh__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 48px;
}
.fc-kfh__chart {
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fc-kfh__chart.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fc-kfh__chart img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .fc-ov__row {
    grid-template-columns: 1fr;
  }
  .fc-meta__col:last-child { padding-left: 0; }
  .fc-kfh__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .fc-kfh__grid { grid-template-columns: 1fr; }
}

/* ===== Tablet (max 1024px) ===== */
@media (max-width: 1024px) {
  .src-hero__title { font-size: 32px; }
  .fc-kfh__title { font-size: 20px; }
  .fc-kfh__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Below-slider charts (Revenue Breakup + Ratio) */
.fc-kfh__below-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 48px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .fc-kfh__below-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .fc-kfh__below-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
}

/* ===== Mobile Slider ===== */
@media (max-width: 768px) {
  .fc-kfh__slider-wrap { position: relative; }
  #fcKfhTrack {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 !important;
  }
  #fcKfhTrack::-webkit-scrollbar { display: none; }
  #fcKfhTrack .fc-kfh__chart {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    padding: 0 4px;
    box-sizing: border-box;
  }
  .fc-kfh__slider-controls {
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }
  .fc-kfh__slider-btn {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .fc-kfh__slider-dots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 200px;
  }
  .fc-kfh__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d8e8;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
  }
  .fc-kfh__dot.is-active { background: var(--brand); transform: scale(1.3); }
}

/* ===== Mobile (max 768px) ===== */
@media (max-width: 768px) {
  .src-hero__wrap { padding: 0 20px 28px; margin-top: -30px; }
  .src-hero__breadcrumb { margin-bottom: 16px; font-size: 11px; }
  .src-hero__title { font-size: 24px; line-height: 1.25; }
  .src-hero__eye-label { font-size: 12px; }
  .fc-ov__wrap { padding: 28px 20px 24px; }
  .fc-ov__quote { font-size: 14px; padding-left: 14px; margin-bottom: 24px; }
  .fc-ov__row { grid-template-columns: 1fr; gap: 24px; }
  .fc-is__wrap { padding: 0 20px 36px; }
  .fc-is__stats { padding: 20px; gap: 16px; }
  .fc-is__stat-num { font-size: 22px; }
  .fc-meta__wrap { padding: 16px 20px; }
  .fc-meta__row { gap: 24px; flex-direction: column; }
  .fc-meta__col:last-child { padding-left: 0; }
  .fc-meta__sdg-icon { width: 40px; height: 40px; }
  .fc-meta__risk-icon { width: 40px; height: 40px; }
  .fc-kfh__wrap { padding: 28px 20px 40px; }
  .fc-kfh__title { font-size: 18px; margin-bottom: 28px; }
  .fc-kfh__grid { grid-template-columns: 1fr; gap: 24px; }
  .fc-p { font-size: 13px; }
  .fc-heading { font-size: 15px; }
}

/* ===== Small Mobile (max 480px) ===== */
@media (max-width: 480px) {
  .src-hero__title { font-size: 20px; }
  .fc-kfh__title { font-size: 16px; }
}
