.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-layout__image {
  justify-self: center;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.hero-meta {
  max-width: 32rem;
}

.section-header {
  max-width: 40rem;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  margin-top: var(--space-3);
}

.tournaments-grid {
  gap: var(--space-8);
  align-items: flex-start;
}

.tournaments-grid--reverse {
  direction: rtl;
}

.tournaments-grid--reverse > * {
  direction: ltr;
}

.tournaments-list {
  list-style: none;
  padding-left: 0;
}

.tournaments-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.tournaments-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.tournaments-subheading {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.tournaments-schedule-head {
  margin-bottom: var(--space-4);
}

.tournaments-schedule-cta {
  justify-self: flex-end;
}

.btn.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: var(--font-size-xs);
}

.tournaments-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.tournaments-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.tournaments-steps {
  counter-reset: tournaments-step;
  list-style: none;
  padding-left: 0;
}

.tournaments-steps li {
  counter-increment: tournaments-step;
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tournaments-steps li::before {
  content: counter(tournaments-step);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  background: var(--color-primary-soft);
  color: #ffeef1;
}

.tournaments-cta-card .card__title {
  margin-bottom: var(--space-2);
}

.tournaments-recap__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.tournaments-faq {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-6);
}

.tournaments-faq-item {
  border-radius: var(--radius-md);
  background-color: var(--color-surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-3);
}

.tournaments-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.tournaments-faq-item summary::-webkit-details-marker {
  display: none;
}

.tournaments-faq-item summary h3 {
  font-size: var(--font-size-base);
}

.tournaments-faq-item[open] {
  background: radial-gradient(circle at top, rgba(231, 43, 69, 0.2), transparent 65%), var(--color-surface-soft);
}

.tournaments-faq-item p {
  margin-top: var(--space-3);
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.2fr);
  }

  .hero-layout__image {
    order: -1;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .tournaments-grid--reverse {
    direction: ltr;
  }

  .tournaments-schedule-cta {
    justify-self: flex-start;
  }
}
