/* ============================================================
   BLOG POST — TRAVEL READZ (matches blog.html exactly)
============================================================ */

/* ── HERO ── */
.blog-hero {
  background: var(--tile-dark);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(200,169,110,0.05)' stroke-width='0.5'%3E%3Cpolygon points='30,4 56,18 56,42 30,56 4,42 4,18'/%3E%3Cpolygon points='30,14 46,23 46,37 30,46 14,37 14,23'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.blog-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(200,134,58,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto; padding: 0 48px;
  text-align: center;
}
.blog-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 28px; flex-wrap: wrap;
}
.blog-meta-tag {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre); background: rgba(200,134,58,0.12);
  border: 1px solid rgba(200,134,58,0.25);
  padding: 5px 14px;
}
.blog-meta-date, .blog-meta-read {
  font-size: 0.72rem; color: rgba(200,169,110,0.45);
  letter-spacing: 0.08em;
}
.blog-meta-dot {
  width: 3px; height: 3px;
  background: rgba(200,169,110,0.3); border-radius: 50%;
}
.blog-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.15;
  color: var(--sand); margin-bottom: 24px;
}
.blog-hero-title em { font-style: italic; color: var(--gold-light); }
.blog-hero-subtitle {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(232,220,200,0.6); line-height: 1.8;
  max-width: 600px; margin: 0 auto 40px;
}
.blog-author-row {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.15);
  padding: 12px 20px;
}
.blog-author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ochre);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem;
  color: #fff; font-weight: 600; flex-shrink: 0;
}
.blog-author-name {
  font-size: 0.82rem; font-weight: 500;
  color: var(--sand); letter-spacing: 0.04em;
}
.blog-author-title {
  font-size: 0.68rem; color: rgba(200,169,110,0.45);
  letter-spacing: 0.06em;
}

/* Hero Image */
.blog-hero-image {
  width: 100%; max-width: 900px;
  margin: 64px auto 0;
  position: relative;
}
.blog-hero-image img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  filter: brightness(0.85);
}
.blog-hero-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,31,43,0.9), transparent);
  padding: 40px 32px 20px;
  font-size: 0.72rem; color: rgba(200,169,110,0.6);
  letter-spacing: 0.06em; font-style: italic;
}

/* ── BODY ── */
.blog-body {
  background: var(--cream);
  padding: 0 0 80px;
}
.blog-layout {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}
.blog-content { padding-top: 72px; }

/* Typography */
.blog-content p {
  font-size: 1.02rem; font-weight: 300;
  line-height: 1.9; color: var(--ink);
  margin-bottom: 26px;
}
.blog-content p strong { font-weight: 600; color: var(--tile); }
.blog-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300; color: var(--tile);
  line-height: 1.2;
  margin: 60px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.blog-content h2 em { font-style: italic; color: var(--ochre); }
.blog-content h3 {
  font-family: var(--serif);
  font-size: 1.28rem; font-weight: 400;
  color: var(--tile); margin: 36px 0 12px;
}
.blog-content h4 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre); margin: 28px 0 10px;
}

/* Lead paragraph */
.blog-content p:first-of-type {
  font-size: 1.12rem;
  color: var(--smoke);
  line-height: 1.85;
  border-left: 3px solid var(--ochre);
  padding-left: 24px;
  margin-bottom: 40px;
}

/* Blockquote / pull quote */
.blog-content blockquote {
  background: var(--tile);
  padding: 36px 40px;
  margin: 44px 0;
  position: relative;
  border: none;
}
.blog-content blockquote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 6rem; line-height: 1;
  color: var(--ochre); opacity: 0.3;
  position: absolute; top: -10px; left: 24px;
}
.blog-content blockquote p {
  font-family: var(--serif);
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  font-style: italic;
  color: var(--sand) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  position: relative; z-index: 1;
}

/* Lists */
.blog-content ul, .blog-content ol {
  padding-left: 0;
  margin-bottom: 1.8em;
  list-style: none;
}
.blog-content ul li, .blog-content ol li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0;
  font-size: 1rem; font-weight: 300;
  color: var(--ink); line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.blog-content ul li:last-child,
.blog-content ol li:last-child { border-bottom: none; }
.blog-content ul li::before {
  content: '◆';
  color: var(--ochre); font-size: 0.4rem;
  flex-shrink: 0; margin-top: 9px;
}
.blog-content ol { counter-reset: ol-list; }
.blog-content ol li::before {
  counter-increment: ol-list;
  content: counter(ol-list);
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 300;
  color: var(--ochre); flex-shrink: 0;
  min-width: 22px;
}

/* Images */
.blog-content img {
  width: 100%; height: 360px;
  object-fit: cover; display: block;
  filter: brightness(0.9);
  margin: 40px 0 10px;
}
.blog-content img + em {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--smoke);
  font-style: normal; letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.blog-content img + em::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--border-mid); flex-shrink: 0;
}

/* HR divider */
.blog-content hr {
  border: none;
  display: flex; align-items: center;
  gap: 16px; margin: 52px 0;
  text-align: center;
}
.blog-content hr::before {
  content: '✦  ✦  ✦';
  color: var(--ochre); opacity: 0.4;
  font-size: 0.55rem; letter-spacing: 8px;
  display: block; width: 100%; text-align: center;
}

/* links inside content */
.blog-content a {
  color: var(--ochre);
  border-bottom: 1px solid rgba(200,134,58,0.3);
  transition: border-color 0.3s;
  text-decoration: none;
}
.blog-content a:hover { border-color: var(--ochre); }

/* ── SIDEBAR ── */
.blog-sidebar {
  padding-top: 72px;
  position: sticky; top: 90px;
}
.sidebar-toc {
  background: var(--tile);
  border: 1px solid rgba(200,169,110,0.12);
  border-top: 3px solid var(--ochre);
  padding: 28px;
  margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.sidebar-toc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,134,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-toc-title {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 1;
}
.sidebar-toc-title::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(200,169,110,0.15);
}
.sidebar-toc ol {
  list-style: none; counter-reset: toc;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; z-index: 1;
  padding: 0; margin: 0;
}
.sidebar-toc ol li { counter-increment: toc; }
.sidebar-toc ol li a {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(200,169,110,0.45); line-height: 1.4;
  display: flex; gap: 10px; align-items: flex-start;
  transition: color 0.25s, padding-left 0.25s;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200,169,110,0.08);
  text-decoration: none;
}
.sidebar-toc ol li:last-child a { border-bottom: none; }
.sidebar-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.62rem; font-weight: 600;
  color: var(--ochre); flex-shrink: 0; margin-top: 2px;
}
.sidebar-toc ol li a:hover { color: var(--gold-light); }
.sidebar-toc ol li a.active {
  color: var(--gold-light); font-weight: 500;
}

/* Sidebar guide promo */
.sidebar-guide {
  background: var(--tile);
  padding: 28px;
  text-align: center;
  position: relative; overflow: hidden;
}
.sidebar-guide::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,134,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-guide-inner { position: relative; z-index: 1; }
.sidebar-guide img {
  width: 100%; max-width: 160px;
  margin: 0 auto 20px; display: block;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.sidebar-guide-title {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 300;
  color: var(--sand); line-height: 1.3; margin-bottom: 10px;
}
.sidebar-guide-desc {
  font-size: 0.78rem; font-weight: 300;
  color: rgba(232,220,200,0.45);
  line-height: 1.65; margin-bottom: 22px;
}
.sidebar-guide-price {
  font-family: var(--serif);
  font-size: 1.4rem; color: var(--gold-light); margin-bottom: 16px;
}
.sidebar-guide-price span {
  font-size: 0.75rem; font-family: var(--sans);
  color: rgba(200,169,110,0.4); font-weight: 300;
}
.sidebar-guide-btn {
  display: block;
  background: var(--ochre); color: #fff !important;
  padding: 13px 20px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s; text-decoration: none;
}
.sidebar-guide-btn:hover { background: var(--ochre-deep); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .blog-layout {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .blog-sidebar { position: static; padding-top: 0; }
  .sidebar-toc { display: none; }
}
@media (max-width: 768px) {
  .blog-hero-inner { padding: 0 20px; }
  .blog-hero { padding-top: 100px; }
  .blog-hero-image img { height: 260px; }
  .blog-content { padding-top: 48px; }
  .blog-content p:first-of-type { font-size: 1rem; }
}
/* ── IMAGE BLOCKS ── */
.blog-content .blog-img {
  width: 100%; margin: 40px 0;
  position: relative;
}
.blog-content .blog-img img {
  width: 100%; height: 360px;
  object-fit: cover; display: block;
  filter: brightness(0.9);
  margin: 0;
}
.blog-content .blog-img-caption {
  font-size: 0.72rem; color: var(--smoke);
  font-style: italic; margin-top: 10px;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
}
.blog-content .blog-img-caption::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: var(--border-mid); flex-shrink: 0;
}
.blog-content .blog-img.half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.blog-content .blog-img.half img { height: 260px; }
.blog-content .blog-img.half .blog-img-caption {
  grid-column: 1 / -1;
}

/* ── TIP BOX ── */
.blog-tip {
  background: rgba(200,134,58,0.06);
  border: 1px solid rgba(200,134,58,0.2);
  border-left: 3px solid var(--ochre);
  padding: 22px 26px;
  margin: 32px 0;
}
.blog-tip-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 10px;
}
.blog-tip p { margin: 0 !important; font-size: 0.92rem !important; color: var(--tile) !important; border: none !important; padding: 0 !important; }

/* ── WARNING BOX ── */
.blog-warning {
  background: rgba(192,57,43,0.05);
  border: 1px solid rgba(192,57,43,0.2);
  border-left: 3px solid #c0392b;
  padding: 22px 26px;
  margin: 32px 0;
}
.blog-warning-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #c0392b; margin-bottom: 10px;
}
.blog-warning p { margin: 0 !important; font-size: 0.92rem !important; color: var(--tile) !important; border: none !important; padding: 0 !important; }
