/* ── General Hero ─────────────────────────────────────── */
.general-hero__spacer {
  height: 84px;
}

.general-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #8f0022cf 0%, #1a0a0f 45%, #0a0a0a 100%);
}

/* Thin red glow line at the bottom */
.general-hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--azcp-red),
    transparent
  );
  opacity: 0.9;
}

/* Content */
.general-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: var(--azcp-gutter, 2rem);
}

.general-hero__subtitle {
  font-family: var(--azcp-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azcp-red);
  margin-bottom: 0.5rem;
}

.general-hero__title {
  font-family: var(--azcp-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--azcp-white);
  line-height: 1;

  /* Subtle text shadow for legibility over any image */
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);

  margin-bottom: 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .general-hero {
    height: 160px;
  }
}
