/* Mobile-first: base rules target small screens; min-width queries add
   layout for larger viewports. No horizontal scroll, tap targets >= 44px. */

:root {
  --ee-navy-dark: #1a3f62;
  --ee-navy: #255480;
  --ee-navy-light: #2e6797;
  --ee-accent: #7faecb;
  --ee-ink: #0f172a;
  --ee-muted: #475569;
  --ee-muted-2: #64748b;
  --ee-muted-3: #94a3b8;
  --ee-line: rgba(37, 84, 128, 0.09);
  --ee-soft: #ebf2f7;
  --ee-bg: #ffffff;
  --ee-bg-page: #f8fafc;
  --ee-mono: "JetBrains Mono", monospace;
  --ee-sans: "Geist", "Inter", system-ui, sans-serif;
  --ee-radius: 18px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ee-sans);
  color: var(--ee-ink);
  background: var(--ee-bg-page);
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Nav */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ee-line);
}

.site-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 66px;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav__lockup {
  height: 36px;
  width: auto;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 2px;
}

.site-nav__links a {
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ee-muted);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-nav__login {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ee-muted-2);
  text-decoration: none;
}

/* Site-wide Django messages */

.site-messages {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-alert {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-alert--error {
  background: #fef2f2;
  color: #b91c1c;
}

.site-alert--success {
  background: #ecfdf5;
  color: #047857;
}

.site-alert--warning {
  background: #fffbeb;
  color: #92400e;
}

.site-alert--info,
.site-alert--debug {
  background: var(--ee-soft);
  color: var(--ee-navy);
}

.announcement-banner {
  padding: 0.875rem 0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
  color: #fff;
  animation: announcement-banner-in 0.28s ease-out;
}

.announcement-banner__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@keyframes announcement-banner-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.announcement-banner--info {
  background: #3b82f6;
}

.announcement-banner--warning {
  background: #d97706;
}

.announcement-banner--critical {
  background: #b91c1c;
}

.announcement-banner__icon {
  flex-shrink: 0;
}

.announcement-banner__message {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

.announcement-banner__dismiss {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.announcement-banner__dismiss:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Hero */

.hero {
  background: linear-gradient(145deg, var(--ee-navy-dark) 0%, var(--ee-navy) 55%, var(--ee-navy-light) 100%);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero__copy {
  min-width: 0;
}

.hero__fade {
  opacity: 0.28;
  display: block;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(127, 174, 203, 0.4);
  border-radius: 40px;
  padding: 6px 14px;
  background: rgba(127, 174, 203, 0.12);
  margin: 0 0 1.5rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--ee-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ee-accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 9vw, 5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0 0 1.5rem;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 29rem;
  margin: 0 0 2.25rem;
}

.search-form {
  display: flex;
  gap: 8px;
  max-width: 32rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.search-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.search-form button {
  padding: 12px 22px;
  border-radius: 10px;
  background: #fff;
  color: var(--ee-navy-dark);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.category-pills a {
  padding: 5px 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
}

/* Hero ticket stub */

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ticket-stub {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.ticket-stub__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}

.ticket-stub__kind {
  font-family: var(--ee-mono);
  font-size: 9px;
  color: var(--ee-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.ticket-stub__event {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin: 0;
}

.ticket-stub__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-stub__icon img {
  width: 22px;
  height: 22px;
  filter: invert(1) brightness(2);
}

.ticket-stub__icon--lg {
  width: 52px;
  height: 52px;
  border-radius: 10px;
}

.ticket-stub__icon--lg img {
  width: 28px;
  height: 28px;
}

.ticket-stub__details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.ticket-stub__when,
.ticket-stub__where {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin: 0;
}

.ticket-stub__perforation {
  border-top: 1.5px dashed rgba(255, 255, 255, 0.18);
  margin: 14px 0;
}

.ticket-stub__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-stub__price {
  font-family: var(--ee-mono);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  margin: 0;
}

.ticket-stub__price-label {
  font-family: var(--ee-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 2px 0 0;
}

.ticket-stub__gate {
  font-family: var(--ee-mono);
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.25);
  margin: 14px 0 0;
  letter-spacing: 1.5px;
}

.ticket-stub__cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 11px;
  border-radius: 11px;
  background: #fff;
  color: var(--ee-navy-dark);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.live-badge {
  width: 100%;
  max-width: 320px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-badge__icon {
  font-size: 18px;
}

.live-badge__value {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.live-badge__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 1px 0 0;
}

.stats-row {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat__value {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
  margin: 0;
}

.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 6px 0 0;
  font-weight: 500;
}

/* Sections */

section {
  padding: 4rem 0;
}

.features,
.testimonials {
  background: #fff;
}

.how-it-works {
  background: var(--ee-soft);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 1rem;
}

.eyebrow {
  font-family: var(--ee-mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ee-navy);
  margin: 0 0 0.875rem;
}

section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--ee-ink);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.section-head--split h2 {
  margin-bottom: 0;
}

.section-lede {
  color: var(--ee-muted);
  max-width: 31rem;
  margin: 0 auto;
  line-height: 1.65;
}

.section-head--split .section-lede {
  margin: 0;
}

.section-foot {
  text-align: center;
  margin-top: 2.5rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ee-navy);
  text-decoration: none;
}

.link-more--outline {
  padding: 11px 22px;
  border-radius: 10px;
  border: 1.5px solid rgba(37, 84, 128, 0.2);
  font-weight: 700;
  font-size: 14px;
}

/* Feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem 1.625rem;
  border-radius: var(--ee-radius);
  border: 1px solid var(--ee-line);
  background: #fafbfc;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ee-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}

.feature-card__icon img {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ee-ink);
  letter-spacing: -0.4px;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ee-muted);
  line-height: 1.65;
}

/* Steps */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.step {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(37, 84, 128, 0.1);
  box-shadow: 0 2px 12px rgba(37, 84, 128, 0.06);
}

.step__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.step__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ee-navy-dark), var(--ee-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 84, 128, 0.3);
}

.step__icon img {
  width: 22px;
  height: 22px;
  filter: invert(1) brightness(2);
}

.step-label {
  font-family: var(--ee-mono);
  font-size: 11px;
  color: var(--ee-accent);
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 13px;
}

.step h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ee-ink);
  letter-spacing: -0.5px;
  margin: 0 0 0.625rem;
}

.step p:last-child {
  font-size: 14.5px;
  color: var(--ee-muted);
  line-height: 1.65;
  margin: 0;
}

/* Event grid + cards */

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.375rem;
}

.event-card {
  background: #fff;
  border-radius: var(--ee-radius);
  border: 1px solid var(--ee-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04), 0 4px 20px rgba(37, 84, 128, 0.06);
}

.event-card__banner {
  background: var(--ee-soft);
  aspect-ratio: 1600 / 520;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
}

.event-card__banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.event-card__category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: var(--ee-navy);
  border: 1px solid rgba(37, 84, 128, 0.14);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.event-card__availability {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #fff;
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 600;
  z-index: 1;
}

.event-card__body {
  padding: 18px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-card__body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ee-ink);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin: 0;
}

.event-card__body h3 a {
  text-decoration: none;
}

.event-card__when,
.event-card__where {
  font-size: 13px;
  color: var(--ee-muted-2);
  font-weight: 500;
  margin: 0;
}

.event-card__footer {
  border-top: 1px solid var(--ee-line);
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Storefront link sits just above the footer; auto margin keeps it level
   across cards whether or not a venue line is present. */
.event-card__org {
  margin-top: auto;
  margin-bottom: 0;
}

.event-card__org + .event-card__footer {
  margin-top: 0.5rem;
}

.event-card__price {
  font-size: 19px;
  font-weight: 800;
  color: var(--ee-ink);
  letter-spacing: -0.5px;
  font-family: var(--ee-mono);
  margin: 0;
}

.event-card__price-label {
  font-size: 10.5px;
  color: var(--ee-muted-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 1px 0 0;
}

/* Buttons */

.button {
  min-height: 44px;
  padding: 0 1.25rem;
  border: none;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--ee-navy-dark), var(--ee-navy));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 84, 128, 0.25);
}

.button--sm {
  min-height: 38px;
  padding: 9px 16px;
}

.button--nav {
  display: none;
  padding: 9px 20px;
  border-radius: 9px;
  box-shadow: 0 3px 12px rgba(37, 84, 128, 0.3);
}

.button--light {
  background: #fff;
  color: var(--ee-navy-dark);
  padding: 15px 32px;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 15px 32px;
  font-size: 16px;
  box-shadow: none;
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  background: #fff;
  border-radius: var(--ee-radius);
  border: 1px solid rgba(37, 84, 128, 0.08);
  padding: 1.75rem 1.625rem;
  box-shadow: 0 2px 12px rgba(37, 84, 128, 0.04);
}

.testimonial-card__mark {
  font-size: 24px;
  color: var(--ee-accent);
  font-weight: 900;
  margin: 0 0 0.75rem;
  line-height: 1;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--ee-ink);
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.testimonial-card footer {
  border-top: 1px solid rgba(37, 84, 128, 0.07);
  padding-top: 1rem;
}

.testimonial-card__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ee-ink);
  margin: 0;
}

.testimonial-card__role {
  font-size: 12.5px;
  color: var(--ee-muted-2);
  margin: 2px 0 0;
}

/* Organiser CTA */

.organiser-cta {
  background: linear-gradient(145deg, var(--ee-ink) 0%, var(--ee-navy-dark) 50%, var(--ee-navy) 100%);
}

.organiser-cta__inner {
  max-width: 860px;
  text-align: center;
}

.organiser-cta .eyebrow {
  color: var(--ee-accent);
}

.organiser-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -2px;
  line-height: 1.05;
}

.organiser-cta .section-lede {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.cta-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  padding: 0;
  margin: 0 0 2.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 14.5px;
}

.cta-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-badges__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 11px;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Event detail */

.event-detail {
  padding-top: 1.25rem;
}

.event-detail__hero {
  position: relative;
  border-radius: var(--ee-radius);
  overflow: hidden;
  margin: 0 0 1.5rem;
  aspect-ratio: 1600 / 520;
  background: var(--ee-soft);
}

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

.event-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.72) 100%);
}

.event-detail__hero-org {
  position: absolute;
  left: 1.25rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.event-detail__hero-org--plain {
  position: static;
  color: var(--ee-navy);
  margin: 0 0 0.5rem;
}

.event-detail__hero-org img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  flex-shrink: 0;
}

.event-detail__hero-org-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-detail__hero-org-name {
  font-weight: 600;
  line-height: 1.2;
}

.event-detail__hero-org-tagline {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

.event-detail__hero-org--plain img {
  border-color: var(--ee-line);
}

.event-detail__category {
  color: var(--ee-navy);
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 0.35rem;
}

.event-detail h1 {
  margin: 0;
}

.event-detail__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--ee-muted);
  font-size: 0.9375rem;
  margin: 0.6rem 0 1.75rem;
}

.event-detail__facts-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.event-detail__facts-item svg {
  flex-shrink: 0;
  color: var(--ee-navy);
}

.event-detail__facts-sep {
  color: var(--ee-muted-3);
}

.event-detail__section {
  margin: 0 0 1.75rem;
}

.event-detail__section h2,
.event-detail__tickets h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.event-detail__about-body :first-child {
  margin-top: 0;
}

.event-detail__about-body :last-child {
  margin-bottom: 0;
}

.event-detail__sessions {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-detail__sessions li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ee-line);
}

.event-detail__sessions-time {
  font-family: var(--ee-mono);
  color: var(--ee-navy);
  font-size: 0.875rem;
  white-space: nowrap;
}

.event-detail__sessions-name {
  text-align: right;
  color: var(--ee-muted);
}

.event-detail__organiser {
  background: var(--ee-soft);
  border-radius: var(--ee-radius);
  padding: 1.15rem 1.25rem;
}

.event-detail__organiser-name {
  margin: 0;
  font-weight: 600;
  color: var(--ee-navy);
}

.event-detail__organiser .storefront__contact {
  margin: 0.25rem 0 0;
}

.event-detail__tickets {
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  padding: 1.25rem 1.35rem;
  margin: 0 0 1.75rem;
}

.event-detail__ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--ee-line);
}

.event-detail__ticket-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.event-detail__ticket-name {
  margin: 0;
  font-weight: 600;
}

.event-detail__ticket-desc {
  margin: 0.15rem 0 0;
  color: var(--ee-muted);
  font-size: 0.8125rem;
}

.event-detail__ticket-price {
  font-family: var(--ee-mono);
  font-weight: 700;
  color: var(--ee-navy);
  white-space: nowrap;
}

.event-detail__tickets-cta {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  border-radius: 12px;
  background: var(--ee-navy);
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.event-detail__tickets-cta:hover,
.event-detail__tickets-cta:focus-visible {
  background: var(--ee-navy-dark);
}

@media (min-width: 768px) {
  .event-detail__hero-org {
    font-size: 1.15rem;
  }

  .event-detail__hero-org img {
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* Footer */

.site-footer {
  background: var(--ee-ink);
  color: #fff;
  padding: 4rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.site-footer__brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.site-footer__lockup {
  height: 28px;
  width: auto;
}

.site-footer__brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 18rem;
  margin: 0;
}

.site-footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 1rem;
}

.site-footer__col {
  display: none;
  flex-direction: column;
}

.site-footer__col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 0.625rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* Larger screens: progressively enhance */

@media (min-width: 640px) {
  .search-form {
    flex-direction: row;
  }

  .feature-grid,
  .event-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* /events: always two columns from tablet up. */
  .events-page .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-page .event-grid--lead > .event-card:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .site-footer__col {
    display: flex;
  }

  .site-nav__links {
    display: flex;
  }

  .site-nav__login {
    display: inline-block;
  }

  .button--nav {
    display: inline-flex;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__grid {
    flex-direction: row;
    align-items: center;
    gap: 3.75rem;
  }

  .hero__copy {
    flex: 1 1 480px;
  }

  .hero__visual {
    flex-shrink: 0;
    width: 300px;
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid,
  .event-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Keep /events at two columns (global .event-grid becomes 3 here). */
  .events-page .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-page .event-grid--lead > .event-card:first-child {
    grid-column: 1 / -1;
  }
}

/* ── Feature card: heading beside icon ─────────────────────────────────────── */

.feature-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.feature-card__head .feature-card__icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.feature-card__head h3 {
  margin: 0;
}

.inline-link {
  color: var(--ee-navy);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Hero marketing fallback stub ──────────────────────────────────────────── */

.ticket-stub--marketing {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── Empty states ──────────────────────────────────────────────────────────── */

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1.25rem;
  border: 1.5px dashed var(--ee-line);
  border-radius: var(--ee-radius);
  background: #fff;
}

.empty-state__lead {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ee-ink);
  margin: 0 0 0.5rem;
}

.empty-state__body {
  color: var(--ee-muted);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.button--ghost-dark {
  background: transparent;
  color: var(--ee-navy);
  border: 1.5px solid rgba(37, 84, 128, 0.25);
  box-shadow: none;
}

/* ── Generic marketing page hero ───────────────────────────────────────────── */

.page-hero {
  background: linear-gradient(145deg, var(--ee-navy-dark) 0%, var(--ee-navy) 55%, var(--ee-navy-light) 100%);
  padding: 3.5rem 0;
}

.page-hero--compact {
  padding: 2.75rem 0;
}

.page-hero__inner {
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.cta-buttons--left {
  justify-content: flex-start;
}

.container--narrow {
  max-width: 760px;
}

.container--wide {
  max-width: 860px;
}

.container--x-wide {
  max-width: 920px;
}

.feature-grid--2 {
  grid-template-columns: 1fr;
}

.feature-detail {
  background: var(--ee-bg-page);
}

/* ── Pricing ───────────────────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pricing-card {
  padding: 2rem 1.75rem;
  border-radius: var(--ee-radius);
  border: 1px solid var(--ee-line);
  background: #fff;
  box-shadow: 0 2px 12px rgba(37, 84, 128, 0.05);
}

.pricing-card__value {
  font-family: var(--ee-mono);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ee-navy);
  letter-spacing: -1px;
  margin: 0 0 0.5rem;
}

.pricing-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--ee-ink);
}

.pricing-card p {
  margin: 0;
  color: var(--ee-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.pricing-note {
  margin: 2rem auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--ee-muted-2);
  font-size: 14px;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ee-ink);
}

.check-list .cta-badges__check {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */

.faq {
  padding: 4rem 0;
}

.faq .container--narrow {
  max-width: 920px;
}

.faq-group + .faq-group {
  margin-top: 1.5rem;
}

.faq-group {
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  box-shadow: 0 2px 16px rgba(37, 84, 128, 0.05);
  overflow: hidden;
}

.faq-group__title {
  margin: 0;
  padding: 1.05rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ee-navy);
  background: var(--ee-soft);
  border-bottom: 1px solid var(--ee-line);
}

.faq-item {
  border-top: 1px solid var(--ee-line);
}

.faq-item:first-child {
  border-top: none;
}

.faq-item__q {
  padding: 1.15rem 1.5rem;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ee-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: color 0.15s ease;
}

.faq-item__q:hover {
  color: var(--ee-navy);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ee-soft);
  color: var(--ee-navy);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

.faq-item[open] .faq-item__q::after {
  content: "\2212";
  background: var(--ee-navy);
  color: #fff;
}

.faq-item__a {
  padding: 0 1.5rem 1.35rem;
  color: var(--ee-muted);
  line-height: 1.7;
}

.faq-item__a p {
  margin: 0;
  max-width: 62ch;
}

/* ── Legal / prose ─────────────────────────────────────────────────────────── */

.legal {
  background: #fff;
}

.prose h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 2rem 0 0.75rem;
  color: var(--ee-ink);
}

.prose p {
  color: var(--ee-muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.prose a {
  color: var(--ee-navy);
  font-weight: 600;
}

.prose__updated {
  font-family: var(--ee-mono);
  font-size: 12.5px;
  color: var(--ee-muted-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Events discovery page ─────────────────────────────────────────────────── */

.events-page {
  background: var(--ee-bg-page);
  min-height: 60vh;
}

.events-page__head {
  margin-bottom: 1.5rem;
}

.events-page__head h1 {
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin: 0 0 0.5rem;
}

.events-page__sub {
  color: var(--ee-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
}

.events-search {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: 16px;
  padding: 8px;
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(37, 84, 128, 0.07);
}

.events-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 16px 18px;
  font-size: 1.0625rem;
  font-family: inherit;
  color: var(--ee-ink);
}

.events-search button {
  padding: 0 28px;
  min-height: 52px;
  border: none;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--ee-navy-dark), var(--ee-navy));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.filter-chip {
  padding: 7px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--ee-line);
  color: var(--ee-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.filter-chip--active {
  background: var(--ee-navy);
  border-color: var(--ee-navy);
  color: #fff;
}

.events-page__more {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0.5rem;
}

.events-page__more:empty {
  display: none;
  margin: 0;
}

/* ── Larger screens ────────────────────────────────────────────────────────── */

@media (min-width: 640px) {
  .feature-grid--2,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Pricing: fee calculator ───────────────────────────────────────────────── */

.calculator {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--ee-radius);
  overflow: hidden;
  border: 1px solid var(--ee-line);
  box-shadow: 0 8px 30px rgba(37, 84, 128, 0.08);
  background: #fff;
}

.calculator__controls {
  padding: 2rem 1.75rem;
  background: #f5f8fb;
}

.calculator__q {
  font-weight: 800;
  color: var(--ee-navy);
  margin: 0 0 0.75rem;
  font-size: 15px;
}

.calculator__q:not(:first-child) {
  margin-top: 1.5rem;
}

.toggle {
  display: flex;
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.toggle__opt {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ee-muted);
  cursor: pointer;
  white-space: nowrap;
}

.toggle__opt--active {
  background: var(--ee-navy-dark);
  color: #fff;
}

.calculator__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.calculator__field label {
  font-weight: 700;
  color: var(--ee-ink);
  font-size: 14px;
}

.calculator__field input {
  width: 130px;
  border: 1px solid var(--ee-line);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--ee-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--ee-navy);
  text-align: right;
  background: #fff;
}

.calculator__money {
  display: flex;
  align-items: center;
  gap: 6px;
}

.calculator__money span {
  font-family: var(--ee-mono);
  font-weight: 600;
  color: var(--ee-muted-2);
}

.calculator__result {
  background: linear-gradient(160deg, var(--ee-navy) 0%, var(--ee-navy-dark) 100%);
  color: #fff;
  padding: 2.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.calculator__result-label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.calculator__result-value {
  font-family: var(--ee-mono);
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  margin: 0.25rem 0 1rem;
}

.calculator__result-sub {
  font-family: var(--ee-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ee-accent);
  margin: 0.25rem 0 1.5rem;
}

/* ── Pricing: low-price items ──────────────────────────────────────────────── */

.items-section {
  background: var(--ee-bg-page);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.item-card {
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 10px rgba(37, 84, 128, 0.05);
}

.item-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ee-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-card__icon img {
  width: 26px;
  height: 26px;
}

.item-card p {
  margin: 0;
  font-weight: 700;
  color: var(--ee-ink);
  font-size: 14px;
}

.item-card--more {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
  justify-content: center;
}

.item-card--more p {
  color: var(--ee-muted-2);
  font-weight: 600;
}

/* ── FAQ / support band ────────────────────────────────────────────────────── */

.help-band {
  background: linear-gradient(145deg, var(--ee-ink) 0%, var(--ee-navy-dark) 60%, var(--ee-navy) 100%);
}

.help-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.help-band h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}

.help-band .section-lede {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (min-width: 768px) {
  .calculator {
    grid-template-columns: 1.2fr 1fr;
  }

  .item-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .help-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .help-band__copy {
    max-width: 34rem;
  }
}

/* ── Support cards: button alignment + inline code ─────────────────────────── */

.support-cards .feature-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(37, 84, 128, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.support-cards .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 84, 128, 0.12);
  border-color: rgba(37, 84, 128, 0.18);
}

.support-cards .feature-card p {
  margin-bottom: 1.75rem;
}

.support-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ── Support tools: resend / find / sales forms ────────────────────────────── */

.support-tools {
  padding: 3.5rem 0;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tool-card {
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  box-shadow: 0 2px 16px rgba(37, 84, 128, 0.05);
  padding: 1.75rem;
}

.tool-card h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 0.5rem;
}

.tool-card > p {
  color: var(--ee-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ee-ink);
  margin-bottom: 0.375rem;
}

.field__input,
.field textarea,
.field input {
  width: 100%;
  border: 1px solid var(--ee-line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ee-ink);
  background: #fff;
}

.field__input:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ee-navy);
  box-shadow: 0 0 0 3px rgba(37, 84, 128, 0.12);
}

.field .errorlist {
  list-style: none;
  margin: 0.375rem 0 0;
  padding: 0;
  color: #b42318;
  font-size: 13px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.tool-note {
  font-size: 0.9375rem;
  line-height: 1.55;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  background: var(--ee-soft);
  color: var(--ee-muted);
  margin: 0 0 1.25rem;
}

.tool-note--ok {
  background: rgba(16, 185, 129, 0.1);
  color: #0f5132;
}

.tool-note--info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tool-note__icon {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.tool-note--info strong {
  color: var(--ee-navy);
  font-weight: 700;
}

.tool-grid .tool-card {
  display: flex;
  flex-direction: column;
  background: var(--ee-soft);
  border-color: rgba(37, 84, 128, 0.16);
}

.tool-grid .tool-note--info {
  background: #fff;
}

.tool-grid .tool-card > button[type="submit"] {
  margin-top: auto;
  align-self: flex-start;
}

.tool-results {
  margin-top: 2rem;
}

.tool-results h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 1.5rem 0 0.75rem;
}

.txn-scroll {
  overflow-x: auto;
}

.txn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.txn-table th,
.txn-table td {
  text-align: left;
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid var(--ee-line);
  white-space: nowrap;
}

.txn-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ee-muted-2);
}

.tool-card--wide {
  max-width: 100%;
  background: var(--ee-soft);
  border-color: rgba(37, 84, 128, 0.16);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

/* ── Online support options (organiser) ────────────────────────────────────── */

.online-support {
  padding: 3.5rem 0;
}

.support-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 860px) {
  .support-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-options--single {
  grid-template-columns: 1fr;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .support-options--single {
    grid-template-columns: 1fr;
  }
}

.support-options--single .support-option {
  background: var(--ee-soft);
  border-color: rgba(37, 84, 128, 0.18);
  padding: 1.75rem 2rem;
  gap: 1.25rem;
  box-shadow: 0 6px 24px rgba(37, 84, 128, 0.1);
}

.support-options--single .support-option__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: none;
}

.support-options--single .support-option__icon img {
  width: 30px;
  height: 30px;
}

.support-options--single .support-option__body h2,
.support-options--single .support-option__body h3 {
  font-size: 1.15rem;
  color: var(--ee-ink);
}

.support-options--single .support-option__body p {
  font-size: 15px;
}

.support-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f5f8fb;
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  padding: 1.25rem 1.35rem;
}

.support-option__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--ee-line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-option__icon img {
  width: 24px;
  height: 24px;
}

.support-option__body {
  flex: 1 1 auto;
  min-width: 0;
}

.support-option__body h2,
.support-option__body h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ee-navy);
  letter-spacing: -0.3px;
}

.support-option__body p {
  margin: 0;
  font-size: 13px;
  color: var(--ee-muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.support-option .button {
  flex: none;
}

.prose code {
  font-family: var(--ee-mono);
  font-size: 0.9em;
  background: var(--ee-soft);
  color: var(--ee-navy);
  padding: 2px 6px;
  border-radius: 6px;
}

/* ── Pricing: "every feature" cards ────────────────────────────────────────── */

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.included-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  padding: 1.25rem 1.25rem;
  box-shadow: 0 2px 10px rgba(37, 84, 128, 0.05);
}

.included-card .cta-badges__check {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
}

.included-card p {
  margin: 0;
  font-weight: 700;
  color: var(--ee-ink);
  font-size: 14.5px;
}

@media (min-width: 640px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .included-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Checkout / storefront (Phase 7) ─────────────────────────────────────── */

.checkout,
.storefront {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.storefront__banner {
  border-radius: var(--ee-radius);
  overflow: hidden;
  margin: 0 0 1.5rem;
}

.storefront__banner img,
.event-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.storefront__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin: 0 0 1.25rem;
  background: var(--ee-soft);
  border-radius: var(--ee-radius);
}

.storefront__identity-copy {
  min-width: 0;
}

.storefront__identity h1,
.storefront__intro h1 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.5rem;
  font-weight: 700;
}

.storefront__logo {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  margin: 0;
  background: #fff;
}

.storefront--identity_card .storefront__identity .storefront__logo {
  width: 7rem;
  height: 7rem;
}

.storefront__tagline {
  color: var(--ee-muted);
  font-style: italic;
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.storefront__about {
  margin: 0 0 1rem;
}

.storefront__about-body {
  margin: 0;
  color: var(--ee-muted);
  line-height: 1.6;
}

.storefront__about-body > :first-child {
  margin-top: 0;
}

.storefront__about-body > :last-child {
  margin-bottom: 0;
}

.storefront__about-body p,
.storefront__about-body ul,
.storefront__about-body ol {
  margin: 0 0 0.75rem;
}

.storefront__about-body ul,
.storefront__about-body ol {
  padding-left: 1.25rem;
}

.storefront__about-body a {
  color: var(--ee-navy);
}

.storefront__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 2rem;
  font-size: 0.9375rem;
}

.storefront--banner_led .storefront__contact {
  margin: 0.85rem 0 1rem;
}

.storefront--banner_led .storefront__about {
  margin: 0 0 1.5rem;
}

.storefront__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ee-navy);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.storefront__contact-icon {
  flex-shrink: 0;
  display: block;
}

.storefront__contact-link:hover,
.storefront__contact-link:focus-visible {
  text-decoration: underline;
}

.storefront__contact-sep {
  color: var(--ee-muted-3);
}

/* Banner-led: hero banner with overlapping logo + title lockup */
.storefront__hero {
  position: relative;
  margin: 0 0 1.25rem;
}

.storefront--banner_led .storefront__banner {
  margin: 0;
}

.storefront--banner_led .storefront__hero:has(.storefront__banner) {
  margin-bottom: 0;
}

.storefront__intro {
  min-width: 0;
}

.storefront--banner_led .storefront__intro-lockup {
  --storefront-logo-size: 5.25rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  gap: 1rem;
  margin: 0 0 0.85rem;
}

.storefront--banner_led .storefront__hero:has(.storefront__banner) + .storefront__intro .storefront__intro-lockup {
  /* Half the logo overlaps the banner; leftover below leaves room above the title. */
  margin-top: calc(var(--storefront-logo-size) * -0.5);
  padding-top: 0.75rem;
  padding-left: 0.85rem;
  position: relative;
  z-index: 1;
}

.storefront--banner_led .storefront__intro-lockup .storefront__logo {
  flex: 0 0 var(--storefront-logo-size);
  width: var(--storefront-logo-size);
  height: var(--storefront-logo-size);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(15, 40, 80, 0.12);
}

.storefront--banner_led .storefront__intro-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.15rem;
  padding-bottom: 0.1rem;
}

.storefront--banner_led .storefront__intro-lockup h1 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.storefront--banner_led .storefront__intro-lockup .storefront__tagline {
  margin: 0;
}

@media (min-width: 521px) {
  .storefront--banner_led .storefront__intro-lockup {
    --storefront-logo-size: 6.5rem;
  }

  .storefront--banner_led .storefront__intro-lockup h1 {
    font-size: 1.75rem;
  }
}

/* No banner uploaded: centered header, regardless of chosen layout. */
.storefront__head--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
}

.storefront--identity_card .storefront__head--centered {
  background: var(--ee-soft);
  border-radius: var(--ee-radius);
  padding: 1.75rem 1.15rem;
}

.storefront__head--centered .storefront__logo {
  width: 7rem;
  height: 7rem;
  margin: 0 0 0.5rem;
}

.storefront__head--centered h1 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.storefront__head--centered .storefront__tagline {
  margin: 0;
}

.storefront__head--centered .storefront__about {
  max-width: 40rem;
  margin: 0.5rem 0 0;
}

.storefront__head--centered .storefront__about-body {
  text-align: center;
}

.storefront__head--centered .storefront__contact {
  justify-content: center;
  margin: 0.5rem 0 0;
}

.storefront__events-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}

.storefront__events-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.storefront__events-all {
  flex-shrink: 0;
  color: var(--ee-navy);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.storefront__events-all:hover,
.storefront__events-all:focus-visible {
  text-decoration: underline;
}

.storefront-event-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.storefront-event {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.storefront-event:hover,
.storefront-event:focus-visible {
  border-color: var(--ee-navy);
  box-shadow: 0 1px 0 rgba(15, 40, 80, 0.04);
}

.storefront-event__thumb {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: calc(var(--ee-radius) / 1.5);
  overflow: hidden;
  background: var(--ee-soft);
}

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

.storefront-event__body {
  flex: 1;
  min-width: 0;
}

.storefront-event__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.storefront-event__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  color: var(--ee-muted);
  font-size: 0.875rem;
  line-height: 1.35;
}

.storefront-event__icon {
  flex-shrink: 0;
  display: block;
  color: var(--ee-muted-3);
}

.storefront-event__aside {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  width: 100%;
  justify-content: flex-end;
  margin-left: 0;
  padding-left: 5.35rem;
}

.storefront-event__price {
  color: var(--ee-navy);
  font-size: 0.975rem;
  font-weight: 700;
  white-space: nowrap;
}

.storefront-event__chevron {
  display: block;
  color: var(--ee-muted-3);
}

@media (min-width: 521px) {
  .storefront-event {
    flex-wrap: nowrap;
  }

  .storefront-event__aside {
    width: auto;
    justify-content: normal;
    margin-left: auto;
    padding-left: 0;
  }
}


.event-card__media {
  display: block;
  overflow: hidden;
}

.checkout__lede {
  color: var(--ee-muted);
  margin: 0.25rem 0 1.5rem;
}

.checkout__eyebrow {
  color: var(--ee-navy);
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 0.35rem;
}

.checkout h1 {
  margin: 0.25rem 0 1.5rem;
}

.checkout-form fieldset {
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.25rem;
}

.checkout-form legend {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0 0.35rem;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.checkout-form__grid {
  display: flex;
  flex-direction: column;
}

.checkout-form__grid label {
  margin-bottom: 0.85rem;
}

.checkout-form__grid label:last-child {
  margin-bottom: 0;
}

@media (min-width: 560px) {
  .checkout-form__grid {
    flex-direction: row;
    gap: 1rem;
  }

  .checkout-form__grid label {
    flex: 1 1 0;
    margin-bottom: 0;
  }
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="number"],
.checkout-form input[type="date"],
.checkout-form select {
  min-height: 44px;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--ee-line);
  border-radius: 10px;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-form input[type="text"]:focus-visible,
.checkout-form input[type="email"]:focus-visible,
.checkout-form input[type="number"]:focus-visible,
.checkout-form input[type="date"]:focus-visible,
.checkout-form select:focus-visible {
  outline: none;
  border-color: var(--ee-navy);
  box-shadow: 0 0 0 3px rgba(37, 84, 128, 0.15);
}

.checkout-form input[type="text"]:user-invalid,
.checkout-form input[type="email"]:user-invalid,
.checkout-form select:user-invalid {
  border-color: #dc2626;
}

.checkout-form input[type="text"]:user-invalid:focus-visible,
.checkout-form input[type="email"]:user-invalid:focus-visible,
.checkout-form select:user-invalid:focus-visible {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.checkout-form__submit {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ee-navy);
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.checkout-form__submit:hover,
.checkout-form__submit:focus-visible {
  background: var(--ee-navy-dark);
}

.checkout-option,
.checkout-qty {
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
}

.checkout-qty input[type="number"] {
  width: 5rem;
  text-align: center;
}

.ticket-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ticket-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ee-line);
}

.ticket-code {
  font-family: var(--ee-mono);
  font-size: 0.95rem;
}

.confirmation__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #15803d;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 0.35rem;
}

.confirmation__event {
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.5rem;
}

.confirmation__event-org {
  color: var(--ee-muted);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.confirmation__event-org a {
  color: inherit;
}

.confirmation__event-name {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.confirmation__event-name a {
  color: inherit;
}

.confirmation__event-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  color: var(--ee-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.confirmation__event-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.confirmation__event-fact svg {
  flex-shrink: 0;
  color: var(--ee-navy);
}

.confirmation__event-fact a {
  color: inherit;
}

.confirmation__summary {
  margin-bottom: 2rem;
}

.confirmation__tickets-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.ticket-group {
  margin: 0 0 1.25rem;
}

.ticket-group__title {
  color: var(--ee-muted);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.ticket-group .ticket-list {
  margin: 0;
}

.ticket-list__holder {
  font-weight: 600;
}

.checkout__pending {
  color: var(--ee-muted);
  margin: 1rem 0;
}

.checkout__meeting {
  background: var(--ee-soft);
  border-radius: var(--ee-radius);
  padding: 1.15rem 1.25rem;
  margin: 1.5rem 0 0;
}

.checkout__meeting h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.checkout__meeting p {
  margin: 0.35rem 0;
  color: var(--ee-muted);
}

.checkout__meeting-session {
  font-weight: 600;
  color: var(--ee-ink) !important;
}

.confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;
}

/* Checkout funnel: baseline styling for classes select-tickets shares with
   checkout.html/pay.html so the flow doesn't go plain right after it. */

.checkout__fees {
  background: var(--ee-soft);
  border-radius: var(--ee-radius);
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.5rem;
}

.checkout__fees-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.checkout__fees-list {
  margin: 0;
}

.checkout__fees-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
}

.checkout__fees-list dt,
.checkout__fees-list dd {
  margin: 0;
  font-weight: 400;
  color: var(--ee-muted);
}

.checkout__fees-total {
  border-top: 1px solid var(--ee-line);
  margin-top: 0.25rem;
  padding-top: 0.6rem !important;
}

.checkout__fees-total dt,
.checkout__fees-total dd {
  font-weight: 700;
  color: var(--ee-ink);
  font-family: var(--ee-mono);
}

.checkout__total {
  font-family: var(--ee-mono);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 1.5rem;
}

.checkout__error {
  color: #b91c1c;
  font-weight: 600;
  margin: 0 0 1rem;
}

.checkout__event-terms {
  max-height: 12rem;
  overflow-y: auto;
  color: var(--ee-muted);
  font-size: 0.9rem;
  border: 1px solid var(--ee-line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 0 0 1rem;
}

.checkout-form__accept {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  font-weight: 400 !important;
}

.checkout-form__accept input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkout-form__accept a {
  color: var(--ee-navy);
}

.help {
  color: var(--ee-muted-3);
  font-size: 0.8125rem;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

/* Select tickets */

.select-tickets {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

.select-tickets__eyebrow {
  color: var(--ee-navy);
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 0.35rem;
}

.select-tickets h1 {
  margin: 0.25rem 0 1.5rem;
}

.select-tickets__section {
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.25rem;
}

.select-tickets__section legend {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0 0.35rem;
}

.select-tickets__panel {
  background: var(--ee-soft);
  border-radius: var(--ee-radius);
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.25rem;
}

.select-tickets__section--panel {
  border: none;
  padding: 0;
  margin: 0;
}

.select-tickets__section--panel legend {
  padding: 0;
}

.select-tickets__empty {
  color: var(--ee-muted);
  margin: 0.5rem 0 0;
}

.select-tickets__sessions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.75rem 0 0;
}

.select-tickets__session {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--ee-line);
  border-radius: 12px;
  cursor: pointer;
}

.select-tickets__session:has(input:checked) {
  border-color: var(--ee-navy);
  background: var(--ee-soft);
}

.select-tickets__session--single {
  margin: 0.75rem 0 0;
  cursor: default;
}

.select-tickets__session-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.select-tickets__session-name {
  font-weight: 600;
}

.select-tickets__session-time {
  font-family: var(--ee-mono);
  color: var(--ee-muted);
  font-size: 0.8125rem;
}

.select-tickets__tickets {
  margin: 0.5rem 0 0;
}

.select-tickets__ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--ee-line);
}

.select-tickets__ticket:first-child {
  border-top: none;
  padding-top: 0.25rem;
}

.select-tickets__ticket-info {
  min-width: 0;
}

.select-tickets__ticket-name {
  margin: 0;
  font-weight: 600;
}

.select-tickets__ticket-desc {
  margin: 0.15rem 0 0;
  color: var(--ee-muted);
  font-size: 0.8125rem;
}

.select-tickets__ticket-price {
  margin: 0.3rem 0 0;
  font-family: var(--ee-mono);
  color: var(--ee-navy);
  font-weight: 700;
  font-size: 0.9375rem;
}

.select-tickets__ticket-gst {
  font-family: var(--ee-sans);
  color: var(--ee-muted-3);
  font-weight: 400;
  font-size: 0.75rem;
}

.select-tickets__stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.select-tickets__stepper-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ee-line);
  border-radius: 50%;
  background: #fff;
  color: var(--ee-navy);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.select-tickets__stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.select-tickets__stepper-input {
  width: 2.25rem;
  border: none;
  background: transparent;
  font-family: var(--ee-mono);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  -moz-appearance: textfield;
}

.select-tickets__stepper-input::-webkit-outer-spin-button,
.select-tickets__stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select-tickets__bar {
  border-top: 1px solid rgba(37, 84, 128, 0.14);
  margin-top: 0.5rem;
}

.select-tickets__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
}

.select-tickets__bar-summary {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.select-tickets__bar-count {
  color: var(--ee-muted);
  font-size: 0.8125rem;
}

.select-tickets__bar-total {
  font-family: var(--ee-mono);
  font-weight: 700;
  font-size: 1.1rem;
}

.event-card__org,
.event-detail__org {
  font-size: 0.9rem;
  color: var(--ee-muted);
}

.event-detail__org {
  margin: 0.35rem 0 0.75rem;
}

.error-page {
  padding: 4rem 0;
  text-align: center;
}

.event-card__org a,
.event-detail__org a {
  color: var(--ee-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.embed {
  background: var(--ee-bg);
}

body.embed .checkout {
  padding: 1rem;
}
