.ast-event-page {
  --ast-ink: #13222f;
  --ast-soft-ink: #52606d;
  --ast-line: #d8e0e8;
  --ast-paper: #ffffff;
  --ast-alt: #f3f6f8;
  --ast-brand: #c5442d;
  --ast-brand-deep: #902d1d;
  --ast-accent: #0f6c76;
  --ast-shadow: 0 18px 50px rgba(19, 34, 47, 0.08);
  color: var(--ast-ink);
  background: linear-gradient(180deg, #f9fafb 0%, #edf2f5 100%);
  margin: 0 calc(50% - 50vw);
  padding-bottom: 4rem;
  font-family: Georgia, "Times New Roman", serif;
}

.ast-container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.ast-hero {
  position: relative;
  padding: 7rem 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(197, 68, 45, 0.42), transparent 32%),
    linear-gradient(135deg, #12212d 0%, #203849 45%, #365362 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.ast-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 25, 0.2), rgba(7, 18, 25, 0.55));
}

.ast-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.ast-hero__eyebrow,
.ast-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin: 0 0 0.75rem;
  opacity: 0.78;
}

.ast-hero__title {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.95;
  margin: 0;
}

.ast-hero__subtitle {
  max-width: 48rem;
  font-size: 1.2rem;
  line-height: 1.65;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.ast-hero__meta,
.ast-button-strip,
.ast-button-row,
.ast-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.ast-hero__meta {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
}

.ast-hero__meta span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.ast-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.ast-section {
  padding: 3.2rem 0;
}

.ast-section--tight {
  padding: 1.6rem 0 0;
}

.ast-section--alt {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(216, 224, 232, 0.8);
  border-bottom: 1px solid rgba(216, 224, 232, 0.8);
}

.ast-section__title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.ast-grid {
  display: grid;
  gap: 1.2rem;
}

.ast-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ast-grid--cards,
.ast-sponsor-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  display: grid;
  gap: 1rem;
}

.ast-card {
  background: var(--ast-paper);
  border: 1px solid rgba(216, 224, 232, 0.9);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--ast-shadow);
}

.ast-card h2,
.ast-card h3,
.ast-sponsor-group h3 {
  margin-top: 0;
}

.ast-card__status,
.ast-price {
  font-weight: 700;
  color: var(--ast-brand-deep);
}

.ast-results-logo {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.1rem;
}

.ast-results-logo img {
  display: block;
  max-width: min(100%, 220px);
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ast-price {
  font-size: 1.7rem;
  margin: 0.75rem 0;
}

.ast-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.ast-button:hover {
  transform: translateY(-1px);
}

.ast-button--primary {
  background: var(--ast-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(197, 68, 45, 0.25);
}

.ast-button--secondary {
  background: var(--ast-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 108, 118, 0.2);
}

.ast-button--outline {
  border-color: var(--ast-ink);
  color: var(--ast-ink);
  background: transparent;
}

.ast-timeline {
  display: grid;
  gap: 1rem;
}

.ast-timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ast-line);
}

.ast-timeline__time {
  font-weight: 700;
  color: var(--ast-brand-deep);
}

.ast-timeline__body h3 {
  margin: 0 0 0.35rem;
}

.ast-muted {
  color: var(--ast-soft-ink);
}

.ast-list {
  margin: 0 0 1rem 1rem;
}

.ast-rich-text p:first-child {
  margin-top: 0;
}

.ast-image-text__media img,
.ast-sponsor-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.ast-faq {
  display: grid;
  gap: 0.8rem;
}

.ast-faq__item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ast-line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.ast-faq__item summary {
  cursor: pointer;
  font-weight: 700;
}

.ast-faq__answer {
  margin-top: 0.75rem;
}

.ast-sponsor-group + .ast-sponsor-group {
  margin-top: 1.7rem;
}

.ast-sponsor-card {
  background: var(--ast-paper);
  border: 1px solid rgba(216, 224, 232, 0.9);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.ast-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ast-social-links a {
  color: var(--ast-accent);
  font-weight: 700;
}

.ast-embed iframe,
.ast-embed video {
  width: 100%;
  max-width: 100%;
  border: 0;
}

@media (max-width: 780px) {
  .ast-grid--two,
  .ast-timeline__item {
    grid-template-columns: 1fr;
  }

  .ast-hero {
    padding: 5.5rem 0 4rem;
  }
}
