/*
Theme Name: Happy Dinkers
Theme URI: https://happydinkers.com
Author: Happy Dinkers
Description: A responsive WordPress theme for Happy Dinkers pickleball games, DUPR sessions, community updates, articles, and comments.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: happy-dinkers
*/

:root {
  --ink: #17211c;
  --muted: #5d665f;
  --paper: #fbfbf3;
  --court: #147f7a;
  --lime: #d8fa4e;
  --coral: #ff6b57;
  --sky: #ddf5ff;
  --line: rgba(23, 33, 28, 0.14);
  --shadow: 0 22px 70px rgba(23, 33, 28, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

html {
  font-size: 90%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(221, 245, 255, 0.8), rgba(251, 251, 243, 0) 520px),
    var(--paper);
  line-height: 1.5;
}

main,
section,
.content-page {
  scroll-margin-top: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px clamp(18px, 4vw, 50px);
  background: rgba(251, 251, 243, 0.96);
  box-shadow: 0 1px 0 rgba(23, 33, 28, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 251, 243, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 176px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(23, 33, 28, 0.14);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(23, 33, 28, 0.15);
}

.brand-mark img {
  display: block;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  object-fit: cover;
}

.inline-brand-logo {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.14em;
  background-color: #2f2f2f;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 33, 28, 0.5), 0 3px 8px rgba(23, 33, 28, 0.14);
  vertical-align: -0.08em;
}

.inline-brand-logo-small {
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.18em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.06rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 18px);
  color: rgba(23, 33, 28, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav-icon {
  display: none;
}

.site-nav-text {
  display: inline;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  position: relative;
  appearance: none;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251, 251, 243, 0.82);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  cursor: pointer;
  line-height: 0;
  overflow: hidden;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, width 180ms ease;
}

.nav-toggle span + span {
  transform: translate(-50%, 4px);
}

.nav-toggle span:first-child {
  transform: translate(-50%, -7px);
}

.site-header.is-open .nav-toggle {
  background: #ffffff;
  border-color: rgba(23, 33, 28, 0.18);
  box-shadow: 0 8px 20px rgba(23, 33, 28, 0.08);
}

.site-header.is-open .nav-toggle span {
  width: 20px;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1180px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px clamp(20px, 6vw, 84px) 80px;
  color: white;
}

.home-shell {
  background:
    linear-gradient(180deg, #f7fff5 0, #fbfbf3 360px),
    var(--paper);
}

.latest-first {
  padding-top: 126px;
}

.latest-first-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.latest-copy {
  max-width: 820px;
}

.latest-copy h1 {
  color: var(--ink);
  max-width: 1050px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1;
}

.latest-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.latest-photo,
.static-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.latest-photo {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.latest-photo-wide {
  margin-top: 22px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 24, 0.88), rgba(8, 28, 24, 0.46) 48%, rgba(8, 28, 24, 0.14)),
    linear-gradient(0deg, rgba(8, 28, 24, 0.35), rgba(8, 28, 24, 0));
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.section {
  padding: clamp(34px, 4.8vw, 64px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 820px;
}

.section-heading p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.section-band {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.intro-grid > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats div,
.program-card,
.rate-card,
blockquote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.stats div {
  min-height: 132px;
  padding: 22px;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.stats span,
.rate-card span {
  color: var(--muted);
}

.program-grid,
.rate-list,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.program-card {
  min-height: 260px;
  padding: 28px;
}

.program-card p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--court);
  font-weight: 900;
}

.rates-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.rate-list {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.rate-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: end;
  padding: 24px;
}

.rate-card p {
  margin-bottom: 0;
  font-weight: 900;
}

.rate-card strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.rate-card span {
  grid-column: 1 / -1;
}

.rate-card.featured {
  background: var(--court);
  color: white;
}

.rate-card.featured span {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(190px, 24vw);
  gap: 16px;
  margin-top: 34px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--court);
}

.gallery-tile::before,
.gallery-tile::after {
  position: absolute;
  content: "";
}

.gallery-tile::before {
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.58);
}

.gallery-tile::after {
  width: 86px;
  height: 86px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: -46px -34px 0 -24px var(--coral);
}

.gallery-tile span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
}

.tile-court {
  grid-row: span 2;
}

.tile-ball {
  background: #fb9a4a;
}

.tile-team {
  background: #2c5fbe;
}

.tile-paddle {
  grid-column: span 2;
  background: #1d9f78;
}

.client-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.client-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: white;
  font-weight: 800;
}

.blog-preview {
  background: var(--paper);
}

.main-latest {
  position: relative;
}

.latest-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(22px, 5vw, 68px);
  max-width: none;
  align-items: end;
}

.latest-heading .eyebrow,
.latest-heading h2 {
  grid-column: 1;
}

.latest-heading p:last-child {
  grid-column: 2;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  margin-top: 34px;
  align-items: stretch;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.post-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-top: clamp(24px, 4vw, 42px);
}

.latest-layout .post-grid {
  margin-top: 0;
}

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

.post-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: white;
  box-shadow: var(--shadow);
}

.post-grid-featured .post-card:first-child {
  background: var(--court);
  color: white;
}

.post-grid-featured .post-card:first-child time,
.post-grid-featured .post-card:first-child p {
  color: rgba(255, 255, 255, 0.76);
}

.post-grid-featured .post-card:first-child .read-link {
  color: var(--lime);
}

.post-card time {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.post-card h3 {
  margin: 14px 0 12px;
}

.post-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.post-card p {
  color: var(--muted);
  line-height: 1.6;
}

.read-link {
  color: var(--court);
  font-weight: 900;
}

.latest-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.latest-aside h3 {
  font-size: 1.6rem;
}

.latest-aside p {
  color: var(--muted);
  line-height: 1.65;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.topic-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--court);
  font-size: 0.9rem;
  font-weight: 900;
}

.static-home-content {
  background: white;
}

.static-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.static-copy,
.static-contact {
  min-width: 0;
}

.static-copy h2,
.static-contact h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.static-copy p,
.static-contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.static-photo {
  margin-top: 28px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.static-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #f7fff5;
  box-shadow: var(--shadow);
}

.static-contact .contact-form {
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.content-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 138px clamp(20px, 6vw, 84px) 90px;
}

.content-page h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.games-page .games-hero {
  max-width: none;
  padding-top: 86px;
  padding-bottom: 0;
}

.games-hero h1 {
  max-width: 1180px;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  font-weight: 720;
  line-height: 1.12;
}

.games-hero > p:last-child {
  max-width: 1180px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.single-post .content-page {
  max-width: 840px;
  padding-top: 96px;
}

.updates-archive-page {
  max-width: 840px;
  padding-top: 116px;
}

.single-post .content-page h1 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
  font-weight: 720;
  line-height: 1.12;
}

.single-post .entry-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.75vw, 1.48rem);
  font-weight: 680;
  line-height: 1.24;
}

.single-post .entry-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  font-weight: 660;
  line-height: 1.28;
}

.single-post .entry-content ol {
  padding-left: 1.25rem;
}

.single-post .entry-content ol li {
  margin-bottom: 18px;
  padding-left: 4px;
}

.single-post .entry-content ol li::marker {
  color: var(--court);
  font-weight: 650;
}

.single-post .entry-content ol h3 {
  margin-top: 0;
}

.single-post .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(82, 97, 89, 0.8);
  font-size: 0.88rem;
  font-weight: 520;
  line-height: 1.35;
}

.single-post .post-meta > * {
  display: inline-flex;
  align-items: center;
}

.single-post .post-meta > * + *::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 7px;
  border-radius: 999px;
  background: rgba(82, 97, 89, 0.34);
}

.single-post .post-meta a {
  color: inherit;
  font-weight: 560;
  text-decoration: none;
}

.single-post .post-meta a:hover {
  color: var(--court);
}

.single-post .entry-content:first-of-type {
  margin-bottom: 24px;
}

.single-post .entry-content + .entry-content {
  padding-top: clamp(6px, 1.5vw, 14px);
}

.single-post .entry-content p {
  line-height: 1.46;
}

.entry-content {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.68;
}

.entry-content a {
  color: #2b6cb0 !important;
  font-weight: 500 !important;
  text-decoration-line: underline !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 1.35px !important;
  text-underline-offset: 0.15em !important;
}

.entry-content a:hover,
.entry-content a:focus {
  color: #174a7e !important;
  text-decoration-thickness: 1.75px !important;
}

.entry-content a:visited {
  color: #295e95 !important;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.entry-content .post-photo {
  margin: 28px 0;
}

.entry-content .post-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.entry-content .post-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.entry-content .post-photo--aside {
  float: right;
  width: min(360px, 42%);
  margin: 0 0 18px 24px;
}

.entry-content .post-photo--aside-left {
  float: left;
  width: min(360px, 42%);
  margin: 0 24px 18px 0;
}

.entry-content .post-photo--aside img {
  aspect-ratio: 4 / 5;
}

.entry-content .post-photo--aside-left img {
  aspect-ratio: 4 / 5;
}

.entry-content .post-photo--aside figcaption {
  margin-top: 10px;
}

.entry-content .post-photo--aside-left figcaption {
  margin-top: 10px;
}

.entry-content .post-photo-points {
  margin: 16px 0 0;
  padding-left: 1.7rem;
}

.entry-content .post-photo-points li {
  margin-bottom: 10px;
  padding-left: 2px;
}

.entry-content .post-photo-points li::marker {
  color: var(--court);
  font-weight: 650;
}

.entry-content p,
.entry-content li,
.entry-content figcaption {
  line-height: 1.38;
}

.entry-content .spacer-sm {
  height: 12px;
}

.entry-content .spacer-md {
  height: 24px;
}

.entry-content .spacer-lg {
  height: 40px;
}

.entry-content .photo-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin: 24px 0;
  align-items: start;
  clear: both;
  width: 100%;
}

.entry-content .photo-thumb {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.entry-content .photo-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.entry-content .photo-thumb span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.entry-content .photo-thumb:hover img,
.entry-content .photo-thumb:focus-visible img {
  transform: scale(1.02);
}

.entry-content .photo-thumb::after {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 18, 16, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  opacity: 0.92;
}

.entry-content .photo-thumb:hover::after,
.entry-content .photo-thumb:focus-visible::after {
  opacity: 1;
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .entry-content .photo-thumb-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.entry-content .photo-thumb-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.entry-content .photo-thumb-grid--3-tight {
  column-count: 3;
  column-gap: 14px;
}

.entry-content .photo-thumb-grid > p,
.entry-content .photo-thumb-grid--3 > p,
.entry-content .photo-thumb-grid--3-tight > p {
  display: contents;
}

.entry-content .photo-thumb-grid > p,
.entry-content .photo-thumb-grid--3 > p,
.entry-content .photo-thumb-grid--3-tight > p {
  margin: 0;
}

.entry-content .photo-thumb-grid--3-tight .photo-thumb img {
  aspect-ratio: 4 / 2.7;
}

.entry-content .photo-thumb-grid--3-tight > .photo-thumb,
.entry-content .photo-thumb-grid--3-tight > p {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
}

.entry-content .photo-thumb-grid--3-tight .photo-thumb span {
  margin-top: 6px;
  font-size: 0.86rem;
}

.entry-content .photo-thumb-grid,
.entry-content .photo-thumb-grid--3,
.entry-content .photo-thumb-grid--3-tight,
.entry-content .photo-pair,
.entry-content .post-photo-grid {
  clear: both;
  width: 100%;
}

.entry-content .photo-break {
  clear: both;
  display: block;
  width: 100%;
  height: 16px;
  margin: 0;
}

@media (max-width: 780px) {
  .entry-content .photo-thumb-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-content .photo-thumb-grid--3-tight {
    column-count: 2;
    column-gap: 14px;
  }
}

@media (max-width: 480px) {
  .entry-content .photo-thumb-grid--3 {
    grid-template-columns: 1fr;
  }

  .entry-content .photo-thumb-grid--3-tight {
    column-count: 1;
    column-gap: 0;
  }
}

.entry-content .photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0;
  align-items: start;
  clear: both;
  width: 100%;
}

.entry-content .photo-pair__item {
  margin: 0;
}

.entry-content .photo-pair__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.entry-content .photo-pair__item figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 780px) {
  .entry-content .photo-pair {
    grid-template-columns: 1fr;
  }
}

.entry-content .photo-text-split {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 26px 0;
}

.entry-content .photo-text-split--magazine {
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: 18px;
}

.entry-content .photo-text-split--fit {
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  gap: 24px;
}

.entry-content .photo-text-split .post-photo,
.entry-content .photo-text-split .post-photo--fit-left,
.entry-content .photo-text-split .post-photo--aside-left,
.entry-content .photo-text-split .post-photo--aside {
  float: none;
  width: 100%;
  margin: 0;
}

.entry-content .photo-text-split--fit .post-photo {
  float: none;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.entry-content .photo-text-split--fit .post-photo a.tournament-lightbox-trigger {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
  border-radius: inherit;
  overflow: hidden;
}

.entry-content .post-photo--contain-left > a.tournament-lightbox-trigger,
.entry-content .post-photo--crop-tall > a.tournament-lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.entry-content .photo-text-split--fit .post-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: inherit;
  vertical-align: top;
}

.entry-content .photo-text-split__copy > :first-child {
  margin-top: 0;
}

.entry-content .photo-text-split__copy > :last-child {
  margin-bottom: 0;
}

.entry-content .photo-text-split__copy {
  padding-left: 8px;
}

.entry-content .post-photo--contain-left,
.entry-content .post-photo--crop-tall {
  float: left;
  width: min(390px, 42%);
  margin: 0 20px 18px 0;
  height: clamp(360px, 37vw, 440px);
  overflow: hidden;
}

.entry-content .post-photo--contain-left.post-photo--portrait,
.entry-content .post-photo--crop-tall.post-photo--portrait {
  width: min(500px, 50%);
  height: auto;
  overflow: visible;
}

.entry-content .post-photo--fit-left {
  float: left;
  width: 100%;
  margin: 0 20px 18px 0;
  height: auto;
  overflow: visible;
}

.entry-content .photo-text-split--fit .post-photo--fit-left {
  width: 100%;
  justify-self: stretch;
}

.entry-content .post-photo--contain-left img,
.entry-content .post-photo--crop-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.entry-content .post-photo--contain-left > a.tournament-lightbox-trigger img,
.entry-content .post-photo--crop-tall > a.tournament-lightbox-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  vertical-align: top;
}

.entry-content .post-photo--contain-left.post-photo--portrait > a.tournament-lightbox-trigger img,
.entry-content .post-photo--crop-tall.post-photo--portrait > a.tournament-lightbox-trigger img,
.entry-content .post-photo--contain-left.post-photo--portrait img,
.entry-content .post-photo--crop-tall.post-photo--portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  max-height: none;
  display: block;
}

.entry-content .post-photo--fit-left img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.entry-content .post-photo--contain-left figcaption,
.entry-content .post-photo--crop-tall figcaption {
  margin-top: 10px;
}

.entry-content .post-photo--contain-left > a.tournament-lightbox-trigger::after,
.entry-content .post-photo--crop-tall > a.tournament-lightbox-trigger::after {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 18, 16, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  opacity: 0.92;
}

.entry-content .post-photo--contain-left > a.tournament-lightbox-trigger:hover::after,
.entry-content .post-photo--contain-left > a.tournament-lightbox-trigger:focus-visible::after,
.entry-content .post-photo--crop-tall > a.tournament-lightbox-trigger:hover::after,
.entry-content .post-photo--crop-tall > a.tournament-lightbox-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(-1px);
}

.entry-content .post-photo--fit-left figcaption {
  margin-top: 10px;
}

@media (max-width: 860px) {
  .entry-content .photo-text-split {
    grid-template-columns: 1fr;
  }

  .entry-content .photo-text-split__copy {
    padding-left: 0;
  }

  .entry-content .post-photo--contain-left {
    float: none;
    width: 100%;
    margin: 26px 0;
  }

  .entry-content .post-photo--fit-left {
    float: none;
    width: 100%;
    margin: 26px 0;
  }

  .entry-content .photo-text-split--fit {
    grid-template-columns: 1fr;
  }
}

.entry-content .post-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.entry-content .post-photo-grid .post-photo,
.entry-content .post-photo-grid figure {
  margin: 0;
}

.entry-content .post-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.entry-content .post-photo-grid figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

@media (max-width: 780px) {
  .entry-content .post-photo--aside,
  .entry-content .post-photo--aside-left {
    float: none;
    width: 100%;
    margin: 26px 0;
  }
}

.entry-content .post-photo-grid--winners {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.entry-content .post-photo-grid--winners img {
  aspect-ratio: 4 / 5;
}

.archive-intro {
  margin-bottom: 30px;
}

.archive-intro h1 {
  margin-bottom: 12px;
}

.updates-archive-page .archive-intro h1 {
  max-width: 780px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.archive-intro p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.archive-post-list {
  display: grid;
  gap: 18px;
}

.archive-post-card {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 28, 0.08);
}

.archive-post-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #eef6ea;
}

.archive-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-post-card time {
  display: block;
  margin-top: 9px;
  color: rgba(82, 97, 89, 0.72);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: right;
}

.archive-post-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.16;
}

.archive-post-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.post-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.post-pagination .page-numbers {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--court);
  font-weight: 900;
}

.post-pagination .current {
  background: var(--court);
  color: #ffffff;
}

.game-detail-page {
  max-width: 1120px;
  padding-top: 104px;
  overflow-x: clip;
}

.game-detail-page h1 {
  max-width: 820px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.16;
}

.game-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
  min-width: 0;
}

.game-detail-hero,
.game-detail-side {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.game-detail-hero {
  margin-bottom: 22px;
  padding: clamp(18px, 3vw, 26px);
}

.game-detail-hero span,
.game-detail-hero strong {
  display: block;
}

.game-detail-hero span {
  color: var(--court);
  font-weight: 950;
}

.game-detail-hero strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.game-detail-page p,
.game-detail-page li,
.game-detail-page a,
.game-detail-page span,
.game-detail-page strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.confirmed-players-mobile,
.game-detail-mobile-side {
  display: none;
}

.game-detail-hero p {
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--muted);
}

.game-detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.game-detail-side div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: #fbfffa;
}

.game-detail-side strong,
.game-detail-side span {
  display: block;
}

.game-detail-side strong {
  color: var(--ink);
}

.game-detail-side span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.game-notes h2 {
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
}

.confirmed-players {
  margin-top: 4px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.confirmed-players h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
}

.confirmed-players ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.confirmed-players li {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  text-align: center;
}

.confirmed-players li.is-anonymous span:last-child {
  display: none;
}

.confirmed-players img,
.player-placeholder {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8ffd2;
}

.player-placeholder {
  display: inline-block;
}

.confirmed-players span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reclub-app-modal[hidden] {
  display: none;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal,
.reclub-app-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 33, 28, 0.46);
}

.contact-modal-card,
.reclub-app-modal-card {
  position: relative;
  width: min(100%, 420px);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-modal-close,
.reclub-app-modal-card button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.contact-modal-card strong,
.reclub-app-modal-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.2rem;
}

.contact-modal-card p,
.reclub-app-modal-card p {
  color: var(--muted);
  line-height: 1.55;
}

.contact-modal-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-modal-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.contact-modal-form small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-modal-form input,
.contact-modal-form textarea {
  padding: 12px 13px;
  font-weight: 400;
}

.contact-modal-form .button {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

.reclub-app-modal-card .store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 0;
}

.store-badge img {
  display: block;
  width: auto;
  height: 40px;
}

.store-badge:first-child img {
  width: 120px;
}

.store-badge:last-child img {
  width: 135px;
}

.reclub-web-fallback {
  display: inline-block;
  margin-top: 14px;
  color: var(--court);
  font-weight: 850;
}

.post-list {
  display: grid;
  gap: 22px;
}

.post-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.comments-area {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.comment-list {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.comment-body,
.comment-respond {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: white;
}

.comment-form {
  display: grid;
  gap: 14px;
}

.comment-form p {
  margin-bottom: 0;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 850;
}

.comment-form-cookies-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.comment-form-cookies-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.comment-form-cookies-consent label {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 480;
}

.comment-form .submit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--lime);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.testimonials {
  background: var(--ink);
  color: white;
}

.testimonials .eyebrow {
  color: var(--lime);
}

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

blockquote {
  margin: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

blockquote p {
  font-size: 1.25rem;
  line-height: 1.55;
}

cite {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 560px);
  gap: clamp(34px, 6vw, 84px);
  background: var(--sky);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
}

.contact-details div {
  display: grid;
  gap: 4px;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--court);
  outline: 3px solid rgba(20, 127, 122, 0.15);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--court);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--court);
  font-weight: 850;
}

/* Blog-first Happy Dinkers homepage */
.home-shell {
  background:
    linear-gradient(180deg, #effcff 0, #fbfbf3 560px),
    var(--paper);
}

.articles-lead {
  padding-top: 120px;
}

.articles-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
}

.articles-head h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.95;
}

.articles-head > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.post-grid-home {
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(220px, 1fr));
  margin-top: clamp(28px, 4vw, 46px);
}

.post-grid-home .post-card:first-child {
  background: #ffffff;
  border-color: rgba(20, 127, 122, 0.26);
}

.post-grid-home .post-card:first-child h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: #ffffff;
}

.home-feature-copy h2 {
  color: var(--ink);
}

.home-feature-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-feature-photo,
.gallery-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-feature-photo {
  aspect-ratio: 4 / 3;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button-light {
  border-color: var(--line);
  background: white;
  color: var(--court);
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.gallery-photo {
  aspect-ratio: 16 / 10;
}

.testimonials-light {
  background: #f7fff5;
}

.testimonials-light blockquote {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.testimonials-light cite {
  color: var(--muted);
}

.contact-section {
  background: #effcff;
}

/* DUPR-focused homepage refresh */
.dupr-home {
  background:
    linear-gradient(180deg, #f4fff8 0, #effcff 520px, #fbfbf3 920px),
    var(--paper);
}

.article-strip {
  padding-top: 96px;
  padding-bottom: clamp(22px, 3vw, 34px);
}

.article-strip-head {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: clamp(12px, 3vw, 34px);
  align-items: end;
}

.article-strip h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.article-teaser {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
}

.article-teaser time {
  color: var(--court);
  font-size: 0.78rem;
  font-weight: 900;
}

.article-teaser h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  line-height: 1.08;
}

.article-teaser p {
  color: var(--muted);
  line-height: 1.55;
}

.dupr-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(30px, 4vw, 52px);
  background: #ffffff;
}

.pill {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(20, 127, 122, 0.18);
  border-radius: 999px;
  padding: 11px 16px;
  background: #f4fff8;
  color: var(--court);
  font-weight: 900;
}

.dupr-hero h2,
.play-section h2,
.progress-section h2,
.tournament-section h2,
.final-cta h2 {
  color: var(--ink);
}

.dupr-hero-copy > p:not(.pill),
.play-section .section-heading p,
.progress-section .section-heading p,
.tournament-section p,
.training-lite .section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.dupr-hero-media {
  position: relative;
}

.dupr-hero-media img,
.final-cta img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.dupr-hero-media img {
  aspect-ratio: 16 / 8.5;
}

.dupr-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(23, 33, 28, 0.18);
  backdrop-filter: blur(14px);
}

.dupr-card strong,
.dupr-card span,
.dupr-card a {
  display: block;
}

.dupr-card strong {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.dupr-card span {
  color: var(--muted);
  line-height: 1.5;
}

.dupr-card a {
  margin-top: 14px;
  color: var(--court);
  font-weight: 900;
}

.dupr-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
  background: #ffffff;
}

.dupr-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f4fff8;
}

.dupr-stats strong,
.dupr-stats span {
  display: block;
}

.dupr-stats strong {
  color: var(--court);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.dupr-stats span {
  color: var(--muted);
  font-weight: 800;
}

.play-section {
  background: #fbfbf3;
  padding-top: clamp(30px, 4.5vw, 56px);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.venue-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.venue-card img {
  width: 100%;
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
}

.venue-card div {
  padding: 18px;
}

.venue-card span,
.highlight-list span {
  color: var(--muted);
}

.venue-card span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-card h3 {
  margin-top: 6px;
  font-size: 1.55rem;
}

.venue-card p,
.progress-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.progress-section {
  background: #ffffff;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.progress-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
}

.progress-grid span {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: #effcff;
  font-size: 1.35rem;
}

.tournament-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: clamp(20px, 4vw, 52px);
  background: #f4fff8;
}

.highlight-list {
  display: grid;
  gap: 14px;
}

.highlight-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.highlight-list strong,
.highlight-list span {
  display: block;
}

.highlight-list strong {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.training-lite {
  background: #ffffff;
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  background: #effcff;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 56px);
}

.final-cta img {
  aspect-ratio: 16 / 8.5;
}

@media (max-width: 1000px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 251, 243, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 12px;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.25;
  }

  .site-nav-icon {
    display: inline-flex;
    width: 1.8em;
    justify-content: center;
    flex: 0 0 auto;
    color: #5a6460;
    line-height: 1;
    position: relative;
  }

  .site-nav-icon::before {
    content: "";
    display: block;
    width: 1.28em;
    height: 1.28em;
    background-color: currentColor;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
  }

  .site-nav-icon--home::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='m4.5 10.5 7.5-6 7.5 6M6.5 9.8V20h11V9.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M9.8 20v-6h4.4v6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='m4.5 10.5 7.5-6 7.5 6M6.5 9.8V20h11V9.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M9.8 20v-6h4.4v6'/%3E%3C/svg%3E");
  }

  .site-nav-icon--updates::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5.1' y='4.8' width='13.8' height='14.4' rx='2.2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M8 9.1h8M8 12h8M8 14.9h5.2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5.1' y='4.8' width='13.8' height='14.4' rx='2.2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M8 9.1h8M8 12h8M8 14.9h5.2'/%3E%3C/svg%3E");
  }

  .site-nav-icon--games::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6.1' y='4.6' width='11.8' height='14.8' rx='2.2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M8 8.2h8M8 11.2h1.7M12.2 11.2h1.7M8 14.2h1.7M12.2 14.2h1.7'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M9.2 2.9v3M14.8 2.9v3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6.1' y='4.6' width='11.8' height='14.8' rx='2.2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M8 8.2h8M8 11.2h1.7M12.2 11.2h1.7M8 14.2h1.7M12.2 14.2h1.7'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M9.2 2.9v3M14.8 2.9v3'/%3E%3C/svg%3E");
  }

  .site-nav-icon--tournaments::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M8.4 4.7h7.2v2.1a3.6 3.6 0 0 1-2.9 3.5l-.4.1v1.6h2.3v1.8H9.4v-1.8h2.3v-1.6l-.4-.1a3.6 3.6 0 0 1-2.9-3.5V4.7Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M7.1 5.1H5.7c0 1.9.9 3.5 2.3 4.5M16.9 5.1h1.4c0 1.9-.9 3.5-2.3 4.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M8.4 4.7h7.2v2.1a3.6 3.6 0 0 1-2.9 3.5l-.4.1v1.6h2.3v1.8H9.4v-1.8h2.3v-1.6l-.4-.1a3.6 3.6 0 0 1-2.9-3.5V4.7Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' d='M7.1 5.1H5.7c0 1.9.9 3.5 2.3 4.5M16.9 5.1h1.4c0 1.9-.9 3.5-2.3 4.5'/%3E%3C/svg%3E");
  }

  .site-nav-icon--venues::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M12 21s5.5-5.1 5.5-10.3a5.5 5.5 0 0 0-11 0C6.5 15.9 12 21 12 21Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M12 13.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M12 21s5.5-5.1 5.5-10.3a5.5 5.5 0 0 0-11 0C6.5 15.9 12 21 12 21Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M12 13.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
  }

  .site-nav-icon--contact::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4.8' y='6.5' width='14.4' height='11.2' rx='2.1' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='m5.9 8.1 6.1 4.3 6.1-4.3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4.8' y='6.5' width='14.4' height='11.2' rx='2.1' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='m5.9 8.1 6.1 4.3 6.1-4.3'/%3E%3C/svg%3E");
  }

  .site-nav-text {
    display: inline;
  }

  .site-nav a::after {
    display: none;
  }

  .intro-grid,
  .rates-layout,
  .contact-section,
  .latest-heading,
  .latest-layout,
  .latest-first-grid,
  .static-content-grid,
  .articles-head,
  .home-feature,
  .gallery-section,
  .article-strip-head,
  .dupr-hero,
  .venue-grid,
  .progress-grid,
  .tournament-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .post-grid,
  .post-grid-home,
  .article-list,
  .dupr-stats {
    grid-template-columns: 1fr;
  }

  .latest-heading .eyebrow,
  .latest-heading h2,
  .latest-heading p:last-child {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 7px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 128px 20px 58px;
  }

  .latest-first {
    padding-top: 118px;
  }

  .articles-lead {
    padding-top: 112px;
  }

  .article-strip {
    padding-top: 88px;
  }

  .article-teaser {
    min-height: auto;
    padding: 16px;
  }

  .article-teaser p {
    margin-bottom: 0;
  }

  .dupr-hero-media img,
  .final-cta img {
    aspect-ratio: 16 / 9;
  }

  .venue-card img {
    aspect-ratio: 16 / 8.6;
  }

  .articles-head h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .article-strip h1 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .dupr-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .dupr-stats,
  .venue-grid,
  .progress-grid,
  .highlight-list {
    gap: 10px;
  }

  .latest-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .latest-photo {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 28, 24, 0.88), rgba(8, 28, 24, 0.45));
  }

  .stats,
  .rate-card,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .tile-court,
  .tile-paddle {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final homepage redesign */
.home-page {
  background:
    linear-gradient(180deg, #effcff 0, #f8fff4 560px, #fbfbf3 1000px),
    var(--paper);
}

.home-page .content-section {
  padding-top: clamp(18px, 2.4vw, 34px);
  padding-bottom: clamp(18px, 2.4vw, 34px);
}

.home-page .home-featured-game-section {
  padding-top: clamp(46px, 4.6vw, 64px);
  padding-bottom: clamp(0px, 0.2vw, 3px);
}

.home-page.has-featured-game .home-featured-game-section {
  padding-top: clamp(54px, 5vw, 72px);
}

.updates-strip,
.dupr-landing,
.content-section,
.quick-week {
  padding-inline: clamp(18px, 5vw, 72px);
}

.updates-strip {
  padding-top: clamp(10px, 1.1vw, 18px);
  padding-bottom: clamp(8px, 1.8vw, 16px);
}

.home-page.no-featured-game .updates-strip {
  padding-top: clamp(64px, 6vw, 96px);
}

.updates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 1fr);
  gap: clamp(12px, 2.2vw, 28px);
  align-items: stretch;
}

.updates-title {
  display: block;
  margin-bottom: 10px;
}

.updates-title h1 {
  max-width: 720px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  font-weight: 760;
  line-height: 1.08;
}

.updates-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.update-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(23, 33, 28, 0.08);
}

.update-item-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #eef6ea;
}

.update-item-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-item-body {
  min-width: 0;
}

.update-item time {
  display: block;
  margin-top: 7px;
  color: rgba(82, 97, 89, 0.72);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: right;
}

.update-item h2 {
  margin-bottom: 5px;
  font-size: clamp(1.02rem, 1.28vw, 1.2rem);
  line-height: 1.16;
}

.update-item p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.updates-more-link {
  margin-top: 12px;
}

.updates-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.updates-feature.social-proof-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 255, 245, 0.98)),
    #ffffff;
}

.dupr-landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(14px, 2.8vw, 32px);
  align-items: center;
  padding-top: clamp(18px, 2.6vw, 30px);
  padding-bottom: clamp(18px, 2.6vw, 30px);
  background: #ffffff;
}

.dupr-landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(14px, 2.8vw, 32px);
  align-items: start;
  padding-top: clamp(18px, 2.6vw, 30px);
  padding-bottom: clamp(18px, 2.6vw, 30px);
  background: #ffffff;
}

.social-proof-panel-head {
  display: grid;
  gap: 5px;
}

.social-proof-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.34rem, 1.82vw, 1.88rem);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: 0;
}

.social-proof-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.social-proof-photo {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 7.2;
  background: #eef5ef;
  box-shadow: 0 12px 26px rgba(18, 83, 50, 0.08);
}

.social-proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.social-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.social-proof-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  border: 1px solid rgba(20, 140, 78, 0.16);
  border-radius: 8px;
  padding: 9px 11px 8px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(18, 83, 50, 0.08);
}

.social-proof-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: rgba(254, 188, 23, 0.16);
}

.social-proof-label,
.social-proof-number {
  position: relative;
  z-index: 1;
}

.social-proof-label {
  color: var(--court);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}

.social-proof-number {
  margin-top: 2px;
  color: var(--ink);
  font-size: clamp(1.28rem, 2.05vw, 1.74rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.social-proof-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: auto;
  margin-top: 2px;
  padding: 0;
  color: var(--court);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.social-proof-cta-text {
  text-decoration: none;
}

.social-proof-cta-arrow {
  margin-left: 0.2em;
  text-decoration: none;
}

.social-proof-cta:hover .social-proof-cta-text {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.community-gallery-section {
  padding-top: clamp(18px, 2.4vw, 32px);
  padding-bottom: clamp(6px, 0.9vw, 14px);
}

.community-gallery-intro {
  margin: 8px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.community-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.community-gallery-head .section-kicker {
  max-width: 760px;
}

.community-gallery-head .button {
  margin-bottom: 2px;
}

.community-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.community-gallery-item {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  align-content: start;
}

.community-gallery-item-media {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #eef5ef;
  box-shadow: 0 14px 32px rgba(18, 83, 50, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.community-gallery-item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--gallery-focus, center center);
  border-radius: 8px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.community-gallery-item:hover .community-gallery-item-media img,
.community-gallery-item:focus-visible .community-gallery-item-media img {
  transform: scale(1.01);
}

.community-gallery-item:hover .community-gallery-item-media,
.community-gallery-item:focus-visible .community-gallery-item-media {
  box-shadow: 0 18px 38px rgba(18, 83, 50, 0.14);
}

.community-gallery-item-meta {
  display: grid;
  gap: 6px;
  padding: 4px 3px 0;
}

.community-gallery-item-meta strong {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.32;
  color: var(--ink);
  font-weight: 480;
  white-space: normal;
}

.community-gallery-item-meta small {
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.32;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(82, 97, 89, 0.74);
  font-weight: 440;
}

.community-gallery-archive-link {
  display: inline-flex;
  justify-content: center;
}

.community-gallery-featured {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 72px);
  margin-top: 0;
}

.community-gallery-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: clamp(14px, 2vw, 24px);
  width: 100%;
  margin: 0;
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid rgba(23, 33, 28, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(23, 33, 28, 0.09);
  text-align: left;
  color: inherit;
}

.community-gallery-featured-media-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.community-gallery-featured-media {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  background: #eef5ef;
  box-shadow: 0 14px 32px rgba(18, 83, 50, 0.08);
}

.community-gallery-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease, opacity 220ms ease;
}

.community-gallery-featured-card:hover .community-gallery-featured-media img,
.community-gallery-featured-card:focus-visible .community-gallery-featured-media img {
  transform: scale(1.02);
}

.community-gallery-featured-card:hover .community-gallery-featured-media,
.community-gallery-featured-card:focus-visible .community-gallery-featured-media {
  box-shadow: 0 18px 38px rgba(18, 83, 50, 0.12);
}

.community-gallery-featured-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 14px 10px 14px 0;
}

.community-gallery-featured-kicker {
  color: rgba(82, 97, 89, 0.76);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-gallery-featured-title {
  font-family: inherit;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  font-weight: 650;
  line-height: 1.35;
}

.community-gallery-featured-caption {
    font-family: inherit;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
    white-space: pre-line;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
  }
  
.community-gallery-featured-caption p {
    margin: 0 !important;
    line-height: 1.42;
  }
  
.community-gallery-featured-caption p:last-child {
    margin-bottom: 0;
  }

.community-lightbox-caption,
.community-lightbox-caption * {
  font-family: inherit;
}

.community-lightbox-caption .community-lightbox-title {
  font-weight: 700;
}

.community-lightbox-caption .community-lightbox-copy {
  font-weight: 400;
  white-space: pre-line;
}

.community-lightbox-caption .community-lightbox-date {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.community-gallery-featured-date {
  margin: 4px 0 0;
  color: rgba(82, 97, 89, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.community-gallery-featured-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 0;
}

.community-gallery-featured-meta div {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 33, 28, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfff9 0%, #f4fff0 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.community-gallery-featured-meta-label {
  color: rgba(82, 97, 89, 0.75);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.community-gallery-featured-meta-value {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.community-gallery-featured-cta {
  justify-self: start;
  margin-top: 4px;
  cursor: pointer;
}

.community-gallery-featured-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.community-gallery-featured-cta-wrap .button {
  cursor: pointer;
}

.community-gallery-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 26px;
  margin-top: 22px;
}

.community-gallery-archive-card {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  align-content: start;
}

.community-gallery-archive-image {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #eef5ef;
  box-shadow: 0 14px 32px rgba(18, 83, 50, 0.1);
}

.community-gallery-archive-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.community-gallery-archive-card:hover .community-gallery-archive-image img,
.community-gallery-archive-card:focus-visible .community-gallery-archive-image img {
  transform: scale(1.02);
}

.community-gallery-archive-card:hover .community-gallery-archive-image,
.community-gallery-archive-card:focus-visible .community-gallery-archive-image {
  box-shadow: 0 18px 38px rgba(18, 83, 50, 0.14);
}

.community-gallery-archive-meta {
  display: grid;
  padding: 3px 3px 0;
}

.community-gallery-archive-meta strong {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.4;
    font-weight: 500;
  }

.archive-intro-text {
  margin: 8px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.landing-points {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.landing-points div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  border: 1px solid rgba(20, 140, 78, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  background:
    linear-gradient(135deg, rgba(254, 188, 23, 0.08), rgba(255, 255, 255, 0) 48%),
    #f7fff5;
  box-shadow: 0 10px 18px rgba(18, 83, 50, 0.05);
}

.landing-points span {
  font-size: 1.05rem;
  line-height: 1;
}

.landing-points strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.landing-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20, 140, 78, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(18, 83, 50, 0.1);
}

.landing-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.landing-intro {
  max-width: 640px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.56;
}

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

.landing-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  border: 1px solid rgba(20, 140, 78, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  background:
    linear-gradient(135deg, rgba(254, 188, 23, 0.08), rgba(255, 255, 255, 0) 48%),
    #f7fff5;
  box-shadow: 0 10px 18px rgba(18, 83, 50, 0.05);
}

.coming-soon {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px dashed rgba(20, 140, 78, 0.28);
  border-radius: 8px;
  background: rgba(247, 255, 245, 0.82);
}

.coming-soon-label {
  margin-bottom: 4px;
  color: var(--court);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.coming-soon-text {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.45;
}

.landing-media {
  display: grid;
  gap: 12px;
  align-content: start;
}

.landing-media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 140, 78, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 255, 245, 0.96)),
    #ffffff;
  box-shadow: 0 12px 26px rgba(18, 83, 50, 0.08);
}

.landing-media-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -24px;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(254, 188, 23, 0.14);
}

.landing-media-card .eyebrow,
.landing-media-card strong,
.landing-media-card .button {
  position: relative;
  z-index: 1;
}

.landing-media-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

.landing-media-card .button {
  margin-top: 12px;
}

.landing-media-card-primary {
  min-height: 188px;
}

.landing-media-card-secondary {
  min-height: 0;
}

.landing-copy h2 {
  color: var(--ink);
  max-width: 760px;
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  font-weight: 760;
  line-height: 1.08;
}

.landing-copy > p:not(.pill) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.icon-button {
  gap: 8px;
}

.icon-button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.68rem;
  font-weight: 950;
}

.button-light.icon-button span {
  background: rgba(23, 33, 28, 0.08);
}

.landing-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.landing-metrics div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  border: 1px solid rgba(20, 140, 78, 0.18);
  border-radius: 8px;
  padding: 13px 13px 12px;
  background:
    linear-gradient(135deg, rgba(254, 188, 23, 0.16), rgba(255, 255, 255, 0) 44%),
    #f5fff8;
  box-shadow: 0 12px 26px rgba(18, 83, 50, 0.07);
}

.landing-metrics div::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(20, 140, 78, 0.08);
}

.landing-metrics strong,
.landing-metrics span {
  display: block;
  position: relative;
  z-index: 1;
}

.landing-metrics .metric-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 999px;
  background: var(--court);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 7px 16px rgba(20, 140, 78, 0.18);
}

.landing-metrics strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.landing-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.25;
  text-transform: uppercase;
}

.landing-media {
  position: relative;
}

.landing-media img,
.closing-cta img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.landing-media img {
  aspect-ratio: 16 / 9;
}

.play-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: block;
  width: min(300px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(23, 33, 28, 0.16);
  color: inherit;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.play-card:hover,
.play-card:focus-visible {
  border-color: rgba(20, 127, 122, 0.45);
  box-shadow: 0 20px 48px rgba(23, 33, 28, 0.22);
  transform: translateY(-2px);
}

.play-card:focus-visible {
  outline: 3px solid rgba(20, 127, 122, 0.22);
  outline-offset: 3px;
}

.play-card strong,
.play-card span {
  display: block;
}

.play-card strong {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.play-card span {
  color: var(--muted);
  line-height: 1.45;
}

.content-section {
  padding-top: clamp(22px, 3vw, 42px);
  padding-bottom: clamp(22px, 3vw, 42px);
}

.quick-week {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(23, 33, 28, 0.08);
  border-bottom: 1px solid rgba(23, 33, 28, 0.08);
  background: #ffffff;
}

.quick-week-title,
.quick-week-grid > div,
.quick-week-grid > a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.quick-week-title {
  flex: 0 0 auto;
  color: var(--ink);
}

.quick-week-title strong,
.quick-week-grid strong,
.quick-week-grid small {
  display: block;
}

.quick-week-grid {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  min-width: min(100%, 720px);
}

.quick-week-grid a {
  color: var(--ink);
}

.quick-week-grid strong {
  font-size: 0.82rem;
  line-height: 1.12;
  white-space: nowrap;
}

.quick-week-grid small {
  display: none;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

.mini-icon {
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #f2ffe5;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(23, 33, 28, 0.12);
}

.quick-week-title .mini-icon {
  background: #ffd84a;
  box-shadow: inset 0 0 0 1px rgba(23, 33, 28, 0.22);
}

.mini-icon-inline {
  display: inline-grid;
  width: 22px;
  height: 22px;
  font-size: 0.62rem;
  vertical-align: middle;
}

.section-kicker {
  max-width: 860px;
}

.section-kicker .eyebrow {
  display: flex;
  gap: 7px;
  align-items: center;
}

.section-kicker h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  font-weight: 760;
  line-height: 1.08;
}

.home-tournaments-head .section-kicker h2,
.community-gallery-section .section-kicker h2 {
  font-size: clamp(1.65rem, 2.15vw, 2.3rem);
  font-weight: 760;
}

.section-kicker p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
}

.sessions-section {
  background: #fbfbf3;
}

.home-page .sessions-section {
  padding-top: clamp(2px, 0.5vw, 8px);
}

.reclub-games-section {
  background: #f7fff5;
}

.home-page .reclub-games-section {
  padding-top: clamp(6px, 1vw, 14px);
  padding-bottom: clamp(8px, 1.1vw, 16px);
}

.games-page .reclub-games-section {
  padding-top: 10px;
}

.home-featured-game-section {
  padding-top: 0;
  padding-bottom: 0;
}

.home-featured-game {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
  padding: clamp(10px, 1.3vw, 16px);
  border: 1px solid rgba(23, 33, 28, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(216, 255, 190, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(252, 255, 249, 0.99) 0%, rgba(241, 250, 245, 0.99) 100%);
  box-shadow: 0 24px 50px rgba(18, 83, 50, 0.10);
}

.home-featured-game-visual {
  position: relative;
  min-width: 0;
}

.home-featured-game-media {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #eef5ef;
  box-shadow: 0 18px 36px rgba(18, 83, 50, 0.16);
  position: relative;
  isolation: isolate;
}

.home-featured-game-media img,
.home-featured-game-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.home-featured-game-image {
  aspect-ratio: 4 / 1;
  object-fit: cover;
  object-position: center center;
}

.home-featured-game-placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  color: rgba(23, 33, 28, 0.58);
  font-weight: 700;
}

.home-featured-game-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(14, 24, 19, 0.60);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(18, 83, 50, 0.18);
}

.home-featured-game-body {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 6px 0 6px clamp(16px, 2vw, 26px);
  min-width: 0;
  border-left: 1px solid rgba(23, 33, 28, 0.08);
}

.home-featured-game-kicker {
  color: rgba(20, 124, 105, 0.9);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-featured-game-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.62rem, 2.3vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: none;
}

.home-featured-game-body h2 a {
  color: inherit;
  text-decoration: none;
}

.home-featured-game-button {
  justify-self: start;
  margin: 0;
  min-height: 42px;
  padding-inline: 18px;
}

.reclub-games-heading {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1180px;
  margin-bottom: 6px;
}

.reclub-games-heading-copy {
  max-width: 780px;
}

.reclub-games-heading h2 {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
}

.reclub-games-heading p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.reclub-filter-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(20, 140, 78, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 77, 45, 0.07);
}

.reclub-filter-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reclub-filter-fields label {
  display: grid;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.reclub-filter-fields label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.reclub-filter-fields select {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 34px 8px 10px;
  background: #fbfffa;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 520;
}

.reclub-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reclub-quick-filters a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-height: 36px;
  border: 1px solid rgba(20, 140, 78, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  background: #f7fff5;
  color: var(--court);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 720;
}

.reclub-quick-filters .reclub-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px dashed rgba(20, 140, 78, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(247, 255, 245, 0.72);
  color: rgba(23, 33, 28, 0.62);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 720;
}

.reclub-quick-filters .reclub-filter-pill.is-disabled {
  cursor: not-allowed;
}

.reclub-quick-filters a:hover,
.reclub-quick-filters a:focus-visible,
.reclub-quick-filters a.is-active {
  border-color: var(--court);
  background: var(--court);
  color: #ffffff;
}

.reclub-quick-filters .reclub-past-games-link {
  margin-left: auto;
  border-color: rgba(23, 33, 28, 0.16);
  background: #ffffff;
  color: var(--ink);
}

.reclub-quick-filters .reclub-past-games-link::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-right: 6px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2Zm11 8H6v10h12V10ZM6 8h12V6H6v2Zm2 4h4v4H8v-4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2Zm11 8H6v10h12V10ZM6 8h12V6H6v2Zm2 4h4v4H8v-4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.reclub-quick-filters .reclub-past-games-link:hover,
.reclub-quick-filters .reclub-past-games-link:focus-visible {
  border-color: var(--court);
  background: #ffffff;
  color: var(--court);
}

.reclub-games-section-preview .is-desktop-extra-game,
.reclub-games-section-preview .is-desktop-extra-day {
  display: none;
}

.reclub-venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.reclub-venue-card,
.reclub-empty-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.reclub-venue-card {
  padding: 16px;
}

.reclub-venue-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.reclub-venue-card h3::before {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--court);
  content: "R";
  font-size: 0.78rem;
  font-weight: 950;
}

.reclub-venue-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reclub-venue-card a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fbfffa;
}

.reclub-venue-card strong,
.reclub-venue-card span,
.reclub-venue-card em {
  display: block;
}

.reclub-venue-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.reclub-venue-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.reclub-venue-card em {
  margin-top: 4px;
  color: var(--court);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.reclub-schedule {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.reclub-day {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.reclub-day h3 {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--court);
  font-size: 1rem;
  font-weight: 850;
}

.reclub-day-list {
  display: grid;
}

.reclub-game-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(230px, auto);
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.reclub-game-row[hidden],
.reclub-day[hidden],
.reclub-no-results[hidden] {
  display: none !important;
}

.reclub-game-row:last-child {
  border-bottom: 0;
}

.reclub-game-row time {
  padding-top: 1px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.reclub-game-main,
.reclub-game-main span {
  display: block;
  min-width: 0;
}

.reclub-game-main > span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}

.reclub-game-main strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reclub-game-venue,
.reclub-game-main i {
  display: inline-block;
  font-size: 0.8rem;
  font-style: normal;
}

.reclub-game-venue {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.3;
}

.reclub-game-main i {
  border-radius: 999px;
  padding: 3px 8px;
  background: #e8ffd2;
  color: var(--court);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1;
}

.reclub-game-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-self: end;
  justify-content: flex-end;
}

.reclub-game-chip {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  border: 1px solid rgba(20, 140, 78, 0.16);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fbfffa;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.1;
}

.reclub-game-chip span {
  color: var(--muted);
  font-weight: 520;
}

.reclub-game-chip strong {
  color: var(--ink);
  font-weight: 620;
}

.reclub-all-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.reclub-heading-link {
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 2px;
}

.reclub-mobile-more {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.reclub-schedule-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.reclub-schedule-note {
  display: flex;
  min-width: 0;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 520;
  text-align: right;
}

.reclub-schedule-note::before {
  content: "i";
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(82, 97, 89, 0.34);
  border-radius: 50%;
  color: var(--court);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.reclub-empty-card {
  margin-top: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.reclub-empty-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.25rem;
}

.reclub-empty-card p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

.reclub-no-results {
  border: 1px dashed rgba(20, 140, 78, 0.28);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.96rem;
  text-align: center;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.session-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.session-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.session-card:hover,
.session-card:focus-within {
  border-color: rgba(20, 140, 78, 0.34);
  box-shadow: 0 18px 40px rgba(23, 33, 28, 0.12);
  transform: translateY(-2px);
}

.session-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.session-card div {
  padding: 12px;
}

.session-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.session-card h3 {
  margin-top: 6px;
  font-size: 1.34rem;
}

.session-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
  gap: clamp(14px, 2.6vw, 30px);
  align-items: start;
  background: #ffffff;
}

.tournament-band {
  background: #f4fff8;
}

.home-tournaments-section {
  display: block;
  background: linear-gradient(180deg, #f4fff8 0, #ffffff 100%);
  padding-top: clamp(4px, 0.8vw, 12px);
}

.home-tournaments-head {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2px, 0.45vw, 6px);
}

.home-tournaments-head .section-kicker {
  max-width: 780px;
}

.home-tournaments-head .button {
  margin-bottom: 2px;
}

.home-tournaments-mobile-link {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.home-tournament-block-head {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.home-tournament-block-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  font-weight: 720;
  line-height: 1.15;
}

.home-tournament-block-head span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: right;
}

.home-tournament-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-tournaments-head .section-kicker h2 {
  margin-top: 0;
}

.home-tournaments-head .section-kicker p:last-child {
  margin-bottom: 0;
}

.compact-list {
  display: grid;
  gap: 8px;
}

.compact-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.compact-list strong,
.compact-list span {
  display: block;
}

.compact-list strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.compact-list span {
  color: var(--muted);
  line-height: 1.5;
}

.training-note {
  background: #ffffff;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1fr);
  gap: clamp(12px, 2.2vw, 28px);
  align-items: stretch;
  background: #effcff;
}

.closing-cta img {
  height: 100%;
  aspect-ratio: 16 / 8.8;
}

.closing-cta > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(18px, 3vw, 34px);
}

.closing-cta h2 {
  margin-bottom: clamp(20px, 2.8vw, 34px);
  color: var(--ink);
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  font-weight: 760;
  line-height: 1.08;
}

.closing-cta .button {
  align-self: flex-start;
}

/* Tournament archive and detail pages */
.tournaments-page {
  background: linear-gradient(180deg, #f4fff8 0, #ffffff 520px, #fbfbf3 100%);
}

.tournaments-hero {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 72px);
  padding-top: 96px;
  padding-bottom: 0;
}

.tournaments-hero h1 {
  max-width: 980px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 740;
  line-height: 1.08;
}

.tournaments-hero p:last-child {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.tournament-archive-section {
  max-width: 1280px;
  margin-inline: auto;
  padding-top: 0;
  padding-bottom: 40px;
}

.tournament-past-section {
  padding-top: 24px;
  background: #ffffff;
}

.tournament-section-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tournament-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 720;
  line-height: 1.12;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Gallery archive */
.gallery-archive-page {
  max-width: none;
  padding: 0;
  background: linear-gradient(180deg, #f4fff8 0, #ffffff 520px, #fbfbf3 100%);
}

.gallery-archive-page .archive-intro {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 72px);
  padding-top: 92px;
  padding-bottom: 0;
  margin-bottom: 12px;
}

.gallery-archive-page .archive-intro h1 {
  max-width: 980px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 740;
  line-height: 1.08;
}

.gallery-archive-page .archive-intro-text {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.community-gallery-archive {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 72px);
  padding-top: 0;
  padding-bottom: 56px;
}

.tournament-card {
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
}

.tournament-card-image {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: 10px;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(135deg, #effcff, #f4fff8);
  color: var(--court);
  font-weight: 760;
}

.tournament-card-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7278 0%, #e13e4c 100%);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.tournament-card-status-past {
  background: linear-gradient(135deg, #82909a 0%, #58616a 100%);
  box-shadow: 0 10px 22px rgba(67, 77, 85, 0.22);
}

.tournament-card-status-past::before {
  background: rgba(67, 77, 85, 0.92);
}

.tournament-card-status-past::after {
  background: rgba(255, 255, 255, 0.12);
}

.tournament-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.tournament-card-body {
  padding: 12px 13px 14px;
}

.tournament-card-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.tournament-card-date {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 58%;
  min-height: 28px;
  border: 1px solid rgba(20, 124, 105, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  background: #f4fff8;
  color: rgba(20, 67, 55, 0.78);
  font-size: 0.74rem;
  font-weight: 620;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tournament-card h3 {
  margin: 0 0 7px;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.18;
}

.tournament-card h3 a {
  color: var(--ink);
  text-decoration: none !important;
}

.tournament-card h3 a:hover,
.tournament-card h3 a:focus,
.tournament-card h3 a:active,
.tournament-card h3 a:visited {
  text-decoration: none !important;
}

.tournament-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.tournament-card-venue {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.tournament-card-venue::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background: currentColor;
  opacity: 0.72;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.6A2.6 2.6 0 1 1 12 6.4a2.6 2.6 0 0 1 0 5.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.6A2.6 2.6 0 1 1 12 6.4a2.6 2.6 0 0 1 0 5.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.tournament-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.tournament-empty strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.tournament-empty p {
  margin: 0;
  color: var(--muted);
}

.tournament-detail-page {
  max-width: 1240px;
  margin-inline: auto;
  padding: 102px clamp(18px, 5vw, 48px) 64px;
}

.tournament-detail-page p,
.tournament-detail-page li,
.tournament-detail-page a,
.tournament-detail-page span,
.tournament-detail-page strong,
.tournament-detail-page dd,
.tournament-detail-page dt,
.tournament-detail-page code,
.tournament-detail-page pre,
.game-detail-page p,
.game-detail-page li,
.game-detail-page a,
.game-detail-page span,
.game-detail-page strong,
.game-detail-page dd,
.game-detail-page dt,
.game-detail-page code,
.game-detail-page pre {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

.tournament-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(24px, 3.6vw, 52px);
  align-items: stretch;
  margin-bottom: 34px;
}

.tournament-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  border-block: 1px solid rgba(23, 33, 28, 0.1);
  padding-block: clamp(20px, 3vw, 38px);
}

.tournament-detail-copy h1 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 720;
  line-height: 1.1;
}

.tournament-detail-copy p {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.65;
}

.tournament-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tournament-detail-pills span {
  border: 1px solid rgba(23, 33, 28, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  background: #ffffff;
  color: rgba(41, 51, 46, 0.86);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(23, 33, 28, 0.03), 0 8px 24px rgba(23, 33, 28, 0.03);
}

.tournament-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tournament-status-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid rgba(20, 124, 105, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: #f4fff8;
  box-shadow: 0 6px 14px rgba(18, 56, 50, 0.04);
  box-sizing: border-box;
}

.tournament-status-note strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.tournament-status-note span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.blog-callout,
.blog-callout--soft,
.blog-callout--warm,
.blog-callout--success,
.blog-callout--accent,
.blog-callout--faq,
.blog-callout--ribbon,
.blog-callout--announce {
  display: grid;
  gap: 0;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(23, 33, 28, 0.06);
}

.blog-callout {
  border-color: rgba(23, 33, 28, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.98) 100%);
}

.blog-callout--soft {
  border-color: rgba(20, 77, 45, 0.12);
  background:
    linear-gradient(180deg, rgba(243, 251, 248, 0.98) 0%, rgba(233, 248, 241, 0.98) 100%);
  box-shadow: 0 12px 30px rgba(18, 83, 50, 0.08);
}

.blog-callout--warm {
  border-color: rgba(175, 100, 31, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.98) 0%, rgba(255, 241, 219, 0.98) 100%);
  box-shadow: 0 12px 30px rgba(175, 100, 31, 0.08);
}

.blog-callout--success {
  border-color: rgba(45, 123, 78, 0.16);
  background:
    linear-gradient(180deg, rgba(240, 255, 245, 0.98) 0%, rgba(229, 250, 236, 0.98) 100%);
  box-shadow: 0 12px 30px rgba(45, 123, 78, 0.08);
}

.blog-callout--accent {
  border-color: rgba(20, 124, 105, 0.18);
  background:
    linear-gradient(180deg, rgba(244, 255, 251, 0.98) 0%, rgba(232, 251, 246, 0.98) 100%);
  box-shadow: 0 12px 30px rgba(20, 124, 105, 0.09);
}

.blog-callout--faq {
  position: relative;
  border-color: rgba(23, 33, 28, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 250, 247, 0.99) 100%);
  box-shadow: 0 10px 24px rgba(23, 33, 28, 0.05);
}

.blog-callout--faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, rgba(23, 33, 28, 0.18) 0%, rgba(23, 33, 28, 0.06) 100%);
}

.blog-callout--faq > * {
  position: relative;
  z-index: 1;
}

.blog-callout--faq > strong {
  display: block;
  margin: 0 0 8px !important;
  font-size: 1rem;
  line-height: 1.2;
}

.blog-callout--faq p {
  line-height: 1.55;
}

.blog-callout--faq .faq-question {
  display: block;
  color: var(--ink);
  font-weight: 760;
  margin: 0 0 8px;
}

.blog-callout--faq .faq-answer {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
  padding-left: 14px;
  border-left: 2px solid rgba(23, 33, 28, 0.08);
}

.blog-callout--faq .faq-answer p {
  line-height: 1.72 !important;
}

.blog-callout--faq .faq-answer strong {
  display: inline;
  margin: 0 !important;
  font-size: inherit;
  line-height: inherit;
  font-weight: 620;
  color: var(--ink);
}

.blog-callout--faq .faq-answer > p {
  margin: 0;
}

.blog-callout--faq .faq-answer > p + p {
  margin-top: 10px;
}

.blog-box-line {
  margin: 18px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 33, 28, 0.26);
  border-bottom: 1px solid rgba(23, 33, 28, 0.26);
  background: transparent;
}

.blog-box-line > *:first-child {
  margin-top: 0;
}

.blog-box-line > *:last-child {
  margin-bottom: 0;
}

.blog-icon-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.blog-icon-list li {
  display: block;
  position: relative;
  margin: 0;
  padding: 10px 0 10px 1.78em;
  line-height: 1.68;
}

.blog-icon-list li + li {
  border-top: 1px solid rgba(23, 33, 28, 0.08);
}

.blog-icon-list li::before {
  position: absolute;
  left: 0;
  top: 1.24em;
  transform: translateY(-50%);
  width: 1.1em;
  font-size: 1.22em;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.blog-icon-list--cross li::before {
  content: "✕";
  color: #d94f58;
}

.blog-icon-list--check li::before {
  content: "✓";
  color: #2b8a5a;
}

.blog-callout--faq .blog-icon-list {
  margin-top: 6px;
}

.blog-tip-note {
  display: block;
  margin: 16px 0;
  padding: 12px 16px;
  border-left: 4px solid rgba(43, 138, 90, 0.72);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(242, 251, 246, 0.98) 0%, rgba(236, 248, 241, 0.98) 100%);
  box-shadow: 0 8px 18px rgba(43, 138, 90, 0.06);
  color: var(--ink);
  line-height: 1.58;
}

.blog-tip-note strong {
  color: var(--ink);
}

.blog-callout--ribbon {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  border-color: rgba(199, 65, 87, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 245, 247, 0.99) 0%, rgba(255, 236, 239, 0.99) 100%);
  box-shadow: 0 14px 32px rgba(199, 65, 87, 0.10);
  padding-left: 34px;
}

.blog-callout--ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(180deg, #d84d68 0%, #ff7a8f 100%);
}

.blog-callout--ribbon > * {
  position: relative;
  z-index: 1;
}

.blog-callout--ribbon > strong {
  display: block;
  margin: 0 0 -6px !important;
  line-height: 1 !important;
}

.blog-callout--ribbon > span {
  display: block;
  margin-top: -6px !important;
  line-height: 1.2 !important;
}

.blog-callout--announce {
  border-color: rgba(57, 88, 174, 0.16);
  background:
    linear-gradient(180deg, rgba(245, 248, 255, 0.99) 0%, rgba(232, 239, 255, 0.99) 100%);
  box-shadow: 0 14px 32px rgba(57, 88, 174, 0.10);
}

.blog-callout--announce::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.blog-callout strong,
.blog-callout--soft strong,
.blog-callout--warm strong,
.blog-callout--success strong,
.blog-callout--accent strong,
.blog-callout--ribbon strong,
.blog-callout--announce strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

.blog-callout span,
.blog-callout p,
.blog-callout--soft span,
.blog-callout--soft p,
.blog-callout--warm span,
.blog-callout--warm p,
.blog-callout--success span,
.blog-callout--success p,
.blog-callout--accent span,
.blog-callout--accent p,
.blog-callout--ribbon span,
.blog-callout--ribbon p,
.blog-callout--announce span,
.blog-callout--announce p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.15;
  margin: 0;
}

.blog-callout p + span,
.blog-callout span + p,
.blog-callout strong + p,
.blog-callout strong + span,
.blog-callout--soft p + span,
.blog-callout--soft span + p,
.blog-callout--soft strong + p,
.blog-callout--soft strong + span,
.blog-callout--warm p + span,
.blog-callout--warm span + p,
.blog-callout--warm strong + p,
.blog-callout--warm strong + span,
.blog-callout--success p + span,
.blog-callout--success span + p,
.blog-callout--success strong + p,
.blog-callout--success strong + span,
.blog-callout--accent p + span,
.blog-callout--accent span + p,
.blog-callout--accent strong + p,
.blog-callout--accent strong + span,
.blog-callout--ribbon p + span,
.blog-callout--ribbon span + p,
.blog-callout--ribbon strong + p,
.blog-callout--ribbon strong + span,
.blog-callout--announce p + span,
.blog-callout--announce span + p,
.blog-callout--announce strong + p,
.blog-callout--announce strong + span {
  margin-top: -1px;
}

.blog-callout a,
.blog-callout--soft a,
.blog-callout--warm a,
.blog-callout--success a,
.blog-callout--accent a,
.blog-callout--faq a,
.blog-callout--ribbon a,
.blog-callout--announce a {
  color: inherit;
}

.blog-pullquote {
  position: relative;
  margin: 18px 0;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(23, 33, 28, 0.08);
  border-left: 4px solid rgba(20, 124, 105, 0.7);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(248, 251, 252, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 8px 18px rgba(23, 33, 28, 0.04);
}

.blog-pullquote::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 12px;
  color: rgba(20, 124, 105, 0.1);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  pointer-events: none;
}

.blog-pullquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.48;
  font-weight: 560;
}

.blog-pullquote p + p {
  margin-top: 10px;
}

.blog-pullquote p:last-child {
  margin-bottom: 0;
}

.entry-content table {
  width: 100% !important;
  margin: 18px 0 22px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid rgba(23, 33, 28, 0.12) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 6px 18px rgba(23, 33, 28, 0.04) !important;
}

.entry-content table th,
.entry-content table td {
  padding: 10px 14px !important;
  vertical-align: top;
  text-align: left;
  line-height: 1.38;
  font-size: 0.98rem;
}

.entry-content table th {
  background: rgba(245, 249, 252, 0.98) !important;
  font-weight: 700;
  border-bottom: 2px solid rgba(23, 33, 28, 0.16) !important;
}

.entry-content table td {
  border-bottom: 1px solid rgba(23, 33, 28, 0.08) !important;
}

.entry-content table tr:last-child td {
  border-bottom: 0 !important;
}

.entry-content table th:first-child,
.entry-content table td:first-child {
  width: 34%;
  padding-right: 16px !important;
}

.entry-content table th + th,
.entry-content table td + td {
  padding-left: 16px !important;
}

.inline-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: baseline;
  margin: 0 12px;
  padding: 4px 10px 4px 10px;
  border: 1px solid rgba(23, 33, 28, 0.24);
  border-radius: 7px;
  background: #f7fbf8;
  box-shadow: 0 4px 10px rgba(23, 33, 28, 0.06);
  font-size: 1em;
  line-height: 1;
  white-space: nowrap;
}

.inline-chip__text {
  display: inline-block;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.96em !important;
}

.inline-chip__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 4px 8px;
  margin-left: 10px;
  border-radius: 4px;
  background: #d8ea4b;
  color: #3d4a11;
  font-size: 0.56rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.inline-chip--person {
  border-color: rgba(145, 170, 24, 0.55);
  background: linear-gradient(180deg, rgba(243, 251, 196, 0.98) 0%, rgba(234, 245, 160, 0.98) 100%);
}

.inline-chip--org {
  border-color: rgba(41, 139, 176, 0.55);
  background: linear-gradient(180deg, rgba(225, 247, 255, 0.98) 0%, rgba(205, 240, 251, 0.98) 100%);
}

.inline-chip--date {
  border-color: rgba(46, 151, 143, 0.55);
  background: linear-gradient(180deg, rgba(226, 250, 247, 0.98) 0%, rgba(202, 242, 237, 0.98) 100%);
}

.inline-chip--person .inline-chip__tag {
  background: #c8ec42;
}

.inline-chip--org .inline-chip__tag {
  background: #66d4ee;
}

.inline-chip--date .inline-chip__tag {
  background: #57d2c2;
}

.inline-chip--person .inline-chip__tag,
.inline-chip--org .inline-chip__tag,
.inline-chip--date .inline-chip__tag {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.tournament-detail-image {
  order: -1;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.tournament-detail-image.tournament-lightbox-trigger {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.tournament-detail-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  height: min(58vh, 620px);
  min-height: 420px;
  object-fit: contain;
  box-shadow: none;
  transition: transform 180ms ease;
}

.tournament-detail-image.tournament-lightbox-trigger:hover img,
.tournament-detail-image.tournament-lightbox-trigger:focus-visible img {
  transform: scale(1.01);
}

.tournament-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(24px, 3.2vw, 42px);
  align-items: start;
}

.tournament-detail-content {
  grid-column: 1;
  min-width: 0;
  max-width: 820px;
}

.tournament-detail-content h2 {
  margin-top: 30px;
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  font-weight: 700;
}

.tournament-detail-side {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  top: 0;
  align-self: start;
}

.tournament-detail-side-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 56, 50, 0.06);
  overflow: hidden;
}

.tournament-info-card {
  border: 1px solid rgba(20, 124, 105, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: #fbfffa;
  box-shadow: 0 6px 14px rgba(18, 56, 50, 0.04);
}

.tournament-dupr-card {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  border: 1px solid rgba(20, 124, 105, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: #f4fff8;
  box-shadow: 0 6px 14px rgba(18, 56, 50, 0.04);
  box-sizing: border-box;
}

.tournament-dupr-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
}

.tournament-dupr-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.tournament-dupr-card li + li {
  margin-top: 4px;
}

.tournament-prizes-card,
.tournament-winners-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(20, 124, 105, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: #fbfffa;
  box-shadow: 0 6px 14px rgba(18, 56, 50, 0.04);
}

.tournament-prizes-card h2,
.tournament-winners-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
}

.tournament-prizes-card h2,
.tournament-info-card h2,
.tournament-dupr-card h2,
.tournament-winners-card h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tournament-card-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--court);
  flex: 0 0 16px;
}

.tournament-card-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.tournament-prizes-card p,
.tournament-winners-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tournament-detail-mobile-side {
  display: none;
}

.tournament-info-card h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
}

.tournament-info-card dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.tournament-info-card div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.tournament-info-card div:first-child {
  border-top: 0;
  padding-top: 0;
}

.tournament-info-card dt {
  margin-bottom: 4px;
  color: rgba(82, 97, 89, 0.78);
  font-size: 0.76rem;
  font-weight: 650;
  text-transform: uppercase;
}

.tournament-info-card dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.tournament-detail-side .tournament-info-card,
.tournament-detail-side .tournament-prizes-card,
.tournament-detail-side .tournament-winners-card {
  min-width: 0;
}

.tournament-detail-side .tournament-info-card h2 {
  margin-bottom: 12px;
}

.tournament-detail-side .tournament-prizes-card h2,
.tournament-detail-side .tournament-dupr-card h2,
.tournament-detail-side .tournament-winners-card h2 {
  margin-bottom: 0;
}

.tournament-prize-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.48;
}

.tournament-prize-list li + li {
  margin-top: 5px;
}

.tournament-notes-block {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 18px 17px;
  border: 1px solid rgba(23, 33, 28, 0.1);
  border-radius: 8px;
  background: #fbfcfa;
}

.tournament-notes-block h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 720;
}

.tournament-notes-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tournament-notes-block p + p {
  margin-top: 10px;
}

.tournament-notes-block a {
  color: var(--accent);
  font-weight: 650;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.tournament-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 8px;
  row-gap: 10px;
  margin-top: 12px;
}

.tournament-gallery-block {
  max-width: none;
  margin: 8px 0 24px;
}

.tournament-gallery-block h2 {
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.18;
}

.tournament-gallery-item {
  display: grid;
  gap: 6px;
  align-content: start;
  color: inherit;
  text-decoration: none;
}

.tournament-gallery-item,
.tournament-gallery-item * {
  color: inherit !important;
  text-decoration: none !important;
}

.single-happy_tournament .tournament-gallery-item:link,
.single-happy_tournament .tournament-gallery-item:visited,
.single-happy_tournament .tournament-gallery-item:hover,
.single-happy_tournament .tournament-gallery-item:focus,
.single-happy_tournament .tournament-gallery-item:active,
.single-happy_tournament .tournament-gallery-item * {
  color: inherit !important;
  text-decoration: none !important;
}

.tournament-gallery img {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.tournament-gallery-copy {
  display: grid;
  gap: 3px;
  padding: 0 2px;
}

.tournament-gallery-copy strong {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1.2;
}

.tournament-gallery-copy span {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.35;
}

.tournament-featured-block {
  display: grid;
  gap: 12px;
}

.tournament-featured-wide {
  margin-top: 6px;
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid rgba(23, 33, 28, 0.1);
}

.tournament-featured-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.tournament-featured-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 720;
}

.tournament-featured-head a {
  color: var(--court);
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.single-happy_tournament .tournament-featured-head a,
.single-happy_tournament .tournament-featured-head a:visited {
  color: var(--court) !important;
  text-decoration: none !important;
}

.tournament-featured-list {
  display: grid;
  gap: 10px;
}

.tournament-featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tournament-featured-mobile-action {
  display: none;
}

.tournament-featured-wide .tournament-featured-head {
  align-items: flex-end;
  margin-bottom: 4px;
}

.tournament-featured-wide .tournament-featured-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.32rem, 2vw, 1.8rem);
}

.tournament-featured-wide .tournament-featured-head .eyebrow {
  margin-bottom: 8px;
}

.tournament-featured-wide .tournament-featured-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tournament-featured-wide .tournament-featured-list .tournament-card {
  display: block;
  min-height: 0;
}

.tournament-featured-wide .tournament-featured-list .tournament-card-image {
  display: grid;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  place-items: center;
}

.tournament-featured-wide .tournament-featured-list .tournament-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  background: transparent;
}

.tournament-featured-wide .tournament-featured-list .tournament-card-body {
  padding: 12px 13px 14px;
}

.tournament-featured-wide .tournament-featured-list .tournament-card h3 {
  margin-bottom: 6px;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.2;
}

.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3,
.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 a,
.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 a:link,
.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 a:visited,
.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 a:hover,
.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 a:focus,
.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 a:active {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  text-shadow: none !important;
  opacity: 1 !important;
  text-decoration: none !important;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
}

.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.single-happy_tournament .entry-content .tournament-featured-wide .tournament-featured-list .tournament-card h3 a {
  font-weight: 820;
  color: inherit !important;
}

.single-happy_tournament .entry-content .tournament-featured-all-link.button,
.single-happy_tournament .entry-content .tournament-featured-all-link.button:link,
.single-happy_tournament .entry-content .tournament-featured-all-link.button:visited,
.single-happy_tournament .entry-content .tournament-featured-all-link.button:hover,
.single-happy_tournament .entry-content .tournament-featured-all-link.button:focus,
.single-happy_tournament .entry-content .tournament-featured-all-link.button:active {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(26, 34, 31, 0.06);
  color: #000000 !important;
  text-decoration: none !important;
}

.tournament-featured-wide .tournament-featured-list .tournament-card p {
  font-size: 0.82rem;
  line-height: 1.4;
}

.tournament-featured-wide .tournament-featured-list .tournament-card-meta {
  gap: 5px;
  margin-bottom: 7px;
}

.tournament-featured-wide .tournament-featured-list .tournament-card-meta span {
  padding: 4px 7px;
  font-size: 0.66rem;
}

.tournament-featured-list .tournament-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 0;
}

.tournament-featured-list .tournament-card-image {
  min-height: 108px;
}

.tournament-featured-list .tournament-card-image img {
  height: 100%;
  aspect-ratio: auto;
}

.tournament-featured-list .tournament-card-body {
  padding: 11px;
}

.tournament-featured-list .tournament-card h3 {
  margin-bottom: 6px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.tournament-featured-list .tournament-card p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.tournament-featured-list .tournament-card-meta {
  gap: 5px;
  margin-bottom: 6px;
}

.tournament-featured-list .tournament-card-meta span {
  padding: 4px 6px;
  font-size: 0.64rem;
}

.has-tournament-lightbox {
  overflow: hidden;
}

.tournament-lightbox[hidden] {
  display: none !important;
}

.tournament-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 54px) clamp(16px, 4vw, 54px) 72px;
  background: rgba(6, 18, 16, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.tournament-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tournament-lightbox figure {
  position: relative;
  display: grid;
  max-width: min(1120px, 88vw);
  max-height: 82vh;
  margin: 0;
  gap: 12px;
  justify-items: start;
  opacity: 0;
  transform: translateY(12px) scale(0.965);
  transition: opacity 260ms ease, transform 260ms ease;
}

.tournament-lightbox.is-open figure {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tournament-lightbox.is-switching figure {
  opacity: 0.72;
  transform: translateY(4px) scale(0.985);
}

.tournament-lightbox-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 180ms ease;
  background: linear-gradient(180deg, rgba(6, 18, 16, 0.08) 0%, rgba(6, 18, 16, 0.02) 100%);
}

.tournament-lightbox.is-loading .tournament-lightbox-loader {
  opacity: 1;
}

.tournament-lightbox-loader-track {
  position: absolute;
  width: min(240px, 42vw);
  height: 96px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(20, 124, 105, 0.1),
    0 0 50px rgba(15, 27, 30, 0.08);
}

.tournament-lightbox-loader-paddle,
.tournament-lightbox-loader-ball {
  position: absolute;
  will-change: transform, opacity;
}

.tournament-lightbox-loader-paddle {
  width: 28px;
  height: 52px;
  border-radius: 16px 16px 20px 20px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95) 0 22%, rgba(255, 255, 255, 0.88) 23% 35%, rgba(0, 0, 0, 0) 36%),
    linear-gradient(180deg, #ffd44f 0%, #f2b705 100%);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.16),
    inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.tournament-lightbox-loader-paddle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 8px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8b5e3c 0%, #5f4025 100%);
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.tournament-lightbox-loader-paddle--left {
  transform: translateX(-84px) rotate(-14deg);
  animation: hd-lightbox-paddle-left 1.15s ease-in-out infinite;
}

.tournament-lightbox-loader-paddle--right {
  transform: translateX(84px) rotate(14deg);
  animation: hd-lightbox-paddle-right 1.15s ease-in-out infinite;
}

.tournament-lightbox-loader-ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95) 0 14%, rgba(255, 255, 255, 0) 15%),
    radial-gradient(circle at 50% 50%, #ecff4c 0 36%, #c9ea22 37% 100%);
  box-shadow:
    0 0 0 2px rgba(24, 40, 24, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.18);
  animation: hd-lightbox-ball 1.15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes hd-lightbox-ball {
  0% {
    transform: translateX(-72px) translateY(0) scale(0.92);
  }
  20% {
    transform: translateX(-28px) translateY(-10px) scale(1);
  }
  48% {
    transform: translateX(0) translateY(-4px) scale(1.06);
  }
  50% {
    transform: translateX(0) translateY(-4px) scale(1.06);
  }
  72% {
    transform: translateX(28px) translateY(-10px) scale(1);
  }
  100% {
    transform: translateX(72px) translateY(0) scale(0.92);
  }
}

@keyframes hd-lightbox-paddle-left {
  0%,
  100% {
    transform: translateX(-84px) rotate(-14deg) translateY(0);
  }
  20% {
    transform: translateX(-84px) rotate(-8deg) translateY(-2px);
  }
  48% {
    transform: translateX(-84px) rotate(-22deg) translateY(4px);
  }
  72% {
    transform: translateX(-84px) rotate(-10deg) translateY(-1px);
  }
}

@keyframes hd-lightbox-paddle-right {
  0%,
  100% {
    transform: translateX(84px) rotate(14deg) translateY(0);
  }
  20% {
    transform: translateX(84px) rotate(8deg) translateY(2px);
  }
  48% {
    transform: translateX(84px) rotate(22deg) translateY(-4px);
  }
  72% {
    transform: translateX(84px) rotate(10deg) translateY(1px);
  }
}

.tournament-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(82vh - 58px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  transition: filter 220ms ease;
}

.tournament-lightbox.is-loading img {
  opacity: 0;
}

.tournament-lightbox.is-switching img {
  filter: saturate(1.05) brightness(1.04);
}

.tournament-lightbox figcaption {
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: left;
}

.tournament-lightbox-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding-top: 2px;
  text-align: left;
  align-items: flex-start;
}

.tournament-lightbox-caption .community-lightbox-title {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.tournament-lightbox-caption .community-lightbox-copy {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.tournament-lightbox-caption .community-lightbox-date {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2px;
  padding: 0;
}

.tournament-lightbox button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(23, 33, 28, 0.72);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 220ms ease, transform 180ms ease, background 180ms ease;
}

.tournament-lightbox.is-open button {
  opacity: 1;
}

.tournament-lightbox button:hover,
.tournament-lightbox button:focus-visible {
  background: rgba(255, 255, 255, 0.5);
}

.tournament-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
  line-height: 1;
}

.tournament-lightbox-close:hover,
.tournament-lightbox-close:focus-visible {
  transform: scale(1.05);
}

.tournament-lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateY(-50%);
}

.tournament-lightbox-nav:hover,
.tournament-lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

.tournament-lightbox-prev {
  left: 18px;
}

.tournament-lightbox-next {
  right: 18px;
}

.tournament-lightbox-nav::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.tournament-lightbox-prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.tournament-lightbox-next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

@media (max-width: 760px) {
  .tournaments-hero {
    padding-top: 78px;
    padding-bottom: 8px;
  }

  .tournaments-hero h1,
  .tournament-detail-copy h1 {
    font-size: clamp(1.4rem, 6vw, 1.82rem);
  }

  .tournament-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tournament-past-section {
    padding-top: 18px;
  }

  .tournament-card-image {
    min-height: 0;
  }

  .tournament-detail-page {
    padding-top: 86px;
  }

  .tournament-detail-image img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .tournament-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }

  .tournament-detail-actions .button-light {
    display: none;
  }

  .tournament-detail-mobile-side {
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .tournament-detail-side {
    display: none;
  }

  .tournament-detail-mobile-side .tournament-info-card {
    box-shadow: none;
    padding: 13px 14px;
  }

  .tournament-dupr-card {
    margin-bottom: 10px;
    padding: 12px 13px;
  }

  .tournament-prizes-card,
  .tournament-winners-card {
    padding: 12px 13px;
  }

  .tournament-notes-block {
    margin-top: 14px;
    padding: 14px 14px 13px;
  }

  .tournament-detail-copy p {
    max-width: 100%;
  }

  .tournament-detail-copy .eyebrow,
  .tournament-detail-pills .tournament-type-pill {
    display: none;
  }

  .tournament-featured-wide .tournament-featured-head {
    align-items: flex-start;
  }

  .tournament-featured-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tournament-featured-head a {
    display: none;
  }

  .tournament-featured-mobile-action {
    display: block;
    margin-top: 4px;
  }

  .tournament-featured-mobile-action .button {
    width: 100%;
    text-decoration: none;
  }

  .tournament-detail-pills {
    gap: 6px;
    margin-bottom: 12px;
  }

  .tournament-detail-pills span {
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .tournament-detail-actions {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .tournament-detail-actions .button-primary[data-reclub-app-link] {
    width: 100%;
    justify-content: center;
  }

  .tournament-detail-actions .button {
    width: 100%;
    justify-content: center;
  }

  .tournament-status-note {
    margin-top: 14px;
    padding: 12px 13px;
  }

  .tournament-lightbox {
    padding: 54px 12px 76px;
  }

  .tournament-lightbox figure {
    max-width: 100%;
    max-height: 82vh;
    gap: 12px;
  }

  .tournament-lightbox img {
    max-height: calc(82vh - 96px);
  }

  .community-lightbox-caption {
    max-width: 100%;
    gap: 6px;
    padding-bottom: 4px;
    text-align: left;
  }

  .community-lightbox-caption,
  .community-lightbox-caption * {
    text-align: left;
  }

  .tournament-featured-list .tournament-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .tournament-featured-list .tournament-card-image {
    min-height: 92px;
  }

  .tournament-lightbox-nav {
    top: 50%;
    bottom: auto;
    width: 40px;
    height: 40px;
    opacity: 0.36;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateY(-50%);
    z-index: 6;
    color: rgba(23, 33, 28, 0.62);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .tournament-lightbox-nav:hover,
  .tournament-lightbox-nav:focus-visible {
    opacity: 0.5;
    transform: translateY(-50%) scale(1.04);
  }

  .tournament-lightbox-prev {
    left: 12px;
  }

  .tournament-lightbox-next {
    right: 12px;
  }

  .tournament-lightbox.is-landscape {
    padding-bottom: 90px;
  }

  .tournament-lightbox.is-landscape .tournament-lightbox-nav {
    top: 48%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .tournament-lightbox.is-landscape .tournament-lightbox-nav:hover,
  .tournament-lightbox.is-landscape .tournament-lightbox-nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .tournament-lightbox-close {
    opacity: 1;
    background: #ffffff !important;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .tournament-lightbox-close:hover,
  .tournament-lightbox-close:focus-visible {
    background: #ffffff !important;
    opacity: 1;
  }

  .tournament-lightbox-loader-track,
  .tournament-lightbox-loader-paddle,
  .tournament-lightbox-loader-ball {
    animation-duration: 1.35s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tournament-lightbox,
  .tournament-lightbox figure,
  .tournament-lightbox img,
  .tournament-lightbox button {
    transition: none;
  }

  .tournament-lightbox-loader-track,
  .tournament-lightbox-loader-paddle,
  .tournament-lightbox-loader-ball {
    animation: none !important;
  }

  .tournament-lightbox figure,
  .tournament-lightbox.is-open figure,
  .tournament-lightbox.is-switching figure {
    transform: none;
  }
}

@media (max-width: 980px) {
  .updates-layout,
  .dupr-landing,
  .home-featured-game,
  .home-tournaments-head,
  .reclub-games-heading,
  .session-grid,
  .reclub-venue-grid,
  .reclub-filter-fields,
  .game-detail-layout,
  .split-section,
  .closing-cta {
    grid-template-columns: 1fr;
  }

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

  .update-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .home-tournaments-head {
    align-items: start;
  }

  .home-tournaments-head .button {
    justify-self: start;
  }

  .updates-layout {
    grid-template-columns: 1fr;
  }

  .home-featured-game {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }

  .home-page .home-featured-game-section {
    padding-top: 44px;
    padding-bottom: 0;
  }

  .updates-feature.social-proof-panel {
    padding: 18px;
  }

  .social-proof-panel-head h2 {
    font-size: clamp(1.65rem, 5vw, 2.25rem);
  }

  .dupr-landing {
    grid-template-columns: 1fr;
  }

  .landing-points {
    gap: 8px;
  }

  .landing-points li {
    min-height: 0;
    padding: 11px 12px;
  }

  .landing-points strong {
    font-size: 0.94rem;
  }

  .landing-photo {
    order: 0;
  }

  .landing-photo img {
    aspect-ratio: 16 / 10;
  }

  .home-featured-game-media {
    aspect-ratio: 3 / 1;
    border-radius: 8px;
    box-shadow: none;
  }

  .home-featured-game-badge {
    left: 14px;
    top: 14px;
    font-size: 0.72rem;
  }

  .home-featured-game-body {
    display: none;
  }

  .landing-intro {
    font-size: 0.98rem;
  }

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

  .landing-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .play-card {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .quick-week-grid {
    justify-content: flex-start;
    min-width: 100%;
  }

  .quick-week-grid strong,
  .quick-week-grid small {
    white-space: normal;
  }

  .game-detail-side {
    position: static;
  }

  .tournament-grid:not(.home-tournament-grid),
  .tournament-detail-hero,
  .tournament-detail-layout {
    grid-template-columns: 1fr;
  }

  .tournament-detail-side {
    grid-column: auto;
    grid-row: auto;
    position: static;
  }

  .tournament-detail-content {
    grid-column: auto;
  }

  .tournament-featured-block {
    gap: 10px;
  }

  .tournament-featured-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tournament-featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .tournament-grid:not(.home-tournament-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .community-gallery-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .community-gallery-featured-card {
    grid-template-columns: 1fr;
  }

  .community-gallery-featured-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .updates-strip,
  .dupr-landing,
  .content-section,
  .quick-week {
    padding-inline: 16px;
  }

  .updates-strip {
    padding-top: 28px;
    padding-bottom: 10px;
  }

  .home-page.no-featured-game .updates-strip {
    padding-top: 112px;
  }

  .updates-title h1 {
    font-size: clamp(1.45rem, 5.3vw, 1.8rem);
    line-height: 0.98;
  }

  .inline-brand-logo {
    width: 0.8em;
    height: 0.8em;
    margin-left: 0.1em;
  }

  .updates-feature img {
    aspect-ratio: 16 / 9;
  }

  .update-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
  }

  .update-item-thumb {
    align-self: start;
  }

  .updates-more-link,
  .updates-feature .button {
    width: 100%;
    justify-content: center;
  }

  .updates-more-link {
    margin-top: 10px;
  }

  .social-proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .social-proof-photo {
    aspect-ratio: 16 / 9;
  }

  .social-proof-card {
    min-height: 0;
    padding: 10px 12px 9px;
  }

  .social-proof-number {
    font-size: 1.9rem;
  }

  .social-proof-label {
    font-size: 0.74rem;
  }

  .social-proof-cta {
    display: block;
    width: 100%;
    margin-top: 2px;
    text-align: center;
    justify-self: stretch;
  }

  .home-page .content-section {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .home-page .home-featured-game-section {
    margin-top: 18px;
    padding-top: 124px;
    padding-bottom: 0;
  }

  .community-gallery-grid {
    grid-template-columns: 1fr;
  }

  .community-gallery-archive-grid {
    grid-template-columns: 1fr;
  }

  .community-gallery-featured-card {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .community-gallery-featured-copy {
    padding: 4px 2px 6px;
  }

  .community-gallery-featured-meta {
    grid-template-columns: 1fr;
  }

  .community-gallery-head {
    display: contents;
  }

  .community-gallery-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .community-gallery-head .section-kicker {
    order: 1;
  }

  .community-gallery-grid {
    order: 2;
    margin-top: 6px;
  }

  .community-gallery-head .button {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .home-tournaments-head {
    margin-bottom: 12px;
  }

  .home-tournaments-head .button {
    display: none;
  }

  .home-tournaments-mobile-link,
  .reclub-mobile-full-link {
    display: flex;
    width: 100%;
  }

  .home-tournament-grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 10px;
  }

  .closing-cta {
    gap: 12px;
  }

  .quick-actions {
    display: grid;
    gap: 8px;
  }

  .quick-actions .button,
  .closing-cta .button {
    width: 100%;
    justify-content: center;
  }

  .home-tournament-block-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .home-tournament-block-head span {
    text-align: left;
  }

  .home-tournament-grid {
    grid-template-columns: 1fr;
  }

  .tournament-card-status {
    top: 9px;
    left: 9px;
    min-width: 84px;
    min-height: 26px;
    padding: 5px 10px;
    font-size: 0.57rem;
    transform: translate(-3px, -3px);
  }

  .landing-copy h2 {
    font-size: clamp(1.72rem, 7.4vw, 2.15rem);
    line-height: 1.08;
  }

  .single-post .content-page {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .updates-archive-page {
    padding-top: 82px;
    padding-bottom: 48px;
  }

  .archive-intro {
    margin-bottom: 20px;
  }

  .single-post .content-page h1 {
    font-size: clamp(1.62rem, 7.8vw, 2.08rem);
  }

  .games-page .games-hero {
    padding-top: 82px;
    padding-bottom: 0;
  }

  .games-hero h1 {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
  }

  .games-page .reclub-games-section {
    padding-top: 4px;
  }

  .reclub-filter-panel {
    margin-inline: -2px;
    padding: 10px;
  }

  .reclub-filter-fields {
    gap: 8px;
  }

  .reclub-filter-fields label span {
    font-size: 0.74rem;
  }

  .reclub-filter-fields select {
    min-height: 40px;
    font-size: 0.86rem;
  }

  .reclub-quick-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .reclub-quick-filters::-webkit-scrollbar {
    display: none;
  }

  .reclub-quick-filters a {
    flex: 0 0 auto;
    min-height: 38px;
    padding-inline: 13px;
  }

  .reclub-quick-filters .reclub-past-games-link {
    margin-left: 0;
  }

  .reclub-quick-filters .reclub-past-games-link {
    display: none;
  }

  .game-detail-page h1 {
    font-size: clamp(1.24rem, 5.8vw, 1.62rem);
  }

  .game-detail-page {
    padding-top: 86px;
  }

  .confirmed-players ul {
    grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
    gap: 16px 4px;
  }

  .confirmed-players li {
    gap: 4px;
    font-size: 0.64rem;
    line-height: 1.05;
  }

  .confirmed-players li img,
  .confirmed-players li .player-placeholder {
    width: 40px;
    height: 40px;
  }

  .game-detail-page,
  .game-detail-layout,
  .game-detail-main,
  .game-detail-side,
  .game-detail-hero,
  .confirmed-players {
    max-width: 100%;
    min-width: 0;
  }

  .game-detail-page * {
    min-width: 0;
  }

  .confirmed-players-mobile,
  .game-detail-mobile-side {
    display: block;
  }

  .confirmed-players-mobile {
    margin-bottom: 28px;
    padding-bottom: 12px;
  }

  .game-detail-side {
    display: none;
  }

  .game-detail-mobile-side {
    display: grid;
    gap: 10px;
    margin-top: 36px;
  }

  .game-detail-mobile-side > div {
    display: grid;
    gap: 3px;
    margin-bottom: 0;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
  }

  .game-detail-mobile-side > div strong {
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  .game-detail-mobile-side > div span {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .game-detail-side a.button,
  .game-detail-side .button {
    width: 100%;
  }

  .game-detail-mobile-side a.button,
  .game-detail-mobile-side .button {
    width: 100%;
  }

  .game-detail-mobile-side .button + .button {
    margin-top: 0;
  }

  .single-post .entry-content {
    font-size: 1rem;
    line-height: 1.68;
  }

  .single-post .entry-content h2 {
    font-size: clamp(1.22rem, 6vw, 1.48rem);
  }

  .entry-content .post-photo-grid {
    grid-template-columns: 1fr;
  }

  .reclub-game-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .reclub-game-main {
    order: 1;
  }

  .reclub-game-row time {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    order: 2;
    padding-top: 0;
    color: rgba(82, 97, 89, 0.8);
    font-size: 0.78rem;
    font-weight: 620;
  }

  .reclub-game-row time::before {
    content: "";
    width: 13px;
    height: 13px;
    background: currentColor;
    opacity: 0.72;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .reclub-game-chips {
    order: 3;
  }

  .reclub-game-main strong {
    white-space: normal;
  }

  .reclub-game-chips {
    justify-self: end;
    justify-content: flex-end;
  }

  .reclub-schedule:not(.is-expanded) .is-mobile-extra-game,
  .reclub-schedule:not(.is-expanded) .is-mobile-extra-day {
    display: none;
  }

  .reclub-games-section-preview .is-desktop-extra-day {
    display: block;
  }

  .reclub-games-section-preview .is-desktop-extra-game {
    display: grid;
  }

  .reclub-mobile-more {
    display: inline-flex;
  }

  .reclub-alt-games-link {
    margin-top: 10px;
  }

  .reclub-schedule-note {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    justify-content: stretch;
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: left;
  }

  .reclub-schedule-actions {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      width: 100%;
      justify-items: stretch;
      gap: 10px;
      margin-top: 14px;
    }

  .reclub-schedule-actions .button {
      width: 100%;
      justify-content: center;
    }

  .reclub-schedule-actions > .reclub-mobile-full-link {
      display: grid !important;
      grid-template-columns: 1fr;
      place-items: center;
      width: 100% !important;
      max-width: none !important;
      flex: none !important;
      align-self: stretch;
      box-sizing: border-box;
      min-width: 0;
      min-height: 48px;
      padding-inline: 18px;
      line-height: 1.1;
      text-align: center;
    }

  .reclub-schedule-note::before {
    margin-top: 1px;
  }

  .reclub-games-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 6px;
  }

  .reclub-heading-link {
    display: none;
  }

  .home-tournaments-mobile-link {
      display: grid;
      place-items: center;
      width: 100%;
      justify-content: center;
    }

  .reclub-mobile-full-link {
      display: grid;
      place-items: center;
      width: 100%;
      margin-top: 10px;
      box-sizing: border-box;
      min-width: 0;
    }

  .quick-week-grid {
    grid-template-columns: 1fr;
  }

  .landing-media img,
  .session-card img,
  .closing-cta img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .closing-cta > div {
    padding-block: 4px 0;
  }

  .archive-post-card {
    grid-template-columns: 1fr;
  }

  .archive-post-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 420px) {
  .home-tournament-grid {
    grid-template-columns: 1fr;
  }
}
