/* ===========================================================
   HoneyFil — blog.css
   Blog listing + blog post styles (loaded after style.css)
   =========================================================== */

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: var(--gold-grad);
  width: 0%;
  z-index: 1001;
  transition: width .1s ease-out;
}

.breadcrumbs {
  font-size: 14.5px;
  padding: 22px 0 0;
  opacity: .7;
}
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }

/* Blog listing hero */
.blog-hero {
  padding: 60px 0 40px;
  text-align: center;
}
.blog-hero h1 { font-size: clamp(30px, 5vw, 46px); }
.blog-hero p { font-size: 19px; opacity: .85; max-width: 600px; margin: 0 auto; }

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 90px;
}

/* Post layout */
.post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 24px 90px;
}
.post-header { margin-bottom: 30px; }
.post-header .tag { color: var(--gold-deep); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.post-header h1 { font-size: clamp(28px, 5vw, 42px); margin: 12px 0 16px; }
.post-meta { font-size: 15px; opacity: .65; }
.post-hero-img {
  border-radius: var(--radius);
  width: 100%;
  margin: 26px 0 10px;
  box-shadow: var(--shadow-light);
}

.toc {
  background: var(--paper-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 30px 0 38px;
}
.toc h2 { font-size: 17px; margin-bottom: 12px; }
.toc ol { padding-left: 20px; margin: 0; list-style: decimal; }
.toc li { margin-bottom: 8px; font-size: 16px; }
.toc a:hover { color: var(--gold-deep); }

.post-body h2 {
  font-size: 27px;
  margin-top: 44px;
  margin-bottom: 16px;
  scroll-margin-top: 90px;
}
.post-body h3 {
  font-size: 21px;
  margin-top: 30px;
  margin-bottom: 12px;
  scroll-margin-top: 90px;
}
.post-body p { font-size: 18px; margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 22px 22px; }
.post-body li { font-size: 18px; margin-bottom: 10px; }
.post-body strong { font-weight: 700; }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-size: 19px;
  opacity: .9;
}

.post-cta {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  margin: 46px 0;
}
.post-cta img { max-width: 160px; margin: 0 auto 20px; }
.post-cta h3 { font-size: 24px; margin-bottom: 10px; color: #fff; }
.post-cta p { font-size: 17px; opacity: .82; margin-bottom: 22px; }

.post-faq { margin: 40px 0; }
.post-faq h2 { font-size: 24px; margin-bottom: 14px; }

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 46px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.post-nav a {
  font-size: 15px;
  font-weight: 600;
  max-width: 46%;
}
.post-nav .dir { display: block; opacity: .6; font-size: 13px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
.post-nav a:hover { color: var(--gold-deep); }
.post-nav .next { text-align: right; margin-left: auto; }

.post-related h2 { font-size: 24px; margin-bottom: 24px; }

.safety-mini {
  font-size: 14.5px;
  opacity: .7;
  background: var(--paper-soft);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 30px 0;
}

@media (max-width: 900px) {
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .blog-listing-grid { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; }
  .post-nav a { max-width: 100%; }
  .post-nav .next { text-align: left; }
}
