/* ============================================================
   RÚSTICO ARENA BAR – style.css  (Mobile-First Premium v2)
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --brown-dark:  #1a0a00;
  --brown-mid:   #2e1500;
  --brown-warm:  #4a2200;
  --amber:       #c97b1a;
  --amber-light: #e89f2e;
  --gold:        #d4a944;
  --gold-light:  #f0c96a;
  --cream:       #f5ede0;
  --cream-light: #fdf8f2;
  --white:       #ffffff;
  --text-dark:   #1a0a00;
  --text-muted:  #7a5c3a;
  --green-wpp:   #25D366;
  --green-wpp2:  #1ebe5d;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-heading: 'Oswald', sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,.22);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.4);

  --t: .3s cubic-bezier(.4,0,.2,1);
}

body {
  font-family: var(--ff-body);
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 50px;
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
  background: var(--green-wpp);
  color: #fff;
  border-color: var(--green-wpp);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn-primary:hover, .btn-primary:active {
  background: var(--green-wpp2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

.btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.18); border-color: #fff; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--amber));
  color: var(--brown-dark);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(212,169,68,.45);
  font-size: 1rem;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,169,68,.65); }

.btn-wpp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 50px;
  background: var(--green-wpp);
  color: #fff;
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--t);
}
.btn-wpp-full svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wpp-full:hover { background: var(--green-wpp2); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ==============================
   HEADER / NAV
   ============================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,10,0,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,169,68,.2);
  transition: var(--t);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; object-fit: contain; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-menu {
  position: fixed;
  top: 62px; right: 0;
  width: min(300px, 85vw);
  height: calc(100vh - 62px);
  background: var(--brown-dark);
  border-left: 1px solid rgba(212,169,68,.15);
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t), visibility var(--t);
  overflow-y: auto;
}
.nav-menu.open { transform: translateX(0); visibility: visible; }

.nav-link {
  display: block;
  padding: 18px 32px;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--t);
}
.nav-link:hover, .nav-link:active { color: var(--gold); padding-left: 44px; }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('ESPACO/2.jpg') center/cover no-repeat;
  padding: 90px 16px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,10,0,.88) 0%,
    rgba(26,10,0,.72) 45%,
    rgba(26,10,0,.92) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  width: 100%;
}

.hero-logo {
  width: min(240px, 70vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.7));
  animation: logoIn .8s ease both;
}
@keyframes logoIn {
  from { opacity:0; transform:translateY(-24px) scale(.92); }
  to   { opacity:1; transform:none; }
}

.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 5vw, 1.8rem);
  color: var(--gold-light);
  letter-spacing: .02em;
  animation: fadeUp .8s .15s ease both;
}
.hero-sub {
  font-family: var(--ff-heading);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .2em;
  animation: fadeUp .8s .25s ease both;
}

/* Hero chips (pill tags) */
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: 4px 0;
  animation: fadeUp .8s .35s ease both;
}
.hero-chips span {
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(212,169,68,.18);
  border: 1px solid rgba(212,169,68,.4);
  font-family: var(--ff-heading);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
}

.hero-actions {
  display: flex; flex-direction: column;
  gap: 12px; width: 100%;
  max-width: 360px;
  margin-top: 8px;
  animation: fadeUp .8s .45s ease both;
}
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; max-width: none; width: auto; }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(212,169,68,.7);
  border-bottom: 2px solid rgba(212,169,68,.7);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(7px); }
}

/* ==============================
   HIGHLIGHTS BAR
   ============================== */
.highlights {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  padding: 0;
  border-bottom: 2px solid rgba(212,169,68,.2);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

.highlight-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 20px 8px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: var(--t);
  cursor: default;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(212,169,68,.08); }

.highlight-icon { font-size: 1.8rem; }
.highlight-item h3 {
  font-family: var(--ff-heading);
  font-size: .82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.highlight-item p {
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}

/* ==============================
   SECTION COMMONS
   ============================== */
section { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 36px; }

.section-tag {
  display: inline-block;
  padding: 4px 18px;
  border-radius: 50px;
  background: rgba(201,123,26,.12);
  border: 1px solid rgba(201,123,26,.35);
  font-family: var(--ff-heading);
  font-size: .72rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.section-tag--gold {
  background: rgba(212,169,68,.15);
  border-color: rgba(212,169,68,.4);
  color: var(--gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 6vw, 3rem);
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.section-title--light { color: #fff; }
.section-desc { font-size: .95rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }
.section-desc--light { color: rgba(255,255,255,.65); }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-desc  { color: rgba(255,255,255,.65); }

/* ==============================
   SOBRE / ESPAÇO — Slider Mobile
   ============================== */
.sobre { background: var(--cream-light); }

.space-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 100%;
}

.space-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  width: 100%;
  max-width: 100%;
}
.space-slider::-webkit-scrollbar { display: none; }

.space-slide {
  flex: 0 0 calc(85vw - 32px);
  max-width: 480px;
  height: 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .space-slide { flex: 0 0 380px; height: 320px; }
}

.slider-dots {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 16px;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(201,123,26,.3);
  transition: var(--t);
  cursor: pointer;
}
.slider-dot.active { background: var(--amber); width: 20px; border-radius: 4px; }

/* ==============================
   CARDÁPIO
   ============================== */
.cardapio {
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown-warm) 100%);
}
.cardapio .section-title { color: var(--cream); }

.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.food-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 480px) { .food-card { height: 220px; } }
.food-card:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* Tablet & Desktop: 4 columns in one row */
@media (min-width: 768px) {
  .food-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.food-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.food-card:hover .food-img { transform: scale(1.08); }

.food-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(26,10,0,.9));
  display: flex; align-items: center; gap: 7px;
  font-family: var(--ff-heading);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ==============================
   QUADRAS — scroll horizontal mobile
   ============================== */
.quadras {
  position: relative;
  overflow: hidden;
  background: var(--brown-dark);
  padding: 72px 0;
}
.quadras-bg {
  position: absolute; inset: 0;
  background: url('QUADRA/1.jpg') center/cover no-repeat;
  opacity: .1;
}

.courts-scroll-wrap {
  overflow: hidden;
  margin: 0 -16px;
  width: calc(100% + 32px);
  max-width: calc(100% + 32px);
}

.courts-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px 4px;
  width: 100%;
  max-width: 100%;
}
.courts-scroll::-webkit-scrollbar { display: none; }

.court-card {
  flex: 0 0 76vw;
  max-width: 300px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,169,68,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t);
  flex-shrink: 0;
}
@media (min-width: 640px) { .court-card { flex: 0 0 260px; } }

.court-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.court-img-wrap { position: relative; height: 200px; overflow: hidden; }
.court-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.court-card:hover .court-img { transform: scale(1.06); }

.court-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 14px;
  background: rgba(26,10,0,.85);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-family: var(--ff-heading);
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.court-info { padding: 18px; }
.court-info h3 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.court-info p { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.5; }

.courts-cta { text-align: center; margin-top: 36px; }

/* ==============================
   GALERIA
   ============================== */
.galeria { background: var(--cream-light); }

.gallery-masonry { columns: 2; gap: 10px; }
@media (min-width: 768px) { .gallery-masonry { columns: 3; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,10,0,0);
  transition: var(--t);
}
.gallery-item:hover::after { background: rgba(26,10,0,.3); }
.gallery-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ==============================
   CONTATO
   ============================== */
.contato {
  background: linear-gradient(160deg, var(--brown-dark), var(--brown-warm));
}
.contato .section-title { color: var(--cream); }
.contato .section-tag { background: rgba(212,169,68,.15); border-color: var(--gold); color: var(--gold); }

.contato-grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .contato-grid { grid-template-columns: 1fr 1fr; } }

.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,169,68,.15);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: var(--t);
}
.info-card:hover { border-color: var(--gold); background: rgba(212,169,68,.07); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card h3 {
  font-family: var(--ff-heading);
  font-size: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.info-card p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.5; }
.info-link {
  display: inline-block;
  margin-top: 6px;
  font-size: .83rem;
  color: var(--amber-light);
  font-weight: 600;
  transition: var(--t);
}
.info-link:hover { color: var(--gold); }

.contato-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }

.mapa-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
}
.mapa { width: 100%; height: 100%; min-height: 320px; border: none; }

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--brown-dark);
  border-top: 2px solid rgba(212,169,68,.18);
  padding: 36px 0 20px;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  margin-bottom: 20px; text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-logo { height: 52px; width: auto; object-fit: contain; }
.footer-info p { color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff; font-size: 1.1rem;
  transition: var(--t);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: var(--green-wpp); border-color: var(--green-wpp); }

.footer-copy {
  text-align: center;
  color: rgba(255,255,255,.28);
  font-size: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 18px;
}

/* ==============================
   WHATSAPP FLOAT
   ============================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 16px;
  z-index: 900;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--green-wpp);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transition: var(--t);
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 34px; height: 34px; }

.wa-pulse {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--green-wpp);
  animation: pulse 2s ease-in-out infinite;
  opacity: .5;
}
@keyframes pulse {
  0%,100% { transform:scale(1); opacity:.5; }
  50%      { transform:scale(1.35); opacity:0; }
}

/* ==============================
   LIGHTBOX
   ============================== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: background .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 18px; right: 18px; font-size: 1rem; }
.lightbox-prev  { left: 12px;  top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-next  { right: 12px; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ==============================
   DESKTOP OVERRIDES
   ============================== */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    flex-direction: row;
    width: auto; height: auto;
    background: transparent; border: none;
    transform: none !important;
    padding: 0; gap: 4px;
    overflow: visible;
  }
  .nav-link {
    padding: 8px 16px;
    font-size: .8rem;
    border-bottom: none; border-radius: 6px;
  }
  .nav-link:hover { padding-left: 16px; background: rgba(255,255,255,.08); }

  /* Desktop: espaço grid */
  .space-slider-wrap {
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }
  .space-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .space-slide {
    flex: unset; max-width: none;
    height: 260px;
    scroll-snap-align: none;
  }
  .slider-dots { display: none; }

  /* Desktop: quadras grid */
  .courts-scroll-wrap { overflow: visible; margin: 0; }
  .courts-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
    gap: 18px;
  }
  .court-card { flex: unset; max-width: none; }
}
