/* ===========================
   Let’s Go Surfing — Clean CSS
   (No duplicates / no overrides)
   =========================== */

/* ----- Base / Reset ----- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

html {
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1b1b1b;
  line-height: 1.35;
  background: #f3f0e2;
}

/* Sticky footer layout */
body.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; }

/* ----- Layout ----- */
.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

/* Poster background (hero bg on all pages) */
body.poster {
  background-color: #f3f0e2;
  background-image: url("../img/hero-bg.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

/* Soft glass panel (used on hero sections) */
.panel {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* ----- Header / Nav ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(243,240,226,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  padding: 14px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body {
  padding-top: 80px; /* adjust to exact header height */
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-header {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.10);
}

.nav-link:hover { filter: brightness(0.98); }

.hamburger {
  display: none;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.75);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.hamburger-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: #2b2b2b;
  position: relative;
}
.hamburger-bars::before,
.hamburger-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #2b2b2b;
}
.hamburger-bars::before { top: -6px; }
.hamburger-bars::after  { top:  6px; }

.mobile-menu {
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(243,240,226,0.96);
}
.mobile-menu-inner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding: 12px 0 16px;
  display: grid;
  gap: 10px;
}
.mobile-link {
  text-decoration: none;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.10);
}

/* Responsive nav */
@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .hamburger { display: inline-flex; }
  .logo-header { height: 40px; }
}

/* ----- Pills / Chips ----- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.10);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}
.pill-link { text-decoration: none; cursor: pointer; }
.pill-link:hover { filter: brightness(0.98); }

.conditions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cond-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.10);
  font-weight: 800;
  font-size: 13px;
}

/* ==========================================
   GLOBAL ICON SIZING (Wave, Wind, Clock, etc.)
   ========================================== */

.ui-ic {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
}

.ui-ic-sm {
  width: 22px;
  height: 22px;
}

/* Larger on mobile for real usability */
@media (max-width: 720px) {
  .ui-ic {
    width: 30px;
    height: 30px;
  }

  .ui-ic-sm {
    width: 24px;
    height: 24px;
  }
}

.cond-chip img,
.home-card-line img,
.spot-pillrow img,
.spot-table img {
  margin-right: 8px;
  flex-shrink: 0;
}



/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.80);
  font-weight: 900;
  text-decoration: none;
}
.btn:hover { filter: brightness(0.98); }

.btn-ghost {
  background: rgba(255,255,255,0.65);
}

/* ----- Results Hero ----- */
.results-hero { padding: 28px 0 40px; }

.results-top {
  text-align: center;
  margin-bottom: 12px;
}
.results-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
}
.results-sub {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 800;
  font-size: 13px;
}

/* Top pills panel */
.results-chips {
  margin-inline: auto;
  max-width: 980px;
  padding: 14px 14px 16px;
}

.results-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Section header */
.home-cards-title {
  text-align: center;
  font-size: 18px;
  margin: 18px 0 14px;
  font-weight: 900;
}

/* ----- Card Grid (Results page = 2x2) ----- */
.page-results .home-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 520px));
  gap: 18px;
  justify-content: center;   /* centers the grid */
  align-items: stretch;
  margin-inline: auto;
  max-width: 1100px;
}

/* Tablet / mobile */
@media (max-width: 980px) {
  .page-results .home-card-grid {
    grid-template-columns: minmax(320px, 640px);
  }
}

/* ----- Cards ----- */
.home-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Card head line with title + status */
.home-card-head {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.85);
}

/* FIX crowded title: clamp to 2 lines, consistent height */
.home-card-side {
  font-weight: 1000;
  font-size: 18px;
  line-height: 1.15;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;     /* <-- prevents crowding */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-card-status {
  font-weight: 1000;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.75);
  white-space: nowrap;
  align-self: center;
}

/* Status color bands (matches your design) */
.home-card-go .home-card-status { background: #2f9a57; color: #fff; border-color: rgba(0,0,0,0.08); }
.home-card-maybe .home-card-status { background: #f0b41d; color: #2b1b00; border-color: rgba(0,0,0,0.08); }
.home-card-no .home-card-status { background: #d75454; color: #fff; border-color: rgba(0,0,0,0.08); }

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

.home-card-spot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.home-card-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}

.dot { opacity: 0.45; }

.home-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
}
.home-card-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* Best time block */
.best-time {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(0,0,0,0.10);
}
.best-time-label {
  font-weight: 1000;
  font-size: 13px;
}
.best-time-range {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-top: 4px;
  font-weight: 900;
  font-size: 13px;
}
.best-time-score {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
}

/* Card button */
.home-card-btn {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  font-weight: 1000;
  text-decoration: none;
  background: rgba(255,255,255,0.70);
}

.home-card-go .home-card-btn { background: rgba(47,154,87,0.14); }
.home-card-maybe .home-card-btn { background: rgba(240,180,29,0.18); }
.home-card-no .home-card-btn { background: rgba(215,84,84,0.14); }

.home-card-btn:hover { filter: brightness(0.98); }

/* Safety banner */
.safety-banner {
  margin: 18px auto 0;
  max-width: 980px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(0,0,0,0.10);
  font-weight: 800;
  font-size: 13px;
}
.safety-banner p { margin: 0; }

/* ----- Footer ----- */
.site-footer {
  padding: 18px 0;
  background: rgba(243,240,226,0.92);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-size: 13px;
}

.muted { opacity: 0.75; }

@media (max-width: 720px){
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ===========================
   HOMEPAGE ONLY
   =========================== */

.page-home .home-hero { padding: 22px 0 36px; }

.page-home .home-hero-inner {
  padding: 22px 20px 18px;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

.page-home .home-hero-logo{
  width: min(430px, 100%);
  margin: 6px auto 10px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

.page-home .home-hero-subtext{
  margin: 0 auto 14px;
  max-width: 820px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 10px 12px;
}

.page-home .home-form{
  margin: 14px auto 10px;
  max-width: 760px;
  text-align: left;
}

.page-home .home-label{
  display: block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.03em;
  margin: 0 0 6px 2px;
  text-transform: uppercase;
}

.page-home .home-form-row{
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.page-home .home-input{
  flex: 1;
  min-width: 160px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 800;
  outline: none;
}

.page-home .home-input:focus{
  border-color: rgba(0,0,0,0.24);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.35);
}

.page-home .home-btn{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  font-weight: 1000;
  padding: 12px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.page-home .home-btn-primary{
  background: rgba(244,58,6,0.85);
  color: #ffffff;
}

.page-home .home-btn-ghost{
  background: rgba(58,189,158,0.85);
  color: #ffffff;
}

.page-home .home-form-row-secondary{
  margin-top: 10px;
  align-items: center;
}

.page-home .home-hints{
  font-weight: 800;
  font-size: 13px;
  opacity: 0.85;
}

.page-home .home-badges{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Preview cards */
.page-home .home-preview{
  margin-top: 16px;
}

.page-home .home-preview-title{
  margin: 0 0 10px;
  font-weight: 1000;
  font-size: 16px;
}

.page-home .home-preview-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px;
}

.page-home .preview-card{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.65);
  padding: 12px 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  text-align: left;
}

.page-home .preview-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.page-home .preview-name{
  font-weight: 1000;
  font-size: 14px;
}

.page-home .preview-status{
  font-weight: 1000;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
}

.page-home .preview-go .preview-status{ background:#2f9a57; color:#fff; }
.page-home .preview-maybe .preview-status{ background:#f0b41d; color:#2b1b00; }
.page-home .preview-no .preview-status{ background:#d75454; color:#fff; }

.page-home .preview-line{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
}

.page-home .preview-note{
  margin-top: 8px;
  font-weight: 800;
  font-size: 12px;
  opacity: 0.85;
}

/* About / Safety blocks */
.page-home .home-section{ padding: 14px 0; }
.page-home .home-section-inner{ padding: 16px 18px; }
.page-home .home-section-inner h2{ margin: 0 0 8px; font-weight: 1000; }
.page-home .home-section-inner p{ margin: 0; font-weight: 700; }

/* Mobile */
@media (max-width: 980px){
  .page-home .home-preview-grid{ grid-template-columns: 1fr; }
  .page-home .home-form-row{ flex-direction: column; }
}

/* ===========================
   SPOT PAGE ONLY
   =========================== */

.page-spot .spot-hero { padding: 24px 0 36px; }

.page-spot .spot-titlewrap{
  text-align: center;
  margin-bottom: 12px;
}
.page-spot .spot-title{
  margin: 0;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 1000;
}
.page-spot .spot-sub{
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 800;
  font-size: 13px;
}

/* Panel for pill sections */
.page-spot .spot-panel{
  max-width: 980px;
  margin-inline: auto;
  padding: 14px 14px 16px;
}

/* Fix pill alignment (your #2a) */
.page-spot .spot-pillrow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-spot .spot-pillrow-secondary{
  margin-top: 10px;
}

/* Split info boxes */
.page-spot .spot-split{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 820px){
  .page-spot .spot-split{ grid-template-columns: 1fr; }
}

.page-spot .spot-box{
  border-radius: 16px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(0,0,0,0.10);
  padding: 12px;
}
.page-spot .spot-box-title{
  font-weight: 1000;
  font-size: 13px;
}
.page-spot .spot-box-body{
  margin-top: 6px;
  font-weight: 900;
  font-size: 13px;
}

.page-spot .spot-mini{
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  font-weight: 900;
  font-size: 12px;
}

/* Styled table (your #2b) */
.page-spot .spot-tablewrap{
  max-width: 980px;
  margin: 16px auto 0;
  padding: 14px 14px 16px;
}

.page-spot .spot-table-title{
  text-align: center;
  margin: 6px 0 12px;
  font-weight: 1000;
  font-size: 18px;
}

.page-spot .spot-table-scroll{
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
}

.page-spot .spot-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.page-spot .spot-table th,
.page-spot .spot-table td{
  padding: 10px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.page-spot .spot-table thead th{
  position: sticky;
  top: 0;
  background: rgba(243,240,226,0.96);
  font-weight: 1000;
  z-index: 2;
}

.page-spot .spot-table .num{ text-align: right; }

.page-spot .spot-table tbody tr:hover{
  background: rgba(255,255,255,0.85);
}

.page-spot .table-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  font-weight: 1000;
  font-size: 12px;
}

/* Subtle row tint by status */
.page-spot tr.row-go{ background: rgba(47,154,87,0.06); }
.page-spot tr.row-maybe{ background: rgba(240,180,29,0.07); }
.page-spot tr.row-no{ background: rgba(215,84,84,0.06); }

.page-spot .spot-backrow{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   SPOT PAGE TABLE — CLEAN + MOBILE FRIENDLY
   =========================== */

.page-spot .spot-tablewrap{
  max-width: 980px;
  margin: 16px auto 0;
  padding: 14px 14px 16px;
}

.page-spot .spot-table-title{
  text-align: center;
  margin: 6px 0 12px;
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.page-spot .spot-table-scroll{
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* desktop/tablet table */
.page-spot .spot-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  line-height: 1.2;
}

.page-spot .spot-table th,
.page-spot .spot-table td{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.page-spot .spot-table thead th{
  position: sticky;
  top: 0;
  background: rgba(243,240,226,0.96);
  backdrop-filter: blur(6px);
  font-weight: 1000;
  z-index: 2;
}

.page-spot .spot-table .num{
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.page-spot .spot-table tbody tr:nth-child(even){
  background: rgba(255,255,255,0.45);
}

.page-spot .spot-table tbody tr:hover{
  background: rgba(255,255,255,0.85);
}

.page-spot .table-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  font-weight: 1000;
  font-size: 12px;
}

/* status colors (assuming you already have these somewhere; safe to repeat) */
.page-spot .badge-go{ background: #2f9a57; color:#fff; }
.page-spot .badge-maybe{ background:#f0b41d; color:#2b1b00; }
.page-spot .badge-no{ background:#d75454; color:#fff; }

/* subtle tint per row */
.page-spot tr.row-go{ box-shadow: inset 4px 0 0 rgba(47,154,87,0.55); }
.page-spot tr.row-maybe{ box-shadow: inset 4px 0 0 rgba(240,180,29,0.60); }
.page-spot tr.row-no{ box-shadow: inset 4px 0 0 rgba(215,84,84,0.55); }

.page-spot .wind-mini{
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  font-weight: 900;
  font-size: 12px;
}

/* Best 3 hours highlight */
.page-spot .spot-table tr.row-best{
  background: rgba(255, 243, 200, 0.70) !important;
  outline: 2px solid rgba(240, 180, 29, 0.55);
  outline-offset: -2px;
}

.page-spot .best-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(240, 180, 29, 0.95);
  color: #2b1b00;
}

@media (max-width: 720px){
  .page-spot .spot-table tr.row-best{
    box-shadow: inset 6px 0 0 rgba(240,180,29,0.85), 0 12px 26px rgba(0,0,0,0.10) !important;
  }
}


.page-spot .spot-window-label span{
  opacity: 0.85;
}


/* ===========================
   STANDARD ABOUT / SAFETY SECTIONS
   =========================== */

.info-section{ padding: 14px 0; }

.info-panel{
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 16px 18px;
}

.info-title{
  margin: 0 0 8px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}

.info-lede{
  margin: 0 0 12px;
  font-weight: 700;
  opacity: 0.92;
}

.info-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 820px){
  .info-grid{ grid-template-columns: 1fr; }
}

.info-card{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.62);
  padding: 12px;
}

.info-card-title{
  font-weight: 1000;
  margin-bottom: 8px;
}

.info-iconlist,
.info-checklist,
.info-pilllist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.info-iconlist li,
.info-checklist li{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 800;
  line-height: 1.25;
}

.info-iconlist li strong{
  display: block;
  font-weight: 1000;
}

.info-iconlist li span{
  display: block;
  font-weight: 800;
  opacity: 0.85;
  margin-top: 2px;
}

.info-pilllist li{
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  line-height: 1.25;
}

.info-muted{
  font-weight: 700;
  opacity: 0.82;
  margin-top: 10px;
}

/* Make pill-link look like a pill but clickable */
.pill-link{
  cursor: pointer;
  text-decoration: none;
}
.pill-link:hover{ filter: brightness(0.98); }




/* ===========================
   MOBILE: turn table into stacked “cards”
   =========================== */
@media (max-width: 720px){
  .page-spot .spot-table-scroll{
    overflow: visible; /* no horizontal scroll on mobile */
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .page-spot .spot-table{
    display: block;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    font-size: 14px;
  }

  .page-spot .spot-table thead{
    display: none; /* hide header on mobile */
  }

  .page-spot .spot-table tbody{
    display: grid;
    gap: 12px;
  }

  .page-spot .spot-table tr{
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.72);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  }

  .page-spot .spot-table td{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    padding: 0;
    border: none;
    white-space: normal;
  }

  .page-spot .spot-table td::before{
    content: attr(data-label);
    font-weight: 1000;
    color: rgba(0,0,0,0.70);
  }

  .page-spot .spot-table .num{
    text-align: left;
  }

  .page-spot tr.row-go,
  .page-spot tr.row-maybe,
  .page-spot tr.row-no{
    box-shadow: inset 6px 0 0 rgba(0,0,0,0.10), 0 10px 24px rgba(0,0,0,0.08);
  }
}


/* ==========================================
   GLOBAL STATUS PILL COLORS (ALL PAGES)
   ========================================== */

.pill,
.table-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* GO */
.badge-go {
  background: #2f9a57;
  color: #ffffff;
}

/* MAYBE */
.badge-maybe {
  background: #f0b41d;
  color: #2b1b00;
}

/* NO */
.badge-no {
  background: #d75454;
  color: #ffffff;
}

/* Make sure generic white pills don't override */
.pill:not(.badge-go):not(.badge-maybe):not(.badge-no) {
  background: rgba(255,255,255,0.85);
  color: #111;
  border-color: rgba(0,0,0,0.1);
}

