﻿.overview-page {
  background: #fff;
}

.sub-hero {
  height: 460px;
  min-height: 460px;
  padding-top: var(--header);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(22, 31, 35, .88), rgba(22, 31, 35, .54) 48%, rgba(22, 31, 35, .18));
}

.sub-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.04);
}

.sub-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 52px));
  margin: 0 auto;
  padding: 70px 0 52px;
}

.eyebrow,
.section-label {
  display: block;
  margin-bottom: 18px;
  color: #70a397;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sub-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 950;
}

.sub-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 700;
}

.overview-intro {
  padding: 112px 0 70px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
}

.intro-grid h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  font-weight: 930;
}

.intro-copy {
  padding-top: 40px;
  border-top: 2px solid var(--ink);
}

.intro-copy p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 2.05;
  font-weight: 650;
}

.intro-copy p + p {
  margin-top: 28px;
}

.profile-section {
  padding: 46px 0 112px;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(420px, .96fr) minmax(0, 1.04fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.profile-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--steel);
}

.profile-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.profile-visual figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 22px;
  color: #fff;
  background: rgba(28, 38, 42, .86);
}

.profile-visual b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 900;
}

.profile-visual span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.profile-card {
  display: grid;
  background: #fff;
}

.profile-row {
  display: grid;
  grid-template-columns: 164px 1fr;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.profile-row:last-child {
  border-bottom: 0;
}

.profile-row b,
.profile-row span {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  font-size: 15px;
  line-height: 1.55;
}

.profile-row b {
  background: #f4f7f7;
  font-weight: 900;
}

.profile-row span {
  color: var(--body);
  font-weight: 700;
}

.strength-section {
  padding: 0 0 124px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 2px solid var(--ink);
}

.strength-grid article {
  min-height: 260px;
  padding: 38px;
  background: #fff;
}

.strength-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.strength-grid b {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.strength-grid p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.82;
  font-weight: 650;
}

html[lang="en"] .sub-hero h1,
html[lang="en"] .intro-grid h2 {
  max-width: 820px;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.08;
}

html[lang="en"] .intro-copy p,
html[lang="en"] .strength-grid p {
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 980px) {
  .intro-grid,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
    border-top: 0;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sub-hero {
    height: 380px;
    min-height: 380px;
  }

  .sub-hero-inner {
    width: min(100% - 32px, var(--max));
    padding: 54px 0 38px;
  }

  .overview-intro {
    padding: 72px 0 44px;
  }

  .profile-section {
    padding: 28px 0 72px;
  }

  .profile-visual,
  .profile-visual img {
    min-height: 330px;
  }

  .profile-row {
    grid-template-columns: 118px 1fr;
  }

  .profile-row b,
  .profile-row span {
    padding: 14px;
    font-size: 13px;
  }

  .strength-section {
    padding-bottom: 72px;
  }

  .strength-grid article {
    min-height: auto;
    padding: 28px;
  }
}


