/* ==========================================================================
   Blog Detail Page Hero Styles (Added for blog-1.php)
   ========================================================================== */

.blog-hero-section {
  position: relative;
  background-color: #fef9ef;
  /* Warm cream background */
  /* padding-top: clamp(100px, 12vw, 150px); */
  padding-top: clamp(0px, 0vw, 0px);
  /* Account for fixed header */
  padding-bottom: clamp(40px, 6vw, 80px);
  font-family: var(--font-body);
}

.blog-hero-section .container {
  /* max-width: 1600px;
  width: min(1600px, 92vw);
  margin: 0 auto; */
}

/* Reading Progress Bar */
.blog-progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 3vw, 40px);
  margin-bottom: clamp(25px, 4vw, 50px) !important;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid rgba(220, 200, 170, 0.3);
  padding-bottom: 20px;
  max-width: 1260px;
  margin: 0 auto;
}

.blog-progress-label {
  flex-shrink: 0;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.blog-progress-bar-wrap {
  flex-grow: 1;
  height: 6px;
  background-color: #f2e8dc;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.blog-progress-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: var(--xd-gold);
  /* #ce9b3c */
  border-radius: 10px;
  transition: width 0.1s ease-out;
}

.blog-progress-percentage {
  flex-shrink: 0;
  min-width: 40px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Breadcrumbs */
.blog-breadcrumbs {
  margin-bottom: clamp(20px, 3vw, 35px);
}

.blog-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}

.blog-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-breadcrumbs a:hover {
  color: var(--xd-gold);
}

.blog-breadcrumbs .separator {
  color: var(--line);
  font-size: 12px;
  user-select: none;
}

.blog-breadcrumbs li:last-child span {
  color: var(--muted);
  opacity: 0.8;
}

/* Two-column layout */
.blog-hero-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

/* Left Content Column */
.blog-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-category-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--xd-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: clamp(12px, 2vw, 20px);
}

.blog-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  color: var(--xd-ink);
  margin: 0 0 clamp(20px, 3vw, 30px);
  font-weight: 400;
}

.blog-title span.accent-text {
  color: var(--xd-gold);
}

/* Decorative Divider */
.blog-divider {
  display: flex;
  align-items: center;
  width: 100%;
  /* max-width: 480px; */
  margin-bottom: clamp(20px, 3vw, 30px);
  color: var(--xd-gold);
  gap: 15px;
}

.blog-divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--line);
  opacity: 0.6;
}

.blog-divider-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Blog Meta information */
.blog-meta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: 0;
  margin: 0 0 clamp(25px, 4vw, 40px);
  list-style: none;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--muted);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--xd-gold);
  flex-shrink: 0;
}

.blog-meta-separator {
  color: var(--line);
  user-select: none;
}

/* Social Share buttons */
.blog-share-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-share-title {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.blog-share-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff9f0;
  border: 1px solid var(--line);
  color: var(--xd-ink);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-share-btn:hover {
  background-color: var(--xd-gold);
  border-color: var(--xd-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.blog-share-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Right Media Column */
.blog-hero-media {
  width: 100%;
}

.blog-featured-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(88, 62, 43, 0.12);
  line-height: 0;
}

.blog-featured-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive Layout adjust */
@media (max-width: 991px) {
  .blog-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-hero-media {
    order: -1;
    /* Display image at the top on mobile/tablet */
    max-width: 680px;
    margin: 0 auto;
  }

  .blog-hero-content {
    align-items: center;
    text-align: center;
  }

  .blog-breadcrumbs ol {
    justify-content: center;
  }

  .blog-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .blog-meta-list {
    justify-content: center;
  }

  .blog-share-wrapper {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   Blog Article Body + Sidebar (blog-1.php — Article content section)
   ========================================================================== */

/* ── Outer section ──────────────────────────────────────────────── */
.blog-article-section {
  /* padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); */
  padding: clamp(40px, 6vw, 80px) 0 clamp(0px, 0vw, 0px);
  background-color: #fef9ef;
  border-top: 1px solid #f4eada;
}

/* ── Two-column grid ─────────────────────────────────────────────── */
.blog-article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

/* ── Main column ─────────────────────────────────────────────────── */
.blog-article-main {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}

/* ── Shared section wrapper ──────────────────────────────────────── */
.blog-content-section {
  /* individual sections sit inside this */
}

/* ── Section headings ────────────────────────────────────────────── */
.blog-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  color: var(--xd-ink);
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.2;
}

/* ── Body paragraphs ─────────────────────────────────────────────── */
.blog-body-para {
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  color: rgba(47, 36, 25, 0.82);
  margin: 0 0 14px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.01em;
}

.blog-body-para:last-child {
  margin-bottom: 0;
}

/* highlighted call-out sentence */
.blog-highlight-sentence {
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--xd-ink);
  margin: 0;
}

/* ── Decorative divider (reused from hero) ───────────────────────── */
.blog-divider-sm {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 0;
  color: var(--xd-gold);
}

.blog-divider-sm .blog-divider-line {
  flex-grow: 1;
  height: 1px;
  background: var(--line);
  opacity: .6;
}

.blog-divider-sm .blog-divider-monogram {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Benefits cards (4-col grid) ─────────────────────────────────── */
.blog-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid #EFD4A270;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 22px;
  background: transparent radial-gradient(closest-side at 44% 59%, #FFFFFF 0%, #FFEFD2 170%) 0% 0% no-repeat padding-box;
}

.blog-benefit-card {
  padding: clamp(18px, 3vw, 28px) clamp(12px, 2vw, 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid #EFD4A270;
}

.blog-benefit-card:last-child {
  border-right: none;
}

.blog-benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(206, 155, 60, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--xd-gold);
  flex-shrink: 0;
}

.blog-benefit-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.blog-benefit-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--xd-ink);
  font-weight: 500;
}

/* ── Mistakes layout ─────────────────────────────────────────────── */
.blog-mistakes-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.blog-mistakes-img-wrap {
  width: clamp(150px, 20vw, 220px);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(88, 62, 43, .12);
}

.blog-mistakes-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  color: rgba(47, 36, 25, 0.82);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01em;
}

.blog-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--xd-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.blog-check-icon svg {
  width: 12px;
  height: 12px;
}

/* ── Quote block ─────────────────────────────────────────────────── */
.blog-quote-block {
  background: #fff;
  background: radial-gradient(ellipse 40% 30% at 30% 0%, #ebc767 -110%, #342913 90%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 44px);
  margin: 0;
  position: relative;
}

.blog-quote-icon-lg {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 272px;
  line-height: 0.2;
  color: var(--xd-gold);
  display: block;
  margin-bottom: 16px;
  user-select: none;
}

.blog-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  color: #ffffff;
  margin: -50px 0 18px;
  font-weight: 400;
}

.blog-quote-attribution {
  font-size: 14px;
  color: #efdda9;
  font-style: italic;
}

/* ── Process timeline ────────────────────────────────────────────── */
.blog-process-wrapper {
  margin-top: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.blog-process-timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  min-width: 480px;
}

/* connecting line behind steps */
.blog-process-timeline::before {
  content: '';
  position: absolute;
  top: 47px;
  left: calc(10% + 0px);
  right: calc(10% + 0px);
  height: 2px;
  background: linear-gradient(90deg, var(--xd-gold) 0%, #e8d4a8 100%);
  z-index: 0;
}

.blog-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.blog-process-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--xd-gold);
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.blog-process-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--xd-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 16px rgba(206, 155, 60, .35);
}

.blog-process-icon-circle svg {
  width: 20px;
  height: 20px;
}

.blog-process-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--xd-ink);
  margin-bottom: 5px;
}

.blog-process-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 80%;
  margin: 0 auto;
}

/* ── Stats bar ───────────────────────────────────────────────────── */
.blog-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  border: 1px solid #CE9B3C26;
  border-radius: 16px;
  background: transparent linear-gradient(360deg, #FFFBF3 0%, #FFEFD2 100%) 0% 0% no-repeat padding-box;
  overflow: hidden;
}

.blog-stat-cell {
  padding: clamp(22px, 3vw, 36px) 20px;
  border-right: 1px solid #CE9B3C26;
}

.blog-stat-cell:last-child {
  border-right: none;
}

.blog-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--xd-gold);
  line-height: 1;
  margin-bottom: 0px;
}

.blog-stat-label {
  font-size: 16px;
  color: rgba(47, 36, 25, 0.82);
  font-weight: 600;
}

/* ── CTA Banner ──────────────────────────────────────────────────── */
.blog-cta-banner {
  background: #27200f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 160px;
}

.blog-cta-books {
  flex-shrink: 0;
  max-height: 190px;
  object-fit: cover;
  display: block;
}

.blog-cta-books--left {
  margin-left: -10px;
}

.blog-cta-books--right {
  margin-right: -10px;
}

.blog-cta-inner {
  flex-grow: 1;
  text-align: center;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 2vw, 24px);
}

.blog-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1.25;
}

.blog-cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 20px;
  line-height: 1.6;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--xd-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .28s ease, transform .28s ease;
  border: none;
  cursor: pointer;
}

.blog-cta-btn:hover {
  background: #b8892a;
  transform: translateY(-2px);
}

/* ── Author card ─────────────────────────────────────────────────── */
.blog-author-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.blog-author-avatar-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(206, 155, 60, .25);
}

.blog-author-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-info {
  flex-grow: 1;
}

.blog-author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--xd-ink);
  font-weight: 400;
  margin: 0 0 8px;
}

.blog-author-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 14px;
}

.blog-author-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--xd-ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 18px;
  transition: all .25s ease;
}

.blog-author-btn:hover {
  border-color: var(--xd-gold);
  color: var(--xd-gold);
}

.blog-author-btn svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   RIGHT SIDEBAR
   ========================================================================== */
.blog-article-sidebar {
  height: 100%;
}

.blog-sidebar-sticky {
  position: sticky;
  top: 180px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* shared card shell */
.blog-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.blog-sidebar-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--xd-ink);
  font-weight: 400;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-sidebar-card-title svg {
  width: 20px;
  height: 20px;
  color: var(--xd-gold);
  flex-shrink: 0;
}

/* ── Table of Contents ───────────────────────────────────────────── */
.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-toc-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  text-decoration: none;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px solid rgba(220, 200, 170, .28);
  transition: color .2s ease;
}

.blog-toc-item:last-child a {
  border-bottom: none;
}

.blog-toc-item a:hover,
.blog-toc-item a.toc-active {
  color: var(--xd-gold);
}

.blog-toc-item a.toc-active .blog-toc-dot {
  background: var(--xd-gold);
}

.blog-toc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0cfb0;
  flex-shrink: 0;
  transition: background .2s ease;
}

.blog-toc-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--xd-gold);
  min-width: 22px;
}

/* ── Sidebar Share ───────────────────────────────────────────────── */
.blog-sidebar-share-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* reuse .blog-share-btn from hero section */

/* ── Related Articles ────────────────────────────────────────────── */
.blog-related-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
}

.blog-related-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(220, 200, 170, .28);
}

.blog-related-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-related-thumb {
  width: 78px;
  height: 66px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-related-category {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--xd-gold);
  margin-bottom: 4px;
}

.blog-related-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--xd-ink);
  line-height: 1.4;
  margin-bottom: 7px;
}

.blog-related-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s ease;
}

.blog-related-link:hover {
  color: var(--xd-gold);
}

.blog-related-link svg {
  width: 12px;
  height: 12px;
}

/* ── Sidebar CTA ─────────────────────────────────────────────────── */
.blog-sidebar-cta-card {
  background: #27200f;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.blog-sidebar-cta-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.blog-sidebar-cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}

.blog-sidebar-cta-deco {
  position: absolute;
  bottom: 50px;
  right: 14px;
  width: 80px;
  opacity: .55;
  pointer-events: none;
}

.blog-sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--xd-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
  position: relative;
  z-index: 1;
}

.blog-sidebar-cta-btn:hover {
  background: #b8892a;
  transform: translateY(-2px);
}

.blog-sidebar-cta-btn svg {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .blog-article-grid {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 991px) {
  .blog-article-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-sticky {
    position: static;
  }

  .blog-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-benefit-card:nth-child(2) {
    border-right: none;
  }

  .blog-benefit-card:nth-child(1),
  .blog-benefit-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .blog-cta-books {
    display: none;
  }

  .blog-author-card {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .blog-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-mistakes-layout {
    grid-template-columns: 1fr;
  }

  .blog-mistakes-img-wrap {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .blog-stats-bar {
    grid-template-columns: 1fr;
  }

  .blog-stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .blog-stat-cell:last-child {
    border-bottom: none;
  }

  .blog-process-timeline::before {
    display: none;
  }

  .blog-process-wrapper {
    overflow: visible;
  }

  .blog-process-timeline {
    flex-direction: column;
    min-width: unset;
    gap: 0;
  }

  .blog-process-step {
    flex-direction: row;
    text-align: left;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(220, 200, 170, .3);
  }

  .blog-process-step:last-child {
    border-bottom: none;
  }

  .blog-process-icon-circle {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin: 0;
  }

  .blog-process-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}

.blog-progress-section {
  padding: 100px 0 0;
  position: sticky;
  top: 0px;
  z-index: 9;
  background: #fef9ef;
}