:root {
  --oh-bg: #0d202b;
  --oh-bg-2: #102a37;
  --oh-ivory: #f6f2e9;
  --oh-copy: #c4cfd4;
  --oh-dark: #11191f;
  --oh-body: #4f5a5e;
  --oh-line: rgba(17,25,31,.16);
  --oh-accent: #ed8337;
}

.oppaat-page {
  margin: 0;
  background: var(--oh-ivory);
  color: var(--oh-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oppaat-page *,
.oppaat-page *::before,
.oppaat-page *::after {
  box-sizing: border-box;
}

.oh-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.oh-hero {
  padding: 74px 0 62px;
  background: linear-gradient(135deg, var(--oh-bg), var(--oh-bg-2));
  color: var(--oh-ivory);
}

.oh-eyebrow {
  margin: 0 0 16px;
  color: var(--oh-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.oh-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -.06em;
}

.oh-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--oh-copy);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.oh-main {
  padding: 64px 0 82px;
}

.oh-section {
  margin-top: 62px;
}

.oh-section:first-child {
  margin-top: 0;
}

.oh-section-head {
  display: grid;
  grid-template-columns: minmax(0,.42fr) minmax(0,1fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--oh-line);
}

.oh-section-head span {
  color: #8d3f09;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.oh-section-head h2 {
  margin: 0;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.oh-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.oh-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--oh-line);
  background: #fff;
}

.oh-card__link {
  display: grid;
  min-height: 100%;
  padding: 25px;
  color: inherit;
  text-decoration: none;
}

.oh-card__link:hover {
  border-left: 4px solid var(--oh-accent);
  padding-left: 22px;
}

.oh-card__meta {
  margin-bottom: 18px;
  color: #7a8589;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.oh-card h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.oh-card p {
  margin: 14px 0 22px;
  color: var(--oh-body);
  line-height: 1.65;
}

.oh-card__action {
  align-self: end;
  color: #a84908;
  font-weight: 900;
}

.oh-cta {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 68px;
  padding: 34px;
  background: var(--oh-bg);
  color: var(--oh-ivory);
}

.oh-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.oh-cta p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--oh-copy);
  line-height: 1.65;
}

.oh-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  background: var(--oh-accent);
  color: #16110e;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.oh-footer {
  padding: 28px 0;
  border-top: 1px solid var(--oh-line);
  color: #667176;
  font-size: 14px;
}

.oh-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.oh-footer a {
  color: #8d3f09;
  font-weight: 800;
}

@media (max-width: 760px) {
  .oh-section-head,
  .oh-cta {
    grid-template-columns: 1fr;
  }

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

  .oh-cta a {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .oh-shell {
    width: min(100% - 24px, 1180px);
  }

  .oh-hero {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .oh-main {
    padding-top: 46px;
  }

  .oh-card__link,
  .oh-cta {
    padding: 21px;
  }
}
