.hero--events .hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero--events .hero__content {
  max-width: 640px;
}

.hero__subtitle {
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

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

.section__header {
  margin-bottom: var(--space-6);
}

.section__header--center {
  text-align: center;
}

.section__subtitle {
  margin-inline: auto;
}

.events-grid {
  align-items: stretch;
}

.events-card {
  display: flex;
  flex-direction: column;
}

.events-card__media {
  margin: 0 0 var(--space-4) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.events-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.events-list {
  padding-left: 1.1rem;
  margin-bottom: var(--space-3);
}

.events-list li {
  position: relative;
  margin-bottom: 0.45rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.events-list li::before {
  content: "•";
  position: absolute;
  left: -1.1rem;
  color: var(--color-primary);
}

.events-list--check li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  top: 0.4rem;
}

.events-card__cta {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}

.events-card__cta--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

.events-card__link {
  font-size: var(--font-size-sm);
}

.poker-section {
  align-items: center;
  gap: var(--space-8);
}

.poker-section__content {
  max-width: 640px;
}

.poker-section__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.poker-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.steps-list {
  padding-left: 1.3rem;
  margin: 0 0 var(--space-4) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.steps-list li {
  margin-bottom: 0.6rem;
}

.steps-list__cta {
  margin-top: var(--space-2);
}

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

.rules-section__card-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 992px) {
  .hero--events .hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .poker-section,
  .rules-section {
    gap: var(--space-6);
  }
}

@media (max-width: 640px) {
  .events-card__media img {
    height: 190px;
  }

  .cta-band__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
