.hero--regulament {
  position: relative;
  padding-top: calc(var(--space-12) + var(--navbar-height));
  padding-bottom: var(--space-16);
}

.hero-regulament-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.hero-regulament-copy {
  max-width: 40rem;
}

.hero-regulament-copy .hero-title span {
  display: block;
}

.hero-regulament-aside {
  display: flex;
  justify-content: flex-end;
}

.hero-regulament-card {
  max-width: 24rem;
  padding: var(--space-6);
}

.hero-regulament-card-title {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-4);
}

.hero-regulament-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
  margin: 0;
  font-size: var(--font-size-sm);
}

.hero-regulament-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text-muted);
}

.hero-regulament-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}

.regulament-local-nav {
  position: sticky;
  top: var(--navbar-height);
  z-index: 20;
  background: linear-gradient(to bottom, rgba(5, 7, 19, 0.96), rgba(5, 7, 19, 0.92));
  border-top: 1px solid rgba(245, 195, 101, 0.14);
  border-bottom: 1px solid rgba(245, 195, 101, 0.14);
  backdrop-filter: blur(18px);
}

.regulament-local-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.regulament-local-nav-inner a {
  color: var(--color-text-muted);
}

.regulament-local-nav-inner a:hover {
  color: var(--color-primary-strong);
}

.regulament-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: var(--space-10);
}

.regulament-content {
  max-width: 44rem;
}

.regulament-block + .regulament-block {
  margin-top: var(--space-10);
}

.regulament-block-header {
  margin-bottom: var(--space-3);
}

.regulament-block-header h2 {
  margin-bottom: var(--space-2);
}

.regulament-block-tag {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.regulament-figure {
  margin-top: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background: rgba(5, 7, 19, 0.9);
}

.regulament-figure img {
  width: 100%;
  height: auto;
}

.regulament-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.regulament-updated {
  font-size: var(--font-size-xs);
}

.regulament-sidebar {
  position: relative;
}

.regulament-sidebar-card {
  position: sticky;
  top: calc(var(--navbar-height) + 5rem);
}

.regulament-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.regulament-sidebar-links a {
  color: var(--color-text-muted);
}

.regulament-sidebar-links a:hover {
  color: var(--color-primary-strong);
}

.regulament-block--last {
  padding-bottom: 0;
}

@media (max-width: 960px) {
  .hero-regulament-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-regulament-aside {
    justify-content: flex-start;
  }

  .hero-regulament-card {
    max-width: 100%;
  }

  .regulament-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .regulament-sidebar-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero--regulament {
    padding-top: calc(var(--space-10) + var(--navbar-height));
    padding-bottom: var(--space-12);
  }

  .regulament-local-nav-inner {
    gap: var(--space-3);
  }
}
