/* =========================================================
   SHARED HERO (same layout + typography everywhere)
   ========================================================= */
.new-fs-hero {
  padding-top: 100px;
}

/* Base hero shell */
.fs-hero {
  position: relative;

  /* Break out of the main-container width */
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  height: 60vh;
  min-height: 360px;

  /* Per-page will set this via a CSS variable */
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Sit behind navbar */
  margin-top: -100px;   /* match your nav height */
  padding-top: 100px;   /* match your nav height */

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;
}

.fs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.fs-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;

  display: flex;
  flex-direction: column;
  gap: 0;
}

.fs-hero__title {
  font-family: var(--branded-font);
  font-size: clamp(5.2rem, 5vw, 8.5rem);
  font-style: normal;
  text-shadow: 2px 2px 16px #002c32;
  color: #ffcc37;
  margin: 0;
}

.fs-hero__pretitle {
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-family: var(--text-font);
  font-weight: 400;
  font-style: normal;
  text-shadow: 2px 2px 16px #015966;
  margin: 0;
}

.fs-hero__meta {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 20px;
}

.fs-hero__date,
.fs-hero__location {
  display: inline-block;
  margin: 0 0.25rem;
}

/* Matches your lineup breakpoint behavior exactly */
@media (min-width: 760px) {
  .fs-hero__title {
    font-size: clamp(8.2rem, 5vw, 8.5rem);
  }
}
