﻿/* =============================================
   BLOG POST PAGES – shared styles
   ============================================= */

/* ---- Hero ---- */
.bp-hero {
  width: 100%;
  height: 52vh;
  min-height: 320px;
  max-height: 520px;
  position: relative;
  overflow: hidden;
  background: #2a2018;
  margin-top: 90px;
}
.bp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.82;
}
.bp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,14,10,0.15) 0%, rgba(20,14,10,0.55) 100%);
}
.bp-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a2e26 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-hero-placeholder svg { opacity: 0.18; }

/* ---- Article wrapper ---- */
.bp-article {
  background: #FAF7F2;
  padding: 0 20px 80px;
}
.bp-article-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ---- Meta block ---- */
.bp-meta {
  padding: 48px 0 32px;
  border-bottom: 1px solid #E0D8CE;
  margin-bottom: 40px;
}
.bp-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B7355;
  margin-bottom: 14px;
}
.bp-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 16px;
}
.bp-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #8B7355;
  letter-spacing: 0.06em;
}
.bp-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: #C4B5A5;
  margin: 20px 0 0;
}

/* ---- Body content ---- */
.bp-content {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #3a3330;
  line-height: 1.9;
}
.bp-content p {
  margin-bottom: 22px;
}
.bp-content h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 36px 0 14px;
  line-height: 1.35;
}
.bp-content h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 28px 0 10px;
}
.bp-content ul,
.bp-content ol {
  padding-left: 22px;
  margin-bottom: 22px;
}
.bp-content li {
  margin-bottom: 8px;
}
.bp-content strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* ---- CTA strip ---- */
.bp-cta {
  background: #3a2e26;
  text-align: center;
  padding: 60px 20px;
}
.bp-cta h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.bp-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 26px;
}
.bp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.bp-cta-btns a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 26px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.bp-cta-btns a::after { display: none !important; }
.bp-btn-light { background: #fff; color: #3a2e26; border: 1px solid #fff; }
.bp-btn-light:hover { background: #F2EDE6; }
.bp-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.bp-btn-ghost:hover { border-color: #fff; }

/* ---- Back link ---- */
.bp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B7355;
  text-decoration: none;
  margin-bottom: 32px;
  padding-top: 32px;
  display: flex;
  transition: color 0.2s;
}
.bp-back:hover { color: #3a2e26; }
.bp-back::after { display: none !important; }

@media (max-width: 768px) {
  .bp-hero { margin-top: 63px; }
}
@media (max-width: 640px) {
  .bp-hero { height: 38vh; min-height: 220px; }
  .bp-meta { padding: 32px 0 24px; }
}
