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

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

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(23, 32, 36, .9), rgba(23, 32, 36, .52) 54%, rgba(23, 32, 36, .16));
}

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

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

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

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 950;
}

.page-body {
  padding: 96px 0 124px;
}

.placeholder-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .42fr);
  gap: 64px;
  align-items: end;
  padding-top: 42px;
  border-top: 2px solid var(--ink);
}

.placeholder-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.12;
  font-weight: 930;
}

.placeholder-panel p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 650;
}

html[lang="en"] .page-hero h1,
html[lang="en"] .placeholder-panel h2 {
  max-width: 820px;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.08;
  word-break: normal;
}

html[lang="en"] .placeholder-panel p {
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 900px) {
  .placeholder-panel {
    grid-template-columns: 1fr;
  }
}

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

  .page-hero-inner,
  .container {
    width: min(100% - 32px, var(--max));
  }

  .page-body {
    padding: 72px 0 88px;
  }
}


