/* ===== Events & News page — extends design tokens from style.css ===== */

/* ---------- Hero (background placeholder, text left) ---------- */
.ev-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.ev-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-deep);
}
.ev-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,37,66,0.94) 0%, rgba(8,37,66,0.82) 38%, rgba(8,37,66,0.35) 62%, rgba(8,37,66,0.08) 100%);
}
.ev-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 24px 90px;
  text-align: left;
  box-sizing: border-box;
}
.ev-hero-inner .hero-text { max-width: 620px; margin-left: 0; margin-right: auto; }
.ev-hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 6.5vw, 4.2rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
}
.ev-hero-subheading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  color: var(--gold);
  margin-bottom: 16px;
  max-width: 560px;
}
.ev-hero-inner .lede { font-family: var(--font-display); color: #d6e4f0; font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 560px; margin: 0; }
.ev-hero-tagline {
  position: absolute; right: 6%; bottom: 14%; z-index: 2;
  font-family: 'Caveat', var(--font-display);
  font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: #fff; text-align: right; line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transform: rotate(-3deg);
}
@media (max-width: 760px) { .ev-hero-tagline { display: none; } }

/* ---------- Bigger type across Upcoming Events & Announcements ---------- */
.events-upcoming .event-card,
.events-announcements .card {
  padding: 26px;
}
.events-upcoming .event-card h4,
.events-announcements .card h4 {
  font-size: 1.2rem;
  color: var(--navy-deep);
}
.events-upcoming .event-card p,
.events-announcements .card p {
  font-size: 1.02rem;
  line-height: 1.65;
}
.events-upcoming .event-date .d { font-size: 1.7rem; }
.events-upcoming .event-date .m { font-size: 0.82rem; }
.events-upcoming .ribbon-badge {
  font-size: 0.8rem;
  padding: 6px 16px;
  display: inline-block;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .events-upcoming .event-card,
  .events-announcements .card {
    padding: 20px;
  }
}