:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
  line-height: 1.72;
  background: #ffffff;
}

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 20px 84px;
}

.hero {
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e5e7eb;
}

.eyebrow {
  margin: 0;
  color: #6b7280;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.2;
}

h2 {
  margin: 34px 0 10px;
  font-size: 1.5rem;
  line-height: 1.32;
}

p,
ul {
  margin: 0 0 12px;
}

ul {
  padding-left: 20px;
}

.meta {
  margin: 0 0 14px;
  color: #374151;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #111827;
  color: #f9fafb;
  border: 1px solid #111827;
  border-radius: 8px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.93rem;
}

.button:hover {
  background: #1f2937;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

figure {
  margin: 16px 0;
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

figcaption {
  margin-top: 8px;
  color: #6b7280;
  font-size: 0.92rem;
}

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

.video-wrap {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

video {
  width: 100%;
  display: block;
}

@media (max-width: 760px) {
  .page {
    padding-top: 42px;
  }

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



