/* ── Craps@Home Blog — shared stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #0a1a0f;
  --green-mid:    #0d1f13;
  --green-deep:   #080f09;
  --green-felt:   #0d2818;
  --gold:         #c8a84b;
  --gold-bright:  #f4e5a8;
  --gold-light:   #f0d880;
  --cream:        #f0e8d0;
  --gold-dim:     rgba(200,168,75,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', sans-serif;
  background: var(--green-dark);
  color: var(--cream);
}

.felt {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
}

/* ── NAV (matches main site) ── */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(8,15,9,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-dim);
}
.nav-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 15px;
  letter-spacing: 3px;
  color: rgba(200,168,75,0.65);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 0 24px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(200,168,75,0.6);
}
.breadcrumb a { color: rgba(200,168,75,0.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ── ARTICLE ── */
article.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}
.post-eyebrow {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.post-title {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.post-meta {
  font-size: 14px;
  color: rgba(240,232,208,0.55);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.post-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(240,232,208,0.92);
}
.post-body p { margin-bottom: 22px; }
.post-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-light);
  margin: 40px 0 16px;
  letter-spacing: 0.5px;
}
.post-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  margin: 28px 0 12px;
}
.post-body ul, .post-body ol { margin: 0 0 22px 24px; }
.post-body li { margin-bottom: 10px; }
.post-body strong { color: var(--gold-bright); }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  color: rgba(240,232,208,0.8);
  font-style: italic;
}
.post-body a { color: var(--gold-light); }
.post-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin: 12px 0;
}
.post-cta:hover { background: var(--gold-bright); }

/* ── BLOG INDEX ── */
.blog-header {
  text-align: center;
  padding: 64px 24px 40px;
}
.blog-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.blog-header p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  color: rgba(240,232,208,0.8);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.post-grid {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.post-card {
  background: var(--green-mid);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}
.post-card:hover { border-color: var(--gold); }
.post-card .card-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.post-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 10px;
  line-height: 1.3;
}
.post-card p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px;
  color: rgba(240,232,208,0.8);
  line-height: 1.6;
}

/* ── FOOTER (matches main site) ── */
footer {
  padding: 48px 24px 32px;
  text-align: center;
  border-top: 1px solid var(--gold-dim);
}
.footer-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; list-style: none; }
.footer-links a { font-size: 14px; letter-spacing: 1px; color: rgba(200,168,75,0.6); text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(240,232,208,0.4); }
