@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Serif+4:wght@300;400;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --ink-muted: #7a7a7a;
  --red: #8B1A1A;
  --red-dark: #5C0F0F;
  --red-light: #B22222;
  --gold: #C8A55A;
  --gold-light: #E8C97A;
  --cream: #F5F0E8;
  --cream-dark: #EDE5D5;
  --steel: #2C3A4A;
  --steel-light: #3D4F62;
  --paper: #FAF7F2;
  --border: #D4C9B5;
  --border-dark: #B8A99A;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --olive: #4A5C2A;
  --olive-light: #6B7F3A;
  --khaki: #7A6B3A;
}

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

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── TOP TICKER ─── */
.ticker {
  background: var(--red-dark);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  animation: ticker 36s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.25);
  opacity: 0.9;
  flex-shrink: 0;
}
.ticker-item::before { content: "▶ "; opacity: 0.6; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── HEADER ─── */
header, .site-header {
  background: var(--ink);
  border-bottom: 3px solid var(--red);
  padding: 0;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-title, .site-title a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
}
.site-title span, .site-title a span { color: var(--gold); }
.site-tagline, .site-description {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.header-meta {
  text-align: right;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}
.header-meta strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ─── NAV ─── */
nav, .main-navigation {
  background: var(--steel);
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--red);
}
.main-navigation ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-link,
.main-navigation ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  padding: 14px 16px;
  display: block;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: all 0.2s;
}
.nav-link:hover,
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  color: var(--gold) !important;
  background: rgba(255,255,255,0.05);
}
.nav-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-search input[type="search"] {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  padding: 5px 10px;
  width: 160px;
}
.nav-search input[type="search"]::placeholder { color: rgba(255,255,255,0.35); }
.nav-search button {
  background: var(--red);
  border: none;
  border-radius: 3px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
  border-bottom: 3px solid var(--red);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cpath d='M0 60L60 0M-15 15L15 -15M45 75L75 45' stroke='%23ffffff' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: white;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--red-light); }
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
}
.hero-cta-secondary:hover { color: white !important; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.hero-featured {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  padding: 24px;
  position: relative;
  z-index: 1;
}
.hero-featured-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-featured-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,215,0,0.25);
}
.hero-article-list { list-style: none; }
.hero-article-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  transition: opacity 0.15s;
}
.hero-article-list li:hover { opacity: 0.8; }
.hero-article-list li:last-child { border-bottom: none; }
.art-cat {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 3px;
}
.cat-wwi { background: rgba(139,26,26,0.7); color: #ffb5b5; }
.cat-wwii { background: rgba(44,58,74,0.8); color: #9bbfdd; }
.cat-korea { background: rgba(74,92,42,0.8); color: #c8e09a; }
.cat-vietnam { background: rgba(122,107,58,0.8); color: #e8d89a; }
.hero-art-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

/* ─── MAIN LAYOUT ─── */
.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

/* ─── SECTION HEADERS ─── */
.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.section-line { flex: 1; height: 1px; background: var(--border); }
.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--red);
  color: white;
}

/* ─── ARTICLE CARDS ─── */
.article-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.article-card:first-of-type { padding-top: 0; }
.article-card:hover { opacity: 0.85; }
.article-card:hover .article-title { color: var(--red); }
.art-img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  filter: grayscale(30%);
  border: 1px solid var(--border);
}
.art-img-placeholder {
  width: 88px;
  height: 66px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--border-dark);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.article-cat {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 8px;
}
.article-cat.wwi { background: var(--red); color: white; }
.article-cat.wwii { background: var(--steel); color: white; }
.article-cat.korea { background: var(--olive); color: white; }
.article-cat.vietnam { background: var(--khaki); color: white; }
.article-date {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--ink-muted);
}
.article-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.article-excerpt {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-author {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ─── FEATURED ARTICLE ─── */
.featured-article {
  background: var(--ink);
  color: white;
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
  border-left: 4px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s;
}
.featured-article:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.featured-article .article-title { font-size: 24px; color: white; }
.featured-article:hover .article-title { color: var(--gold); }
.featured-article .article-excerpt { color: rgba(255,255,255,0.6); -webkit-line-clamp: 3; font-size: 14px; }
.featured-article .article-author { color: rgba(255,255,255,0.4); }
.featured-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* ─── FILTER BAR ─── */
.filter-bar {
  display: flex;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: white;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  color: var(--ink-muted);
  transition: all 0.15s;
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { background: var(--cream); color: var(--ink); }
.filter-btn.active { background: var(--red); color: white; }

/* ─── SIDEBAR ─── */
.sidebar, #secondary { position: sticky; top: 60px; }
.sidebar-section {
  background: white;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  overflow: hidden;
}
.sidebar-header {
  background: var(--ink);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.sidebar-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ─── BOOKS / AMAZON ─── */
.book-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.book-card:last-of-type { border-bottom: none; }
.book-card:hover { background: var(--cream); }
.book-cover {
  width: 50px;
  height: 70px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.book-cover-placeholder {
  width: 50px;
  height: 70px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.12);
}
.book-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 4px;
}
.book-author {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-style: italic;
}
.book-stars { color: #E6A817; font-size: 11px; margin-bottom: 4px; }
.book-price {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}
.book-price .original {
  text-decoration: line-through;
  color: var(--ink-muted);
  font-weight: 400;
  font-size: 10px;
  margin-left: 4px;
}
.amazon-cta {
  display: block;
  margin: 12px 16px;
  background: #FF9900;
  color: var(--ink) !important;
  text-align: center;
  padding: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}
.amazon-cta:hover { background: #FFAC30; }
.amazon-cta::before { content: "🛒 "; }
.affiliate-note {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: var(--ink-muted);
  padding: 8px 16px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

/* ─── NEWSLETTER ─── */
.newsletter-box {
  background: var(--steel);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 28px;
}
.newsletter-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 8px;
}
.newsletter-box p {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.newsletter-box input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: white;
  margin-bottom: 8px;
}
.newsletter-box input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-box button {
  width: 100%;
  padding: 11px;
  background: var(--red);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-box button:hover { background: var(--red-light); }

/* ─── QUICK LINKS ─── */
.quick-links { list-style: none; }
.quick-links li { border-bottom: 1px solid var(--border); }
.quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  transition: all 0.15s;
}
.quick-links a:hover { background: var(--cream); padding-left: 20px; color: var(--red); }
.quick-links a::before { content: "→"; font-family: 'Inter', sans-serif; font-size: 12px; color: var(--red); flex-shrink: 0; }

/* ─── TIMELINE ─── */
.timeline-section {
  background: var(--cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 48px 40px;
}
.timeline-section .section-header {
  max-width: 1180px;
  margin: 0 auto 36px;
}
.timeline-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.timeline-item {
  padding: 0 24px;
  border-right: 1px solid var(--border-dark);
}
.timeline-item:last-child { border-right: none; }
.timeline-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-event {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-desc { font-size: 13px; color: var(--ink-light); line-height: 1.5; }
.timeline-item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 12px;
}

/* ─── FOOTER ─── */
footer, .site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 48px 40px 24px;
  border-top: 3px solid var(--red);
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-title,
.footer-brand .site-title a {
  font-size: 24px !important;
  color: white !important;
  margin-bottom: 10px;
  display: block;
}
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6) !important;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--red); color: white !important; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: white !important; }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.footer-bottom a { color: rgba(255,255,255,0.35) !important; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold) !important; }

/* ─── SINGLE POST ─── */
.single-post-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}
.post-content {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
}
.post-content h1, .post-content h2, .post-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  margin: 1.5em 0 0.5em;
}
.post-content h1 { font-size: 36px; }
.post-content h2 { font-size: 26px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.post-content h3 { font-size: 20px; }
.post-content p { margin-bottom: 1.2em; }
.post-content img { max-width: 100%; height: auto; border: 1px solid var(--border); margin: 1em 0; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 16px 20px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--ink-light);
}
.entry-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}
.entry-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.entry-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 20px; }
  .hero-title { font-size: 36px; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .header-top { padding: 14px 20px; }
  nav, .main-navigation { padding: 0 20px; flex-wrap: wrap; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .timeline-section { padding: 32px 20px; }
  .single-post-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-title, .site-title a { font-size: 26px !important; }
  .hero-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .filter-bar { flex-wrap: wrap; }
}


/* ===== BOOK CATEGORY LABELS ===== */
.books-category-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8B7355;
  background: linear-gradient(135deg, #f5f0e8, #ede8dc);
  border-left: 3px solid #8B7355;
  padding: 6px 10px;
  margin: 14px 0 8px 0;
  border-radius: 0 4px 4px 0;
}


/* ===== PÁGINA /LIBROS/ ===== */
.libros-page { max-width: 100%; }

.libros-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  padding: 20px 24px;
  background: rgba(139,115,85,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.libros-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold);
  border-bottom: 2px solid rgba(139,115,85,0.3);
  padding-bottom: 10px;
  margin: 48px 0 8px 0;
}

.libros-section-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 28px;
  font-style: italic;
}

.libros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.libro-card {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s;
}
.libro-card:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.04);
  transform: translateY(-2px);
}

.libro-cover {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.libro-info { flex: 1; }

.libro-titulo {
  font-size: 1rem !important;
  font-weight: 700;
  margin: 0 0 4px 0 !important;
  line-height: 1.3;
}
.libro-titulo a {
  color: var(--text-primary) !important;
  text-decoration: none;
}
.libro-titulo a:hover { color: var(--gold) !important; }

.libro-autor {
  font-size: 0.82rem;
  color: var(--gold);
  margin: 0 0 4px 0;
  font-weight: 600;
}

.libro-tipo {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0 0 4px 0;
}

.libro-estrellas {
  color: #f5a623;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.libro-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.libro-btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.libro-btn:hover {
  background: var(--gold);
  color: #1a1410 !important;
}

.libros-cta-box {
  margin: 48px 0 32px;
  text-align: center;
  padding: 32px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
}
.libros-cta-box p { color: var(--text-secondary); margin-bottom: 16px; }
.libros-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #1a1410 !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none !important;
  font-size: 1rem;
  transition: all 0.2s;
}
.libros-cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.libros-affiliate-note {
  font-size: 0.75rem !important;
  color: var(--text-secondary);
  margin-top: 16px !important;
  opacity: 0.7;
}

/* Sidebar: botón ver todos */
.sidebar-ver-todos {
  display: block;
  text-align: center;
  padding: 10px;
  margin: 8px 0 4px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 4px;
  color: var(--gold) !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.sidebar-ver-todos:hover {
  background: var(--gold);
  color: #1a1410 !important;
}

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