.subpage-hero {
  position: relative;
  z-index: 5;
  padding: 48px 24px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
}

.subpage-hero h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
}

.subpage-body {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.subpage-body p {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.subpage-body h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 36px 0 16px;
}

.subpage-body h3 {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 24px 0 10px;
}

.subpage-body ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.subpage-body li {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 8px;
}

.split-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.image-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-rail img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.callout-band {
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: rgba(249, 115, 22, 0.06);
  margin: 28px 0;
}

.callout-band p {
  margin-bottom: 0;
  color: var(--text);
}

@media (max-width: 768px) {
  .split-editorial {
    grid-template-columns: 1fr;
  }

  .image-rail,
  .image-rail img {
    max-width: 100%;
    overflow: hidden;
  }

  .image-rail img {
    width: 100%;
    max-height: 240px;
  }
}
