/* Blog-specific overrides layered on top of surfingstingrays.css */
:root {
  --bg: #0e1413;
  --fg: #e9f1ef;
  --muted: #9fb2ad;
  --acc: #4de3c1;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

/* Header */
.post-header {
  max-width: 920px;
  margin: 96px auto 24px;
  padding: 0 16px;
  color: grey;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.post-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 6px 0 6px;
  letter-spacing: -0.02em;
  color: grey;
}

.byline {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 0.95rem;
}

.post-hero {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Body */
.post-body {
  max-width: 820px;
  margin: 24px auto 80px;
  padding: 0 16px;
}

.post-body h2 {
  margin-top: 36px;
  font-size: 1.4rem;
  color: grey;
}

.lede p {
  font-size: 1.1rem;
}

/* Embeds */
.embed-wrap {
  margin: 12px 0 8px;
  border-radius: 12px;
  overflow: hidden;
}

.platform-links {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 8px 0 0;
  flex-wrap: wrap;
}
.platform-links a { color: var(--acc); }

/* CTA */
.social-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--acc);
  color: var(--acc);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.btn:hover {
  background: var(--acc);
  color: #05201a;
}

.section-divider {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.more-links {
  list-style: disc;
  padding-left: 1.25rem;
}
.more-links a { color: var(--acc); }

.post-footer {
  max-width: 920px;
  margin: 0 auto 60px;
  padding: 0 16px;
  color: var(--muted);
  text-align: center;
}

/* Menu button position tweak for blog */
.menu-container .menu-button {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
}

/* Small screens */
@media (max-width: 640px) {
  .post-header { margin-top: 72px; }
}
