/* ═══════════════════════════════════════
   SHARK BAY CAM — Global Stylesheet
   sharkbaycam.co.za
════════════════════════════════════════ */

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

:root {
  --sky:     #f0f7ff;
  --white:   #ffffff;
  --ocean:   #0e6e8c;
  --deep:    #084d64;
  --teal:    #1a9fb5;
  --teal-lt: #e6f7fb;
  --sand:    #f5ede0;
  --sand2:   #eedfc8;
  --text:    #1a2630;
  --text2:   #4a6070;
  --text3:   #7a95a5;
  --border:  #d8e8ef;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Source Sans 3', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { line-height: 1.2; }
p + p { margin-top: 1rem; }

/* ── LAYOUT ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.main-col { min-width: 0; }
.content-area { padding: 2.5rem 0 3rem; }

/* ── AD SLOTS ── */
.ad-wrap {
  background: #f9fbfc;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  padding: 8px 4px;
  overflow: hidden;
}
.ad-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  display: block;
  margin-bottom: 4px;
}
.ad-strip {
  background: #f0f5f8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  overflow: hidden;
}
.ad-center { display:flex; justify-content:center; margin: 1.5rem 0 2rem; }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 2px solid var(--ocean);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(14,110,140,0.08);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1180px; margin: 0 auto;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.logo-main { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--deep); }
.logo-main span { color: var(--teal); }
.logo-sub { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text3); }
.header-live {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--deep); color: #fff;
  padding: 0.5rem 1.1rem; border-radius: 3px;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.header-live:hover { background: var(--teal); text-decoration: none; color: #fff; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4040; animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;}50%{opacity:0.2;} }

nav { background: var(--ocean); }
.nav-list {
  display: flex; list-style: none;
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  overflow-x: auto; scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list a {
  display: block; padding: 0.65rem 1.1rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85); white-space: nowrap;
  transition: color 0.15s, background 0.15s; text-decoration: none;
}
.nav-list a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-list a.active { color: #fff; border-bottom: 2px solid #fff; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--ocean) 60%, #1ab8d4 100%);
  color: #fff; padding: 3rem 1.5rem 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50px;
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
}
.page-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.9rem; margin-bottom: 1rem; color: #fff;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 0.8rem;
}
.page-hero h1 em { font-style: italic; color: #7fe5f5; }
.page-hero p { max-width: 600px; font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.75; }

/* ── SECTION HEADINGS ── */
.section-heading {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--deep);
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--teal);
  margin-bottom: 1.2rem; display: inline-block;
}
.section-intro { color: var(--text2); font-size: 1rem; margin-bottom: 1.8rem; max-width: 680px; }
.section-gap { margin-top: 3rem; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.78rem; color: var(--text3); padding: 0.6rem 0 0; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text3); }
.breadcrumb span { color: var(--text2); margin: 0 0.3rem; }

/* ── CALLOUT ── */
.callout {
  background: linear-gradient(135deg, var(--teal-lt) 0%, #d8f5fa 100%);
  border: 1px solid #a0dce8; border-left: 4px solid var(--teal);
  border-radius: 4px; padding: 1.2rem 1.4rem; margin: 1.5rem 0;
  font-size: 0.9rem; color: var(--text); line-height: 1.7;
}
.callout strong { color: var(--deep); }
.callout-warning {
  background: #fff8e6; border-color: #f5c842; border-left-color: #e6a800;
}
.callout-danger {
  background: #fff0f0; border-color: #f5a0a0; border-left-color: #cc0000;
}

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: #b0cdd8; }
.card-body { padding: 1.2rem 1.4rem; }
.card-tag {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 0.4rem;
}
.card-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--deep); margin-bottom: 0.4rem; line-height: 1.3;
}
.card-text { font-size: 0.88rem; color: var(--text2); line-height: 1.6; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-bottom: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.5rem; }

/* ── INFO TABLE ── */
.info-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.9rem; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table td { padding: 0.8rem 0.6rem; vertical-align: top; }
.info-table td:first-child { font-weight: 700; color: var(--deep); width: 140px; white-space: nowrap; }
.info-table td:last-child { color: var(--text2); }

/* ── SIDEBAR ── */
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem; }
.widget-head { background: var(--deep); color: #fff; padding: 0.7rem 1rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.widget-body { padding: 1rem; }
.widget-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.widget-list li { font-size: 0.87rem; border-bottom: 1px solid var(--border); padding-bottom: 0.6rem; color: var(--text2); }
.widget-list li:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list strong { color: var(--deep); }
.widget-list a { color: var(--teal); font-weight: 600; }
.quick-links { display: flex; flex-direction: column; gap: 0.5rem; }
.quick-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--sky); border: 1px solid var(--border); border-radius: 4px;
  padding: 0.6rem 0.9rem; font-size: 0.85rem; color: var(--deep); font-weight: 600;
  text-decoration: none; transition: background 0.15s, border-color 0.15s;
}
.quick-link:hover { background: var(--teal-lt); border-color: var(--teal); text-decoration: none; color: var(--deep); }
.quick-link-arrow { color: var(--teal); font-weight: 700; }
.weather-row { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.weather-row:last-child { border-bottom: none; }
.weather-val { font-weight: 700; color: var(--deep); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--teal); color: #fff;
  padding: 0.75rem 1.8rem; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: var(--deep); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--teal);
  border: 2px solid var(--teal); padding: 0.75rem 1.8rem; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; transition: all 0.15s;
}
.btn-outline:hover { background: var(--teal); color: #fff; text-decoration: none; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; margin-bottom: 1.5rem; }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, var(--deep), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,77,100,0.9), transparent);
  color: #fff; padding: 0.8rem 0.7rem 0.5rem;
  font-size: 0.78rem; font-weight: 600;
}

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--deep); margin-bottom: 0.4rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: var(--sans); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,159,181,0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit {
  background: var(--teal); color: #fff; border: none;
  padding: 0.85rem 2rem; border-radius: 4px; cursor: pointer;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.15s, transform 0.15s;
}
.form-submit:hover { background: var(--deep); transform: translateY(-1px); }

/* ── BLOG POST LIST ── */
.post-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1.5rem; }
.post-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 1.4rem; display: flex; gap: 1.4rem;
  transition: box-shadow 0.2s; align-items: flex-start;
}
.post-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.post-icon { font-size: 2.5rem; flex-shrink: 0; }
.post-cat { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 0.3rem; }
.post-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--deep); margin-bottom: 0.4rem; line-height: 1.3; }
.post-date { font-size: 0.75rem; color: var(--text3); margin-bottom: 0.5rem; }
.post-excerpt { font-size: 0.88rem; color: var(--text2); line-height: 1.6; }
.post-read-more { display: inline-block; margin-top: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--teal); }

/* ── SNAKE/WILDLIFE CARDS ── */
.species-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 1.2rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow 0.2s;
}
.species-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.species-icon { font-size: 2.2rem; flex-shrink: 0; }
.species-name { font-weight: 700; color: var(--deep); font-size: 1rem; }
.species-sci { font-size: 0.75rem; color: var(--text3); font-style: italic; margin-bottom: 0.4rem; }
.species-danger { display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 3px; margin-bottom: 0.4rem; }
.danger-high { background: #ffe0e0; color: #cc0000; }
.danger-med  { background: #fff3cd; color: #8a6000; }
.danger-low  { background: #e0f7e0; color: #1a6600; }
.species-desc { font-size: 0.85rem; color: var(--text2); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--deep); color: rgba(255,255,255,0.8); padding: 3rem 1.5rem 1.5rem; margin-top: 3rem; }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand .logo-main { font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 700; }
.footer-brand .logo-main span { color: #7fe5f5; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.7rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #7fe5f5; margin-bottom: 0.9rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-emergency strong { color: #ff8080; }

/* ── LIVE CAM STREAM ── */
.stream-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(8,77,100,0.22);
  background: linear-gradient(135deg, var(--deep), var(--ocean));
}
.stream-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.stream-loading {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  gap: 1rem;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.stream-wrapper.loaded .stream-loading { opacity: 0; }
.stream-loading .spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.stream-status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--deep);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
}
.stream-location {
  font-size: 0.82rem;
  color: var(--text3);
}
.stream-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 0 0 6px 6px;
  padding: 0.7rem 1rem;
  margin-bottom: 1.5rem;
}
.stream-footer-credit {
  font-size: 0.8rem;
  color: var(--text3);
}
.stream-footer-credit a {
  color: var(--teal);
}
.btn-fullscreen {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-fullscreen:hover {
  background: var(--deep);
  text-decoration: none;
  color: #fff;
}
.cam-offline {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border: 1px dashed var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.cam-offline h3 { color: var(--deep); margin: 0.5rem 0; }
.cam-offline p { color: var(--text3); font-size: 0.9rem; }

/* ── SHARE BAR ── */
.share-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.share-bar span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
  font-family: var(--sans);
}
.share-btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #0f1419; }
.share-btn.wa { background: #25d366; }
.share-btn.copy { background: #5c7080; cursor: pointer; border: none; }

/* ── STREAM TIPS ── */
.stream-tips {
  background: linear-gradient(135deg, var(--teal-lt) 0%, #d8f5fa 100%);
  border: 1px solid #a0dce8;
  border-left: 4px solid var(--teal);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}
.stream-tips strong { color: var(--deep); }

/* ── VIEWING TIME CARDS ── */
.times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.2rem 0 1.8rem;
}
.time-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.time-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.time-card .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.time-card .time-range {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.3rem;
}
.time-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 0.3rem 0 0.5rem;
  color: var(--deep);
}
.time-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text2);
  margin: 0;
}

/* ── SPOT CARDS ── */
.spot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.2rem 0 1.8rem;
}
.spot-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--teal);
  transition: box-shadow 0.2s;
}
.spot-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.spot-card .tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.spot-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text2);
  margin: 0;
}

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--deep);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 999;
  font-size: 0.85rem;
  border-radius: 0 0 4px 0;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .times-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-card { flex-direction: column; gap: 0.8rem; }
  .times-grid { grid-template-columns: 1fr; }
  .spot-grid { grid-template-columns: 1fr; }
  .stream-footer { flex-direction: column; align-items: flex-start; }
  .share-bar { gap: 0.5rem; }
}
