.page-body.pickleball-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pickleball-page * {
  box-sizing: border-box;
}

.hero-panel,
.content-panel,
.source-panel {
  border: 1px solid #e6e8f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 12px 28px rgba(0, 10, 61, 0.08);
  padding: 1rem;
}

.hero-panel {
  background:
    radial-gradient(circle at top left, rgba(0, 10, 61, 0.14), transparent 32rem),
    linear-gradient(135deg, #ffffff 0%, #f5f7ff 62%, #eef8f3 100%);
  border-color: #d8def6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  margin: 0 0 0.55rem 0;
  background: #000a3d;
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-heading {
  margin: 0.15rem 0 0.75rem 0;
  color: #000a3d;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.subheading {
  margin: 0 0 0.65rem 0;
  color: #000a3d;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero-copy,
.styled-paragraph {
  color: #202433;
  line-height: 1.68;
  font-size: 1.02rem;
  margin: 0.35rem 0 0.75rem 0;
}

.hero-copy {
  max-width: 92ch;
  font-size: 1.08rem;
}

.styled-list {
  margin: 0.35rem 0 0.55rem 1.2rem;
  padding: 0;
  line-height: 1.55;
  color: #202433;
}

.styled-list li {
  margin: 0.25rem 0;
}

.compact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  list-style-position: inside;
  margin-left: 0;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.65rem 0;
}

.event-button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: #000a3d;
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 10, 61, 0.18);
}

.secondary-button {
  background: #eef1ff;
  color: #000a3d;
}

.event-button:focus-visible,
.event-card-summary:focus-visible,
.source-list a:focus-visible {
  outline: 3px solid #7da8ff;
  outline-offset: 3px;
}

.event-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #dde2ef;
  background: #ffffff;
}

.event-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  color: #202433;
}

.event-table th {
  background: #000a3d;
  color: #ffffff;
  text-align: left;
  font-weight: 700;
  padding: 0.8rem;
  font-size: 0.92rem;
  vertical-align: top;
}

.event-table td {
  padding: 0.72rem 0.8rem;
  border-top: 1px solid #edf0f6;
  vertical-align: top;
  font-size: 0.94rem;
  line-height: 1.45;
}

.event-table tbody tr:nth-child(even) td {
  background: #fafbff;
}

.event-table tbody tr:hover td {
  background: #f3f7ff;
}

.mobile-card-list {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.event-card {
  border: 1px solid #dde2ef;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 10, 61, 0.07);
}

.event-card[open] {
  border-color: #b9c4ee;
}

.event-card-summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
  color: #000a3d;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.event-card-summary::-webkit-details-marker {
  display: none;
}

.event-card-summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  line-height: 1;
  margin-left: 0.75rem;
}

.event-card[open] .event-card-summary::after {
  content: "-";
}

.event-definition {
  display: grid;
  grid-template-columns: minmax(8rem, 34%) 1fr;
  margin: 0;
}

.event-definition dt,
.event-definition dd {
  padding: 0.65rem 0.8rem;
  border-top: 1px solid #edf0f6;
  line-height: 1.45;
}

.event-definition dt {
  font-weight: 800;
  color: #000a3d;
  background: #fbfcff;
}

.event-definition dd {
  margin: 0;
  color: #202433;
  overflow-wrap: anywhere;
}

.source-panel {
  margin-bottom: 1rem;
}

.source-list a {
  color: #000a3d;
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.logo {
  width: 38px;
  height: auto;
}

.topnav-container ul {
  display: flex;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
}

.hamburger-menu {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .topnav-container {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .page-body.pickleball-page {
    padding: 0.75rem;
  }

  .hero-panel,
  .content-panel,
  .source-panel {
    border-radius: 14px;
    padding: 0.85rem;
  }

  .compact-list {
    grid-template-columns: 1fr;
  }

  .event-table-wrap {
    display: none;
  }

  .mobile-card-list {
    display: flex;
  }

  .table-actions {
    display: flex;
  }
}

@media (min-width: 961px) {
  .table-actions {
    display: none;
  }
}

@media (max-width: 560px) {
  .section-heading {
    font-size: 2rem;
    letter-spacing: -0.035em;
  }

  .hero-copy,
  .styled-paragraph {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .event-definition {
    grid-template-columns: 1fr;
  }

  .event-definition dt {
    padding-bottom: 0.25rem;
  }

  .event-definition dd {
    padding-top: 0.25rem;
  }
}
