/* Find an Event — full map background */

html.page-find-event-root,
body.page-find-event {
  background: var(--nav-solid);
}

body.page-find-event .site-main {
  padding-top: 0;
}

.find-hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  min-height: calc(100svh - 4.5rem);
  display: flex;
  flex-direction: column;
  padding: clamp(5rem, 9vh, 5.5rem) clamp(1.5rem, 5vw, 3rem) clamp(2.5rem, 4vw, 3rem);
  overflow: hidden;
}

.find-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.find-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.92) contrast(1.02);
}

.find-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(13, 31, 23, 0.82) 0%,
      rgba(13, 31, 23, 0.5) 38%,
      rgba(27, 67, 50, 0.35) 62%,
      rgba(13, 31, 23, 0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(13, 31, 23, 0.55) 0%,
      rgba(13, 31, 23, 0.72) 45%,
      rgba(13, 31, 23, 0.88) 100%
    );
}

.find-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vh, 2.25rem);
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.find-hero__inner {
  width: 100%;
}

.find-hero__kicker {
  margin: 0 0 0.75rem;
  font-size: clamp(0.75rem, 1.25vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.find-hero__rule {
  display: block;
  width: min(10rem, 24vw);
  height: 2px;
  margin: 0 0 1.15rem;
  background: var(--accent);
}

.find-hero__title {
  margin: 0 0 0.75rem;
  max-width: 18ch;
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.5);
}

.find-hero__deck {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

/* Panel content on map — no white card */

.find-panel__inner {
  max-width: 28rem;
}

.find-panel__when {
  margin: 0 0 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.find-panel__when strong {
  color: var(--white);
  font-weight: 800;
}

.find-panel__cta {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  background: var(--accent);
  color: var(--nav-solid);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.find-panel__cta:hover {
  background: #74c69d;
  transform: translateY(-1px);
}

.find-panel__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.find-panel__sep {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.35);
}

.find-panel__link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.find-panel__link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (min-width: 900px) {
  .find-hero {
    justify-content: center;
    padding-top: clamp(7rem, 14vh, 9rem);
    padding-bottom: clamp(3rem, 6vh, 4rem);
  }
}

@media (max-width: 640px) {
  .find-hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .find-hero__title {
    max-width: 100%;
  }
}
