/* ── Hero (mirrors operations.css — detail pages use this file only) ── */
.ops-hero {
  position: relative;
  width: 100%;
  height: calc(70vh + var(--nav-height));
  min-height: calc(320px + var(--nav-height));
  background-image: url('../images/Einsaetze-1920x1280px.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .ops-hero {
    height: calc(35vh + var(--nav-height));
    min-height: calc(240px + var(--nav-height));
  }
}

.ops-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
}

.ops-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-l);
  color: var(--color-white);
}

.ops-hero-content h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: var(--space-s);
}

.ops-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: 0.9;
  letter-spacing: 0.04em;
}

/* ── Content wrapper ── */
.ops-detail-content {
  padding: var(--space-xl) var(--space-l);
  background-color: var(--color-light);
}

.ops-detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}

/* ── Lead paragraph ── */
.ops-detail-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* ── Subsection cards ── */
.ops-detail-section {
  background-color: var(--color-white);
  border-radius: 4px;
  padding: var(--space-l);
  box-shadow: 0 2px 8px var(--color-shadow);
}

.ops-detail-section h2 {
  font-size: 1.2rem;
  color: var(--color-marine);
  margin-bottom: var(--space-m);
}

.ops-detail-section ul {
  list-style: disc;
  padding-left: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.ops-detail-section p {
  line-height: 1.7;
}

/* ── Back link ── */
.ops-back-link {
  display: inline-block;
  color: var(--color-marine);
  font-weight: 600;
  text-decoration: none;
  padding: var(--space-s) 0;
}

.ops-back-link:hover {
  color: var(--color-red);
  text-decoration: underline;
}