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

/* ===================================================================
   HERO
   =================================================================== */
.mc-hero { background: #e8f2fa; }
.mc-hero .src-hero__text { color: var(--brand); }

/* ===================================================================
   SHARED SECTION WRAPPER
   =================================================================== */
.mc-section {
  background: #ffffff;
}
.mc-section--alt {
  background: #f7f9fc;
}
.mc-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 56px);
}
.mc-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.mc-p {
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.78;
  color: var(--ink);
  margin-bottom: 16px;
}
.mc-p:last-child { margin-bottom: 0; }

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

/* ===================================================================
   2-COL CONTENT GRID
   =================================================================== */
.mc-ov__grid {
  display: block;
}

/* ===================================================================
   MAIN 2-COL: left text blocks + right stats
   =================================================================== */
.mc-main__row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.mc-main__left { align-self: start; }
.mc-is__stats {
  background: #0dacef;
  border-radius: 8px;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mc-is__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mc-is__stat-num {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.mc-is__stat-label {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

/* ===================================================================
   SDG / MATERIAL PRIORITIES / RISKS ROW
   =================================================================== */
.mc-meta {
  background: #ffffff;
}
.mc-meta__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 56px) 64px;
}
.mc-meta__row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 8px;
}
.mc-meta__col {
  flex: 1;
  min-width: 160px;
}
.mc-meta__col:last-child {
  padding-left: 48px;
}
.mc-meta__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mc-meta__sdg-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mc-meta__sdg-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.mc-meta__mat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mc-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;
}
.mc-meta__mat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  background: #00adef;
}
.mc-meta__mat-list li:last-child { border-bottom: none; }
.mc-meta__risk-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mc-meta__risk-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mc-meta__risk-icon.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===== Tablet (max 1024px) ===== */
@media (max-width: 1024px) {
  .src-hero__title { font-size: 32px; }
  .mc-main__row { grid-template-columns: 1fr 300px; }
  .mc-is__stat-num { font-size: 48px; }
}

/* ===== 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; }
  .mc-ov__wrap { padding: 28px 20px 24px; }
  .mc-ov__quote { font-size: 14px; padding-left: 14px; margin-bottom: 24px; }
  .mc-main__row { grid-template-columns: 1fr; gap: 24px; }
  .mc-is__stats { padding: 20px; gap: 20px; }
  .mc-is__stat-num { font-size: 40px; }
  .mc-is__stat-label { font-size: 13px; }
  .mc-meta__wrap { padding: 24px 20px 36px; }
  .mc-meta__row { gap: 24px; flex-direction: column; }
  .mc-meta__col:last-child { padding-left: 0; }
  .mc-meta__heading { font-size: 15px; margin-bottom: 10px; }
  .mc-meta__sdg-icon { width: 40px; height: 40px; }
  .mc-meta__risk-icon { width: 40px; height: 40px; }
  .mc-wrap { padding: 28px 20px 36px; }
  .mc-heading { font-size: 15px; }
  .mc-p { font-size: 13px; }
}

/* ===== Small Mobile (max 480px) ===== */
@media (max-width: 480px) {
  .src-hero__title { font-size: 20px; }
  .mc-is__stat-num { font-size: 34px; }
}
