.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.event-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  max-width: 340px;
  margin-inline: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.event-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative; /* FIX: anchor sold out badge */
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-info {
  padding: 1rem 1.2rem 1.4rem;
}

.event-info h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--yellow);
}

.event-date {
  margin: 0.4rem 0 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.event-info p {
  margin: 0.2rem 0;
  font-size: 0.88rem;
  opacity: 0.85;
}

.event-info .cta {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
}

.event-card.sold-out {
  opacity: 0.6;
}

.sold-out-btn {
  background: rgba(255,255,255,0.2);
  cursor: not-allowed;
  font-weight: 800;
}

/* ===== MOBILE STACK ===== */
@media (max-width: 900px) {
  .pcfo-panels {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PCFO BOOKINGS FEATURE PANEL
========================= */

.pcfo-bookings {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  margin-top: 4rem;
  padding: 4rem 2rem;
}

.pcfo-bookings-inner {
  max-width: 900px;
  margin: auto;
  background: rgba(0,0,0,0.35);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Headings */
.pcfo-bookings h2 {
  color: var(--yellow);
  margin-top: 0;
}

.pcfo-bookings h3 {
  margin-top: 2rem;
}

/* Buttons */
.pcfo-bookings .cta {
  margin-top: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .pcfo-bookings-inner {
    padding: 2rem 1.5rem;
  }
}

.pcfo-booking-types {
  margin: 1.2rem 0 1.6rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.4rem;
}

.pcfo-booking-types li {
  font-size: 0.95rem;
  opacity: 0.9;
}

.swipe-item img:hover {
  transform: scale(1.03);
  transition: transform .25s ease;
}

.pcfo-custom-note {
  margin: 3rem auto;
  max-width: 700px;
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.85;
  font-style: italic;
}

.pcfo-info {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.pcfo-info h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.pcfo-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pcfo-info-grid div {
  background: rgba(255,255,255,0.04);
  padding: 1.25rem;
  border-radius: 12px;
}

.pcfo-info-grid h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.pcfo-info-grid p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.pcfo-faq-simple {
  max-width: 800px;
  margin: 4rem auto;
}

.faq-toggle {
  width: 100%;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: inherit;
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-list {
  display: none;
  margin-top: 1rem;
}

.pcfo-faq-simple.active .faq-list {
  display: block;
}

.faq-q {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.8rem 0;
  cursor: pointer;
}

.faq-q p {
  display: none;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.faq-q.active p {
  display: block;
}

.hero-strip img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: cover;
}

.hero-strip {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.notify-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.notify-modal.active {
  display: flex;
}

.notify-box {
  background: #111;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 380px;
  text-align: center;
  position: relative;
}

.notify-box input,
.notify-box button {
  width: 100%;
  padding: .7rem;
  margin: .5rem 0;
  border-radius: 8px;
  border: none;
}

.notify-box button {
  cursor: pointer;
}

.notify-close {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.notify-success {
  margin-top: 1rem;
}

/* SOLD OUT BUTTON */
.sold-out {
  background: #999;
  color: #fff;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}

/* CARD DIM */
.sold-out-card
