/* Full-cover detail hero (story / blog) — matches home page */
.detail-page {
  position: relative;
}

.detail-hero.hero-fullcover {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  padding: 0 !important;
  margin: 0;
}

.detail-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.detail-hero__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 24px 48px;
  text-align: center;
  color: #fff;
}

.detail-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.detail-hero__subhead {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.detail-hero__date {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.detail-page .content {
  padding-top: 0 !important;
  position: relative;
  z-index: 2;
}

.detail-page .detail-body {
  padding-top: 60px;
  padding-bottom: 60px;
}
