body {
  background: var(--parchment);
  color: var(--abyss);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 15px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 110px 8rem 5rem; background: var(--abyss);
  border-bottom: 1px solid rgba(223,182,43,0.15);
}
.page-hero .eyebrow {
  font-family: 'Poppins', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.05; color: var(--white);
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero > p {
  font-family: 'Poppins', sans-serif; font-style: italic;
  font-size: 1rem; color: var(--white-70);
  margin-top: 1.2rem; max-width: 520px; line-height: 1.85;
}

/* ── BLOG LAYOUT ── */
.blog-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 5rem;
  padding: 6rem 8rem; align-items: start;
}

/* ── FEATURED POST ── */
.featured-post {
  margin-bottom: 5rem; padding-bottom: 5rem;
  border-bottom: 1px solid rgba(6,31,40,0.1);
}
.post-label {
  font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--abyss-text); margin-bottom: 1rem;
}
.featured-post h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700; color: var(--abyss); line-height: 1.15; margin-bottom: 1rem;
}
.featured-post h2 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.featured-post h2 a:hover { color: var(--gold-dark); }
.post-meta {
  font-family: 'Poppins', sans-serif; font-size: 0.62rem;
  color: var(--abyss-text); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.post-excerpt {
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-style: italic;
  color: var(--abyss-text); line-height: 1.9; margin-bottom: 1.8rem;
}
.read-more {
  font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--abyss); text-decoration: none;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 0.15rem;
  display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.18s;
}
.read-more:hover { gap: 0.6rem; }

/* ── POST LIST ── */
.post-item { padding: 2.8rem 0; border-bottom: 1px solid rgba(6,31,40,0.08); }
.post-item:last-child { border-bottom: none; }
.post-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700; color: var(--abyss); margin-bottom: 0.5rem; line-height: 1.2;
}
.post-item h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.post-item h3 a:hover { color: var(--gold-dark); }
.post-item .post-meta { margin-bottom: 0.8rem; }
.post-item p {
  font-family: 'Poppins', sans-serif; font-size: 0.93rem;
  color: var(--abyss-text); line-height: 1.85; font-style: italic;
}

/* ── SIDEBAR ── */
.blog-sidebar { position: sticky; top: 80px; }
.sidebar-section { margin-bottom: 3.5rem; }
.sidebar-section h3 {
  font-family: 'Unbounded', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--abyss);
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(6,31,40,0.12);
}
.sidebar-email { background: white; padding: 2.5rem; border: 1px solid rgba(223,182,43,0.15); }
.sidebar-email p {
  font-family: 'Poppins', sans-serif; font-size: 0.93rem; font-style: italic;
  color: var(--abyss-text); line-height: 1.7; margin-bottom: 1.5rem;
}
.sidebar-email input {
  width: 100%; background: var(--parchment);
  border: 1px solid rgba(6,31,40,0.15); color: var(--abyss);
  font-family: 'Poppins', sans-serif; font-size: 0.82rem;
  padding: 0.8rem 1rem; outline: none; margin-bottom: 0.8rem;
  transition: border-color 0.2s; display: block; border-radius: 0;
}
.sidebar-email input:focus { border-color: var(--gold); }
.sidebar-email button {
  width: 100%; background: var(--gold); color: var(--black); border: none;
  font-family: 'Unbounded', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.9rem; cursor: pointer; transition: background 0.18s;
}
.sidebar-email button:hover { background: var(--gold-dark); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  font-family: 'Poppins', sans-serif; font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--abyss-text);
  padding: 0.4rem 0.9rem; border: 1px solid rgba(6,31,40,0.15); text-decoration: none;
  transition: all 0.2s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

.sidebar-book {
  background: var(--abyss); padding: 2.5rem;
  color: var(--white); text-decoration: none; display: block; transition: background 0.2s;
}
.sidebar-book:hover { background: #04141C; }
.sidebar-book .sb-label {
  font-family: 'Poppins', sans-serif; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.sidebar-book h4 {
  font-family: 'Unbounded', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.6rem; line-height: 1.3;
}
.sidebar-book p {
  font-family: 'Poppins', sans-serif; font-size: 0.78rem;
  color: var(--white-50); line-height: 1.65;
}

/* ── POST HERO (individual post page) ── */
.page-hero.post-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  max-width: 860px;
}
.post-meta-hero {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-50); margin-top: 1.5rem;
}

/* ── POST CONTENT (article body) ── */
.post-content {
  max-width: 740px;
}
.post-content p {
  font-size: 1.02rem;
  line-height: 1.95;
  margin-bottom: 1.7rem;
  color: var(--abyss);
}
.post-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: var(--abyss);
  line-height: 1.25;
  margin-top: 3.5rem;
  margin-bottom: 1.4rem;
}
.post-content em { font-style: italic; }
.post-content a {
  color: var(--abyss);
  text-decoration: underline;
  text-decoration-color: rgba(223,182,43,0.5);
  transition: color 0.18s;
}
.post-content a:hover { color: var(--gold-dark); }
.post-content hr {
  border: none;
  border-top: 1px solid rgba(6,31,40,0.12);
  margin: 3rem 0;
}
.post-author-bio {
  font-size: 0.88rem;
  color: var(--abyss-text);
  font-style: italic;
  line-height: 1.85;
}

/* ── POST FOOTER (tags + back link) ── */
.post-tags-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(6,31,40,0.08);
  max-width: 740px;
}
.tags-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--abyss-text);
}
.post-back {
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
  .page-hero { padding: 90px 2.5rem 4rem; }
  .blog-layout { padding: 4rem 2.5rem; gap: 3rem; }
}
