:root {
  --gold: #c89a3f;
  --gold-d: #7b5414;
  --brown: #2a1d0f;
  --green: #2f5f3a;
  --white: #ffffff;
  --bg: #fdf9f3;
  --bg-2: #f7f0e3;
  --text: #23180c;
  --muted: #6d6254;
  --border: rgba(123,84,20,0.12);
  --shadow: 0 12px 36px rgba(32,18,6,0.08);
  --shadow-md: 0 22px 54px rgba(32,18,6,0.12);
  --r: 20px;
  --r-lg: 28px;
  --ease: all 0.30s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--ease); }
ul { list-style: none; }

/* ===== SHARED ===== */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--gold-d);
  background: rgba(200,154,63,0.10); border: 1px solid rgba(200,154,63,0.20);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: linear-gradient(90deg,#1c1208,#5a3b12);
  border-bottom: 1px solid rgba(255,255,255,0.06); padding: 13px 0;
}
.bc-inner {
  width: min(calc(100% - 24px),1320px); margin-inline: auto;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.bc-inner a { font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 500; }
.bc-inner a:hover { color: #f1cf83; }
.bc-inner i { font-size: 10px; color: rgba(255,255,255,0.40); }
.bc-inner span { font-size: 13px; color: #f1cf83; font-weight: 600; }

/* ===== BLOG HERO ===== */
.blog-hero {
  padding: 80px 0 90px; text-align: center;
  background:
    radial-gradient(circle at top right,rgba(200,154,63,0.10),transparent 30%),
    linear-gradient(180deg,#fffdf8,var(--bg),#f4ece0);
}
.bh-container { width: min(calc(100% - 24px),860px); margin-inline: auto; }
.bh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 700;
  color: var(--gold-d); background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.20); margin-bottom: 18px;
}
.bh-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem,3.8vw,3.4rem);
  color: var(--brown); line-height: 1.15; margin-bottom: 16px;
}
.bh-title em {
  font-style: normal;
  background: linear-gradient(135deg,#c89a3f,#7b5414);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bh-desc { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ===== FILTER BAR ===== */
.blog-filter-section {
  position: sticky; top: 0; z-index: 800;
  background: rgba(253,249,243,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 22px rgba(32,18,6,0.06);
}
.bf-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; padding: 13px 0; }
.bf-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bf-search {
  display: flex; align-items: center; gap: 10px;
  flex: 0 0 220px; padding: 11px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px;
}
.bf-search i { color: var(--muted); font-size: 14px; flex-shrink: 0; }
.bf-search input { border: none; outline: none; background: transparent; font-size: 13px; color: var(--text); width: 100%; font-family: 'Inter',sans-serif; }
.bf-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.bftag {
  padding: 10px 16px; border-radius: 999px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 13px; font-weight: 700; color: var(--muted);
  cursor: pointer; transition: var(--ease); white-space: nowrap;
}
.bftag:hover { border-color: var(--gold); color: var(--gold-d); }
.bftag.active { background: linear-gradient(135deg,#d4a843,#8c6118); border-color: transparent; color: #fff; }

/* ===== FEATURED POST ===== */
.featured-post-section { padding: 48px 0 20px; }
.fp-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.featured-post-card {
  display: block; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  background: #fff; color: var(--text); transition: var(--ease);
}
.featured-post-card:hover { transform: translateY(-5px); box-shadow: 0 28px 64px rgba(32,18,6,0.14); color: var(--text); }
.fp-img-wrap { position: relative; height: 100%; min-height: 340px; overflow: hidden; }
.fp-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.featured-post-card:hover .fp-img-wrap img { transform: scale(1.04); }
.fp-badge {
  position: absolute; top: 18px; left: 18px;
  padding: 7px 14px; border-radius: 999px;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff; font-size: 12px; font-weight: 700;
}
.fp-content {
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.fp-cat {
  display: inline-flex; padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--gold-d); background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.18); margin-bottom: 14px;
}
.fp-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem,2.2vw,2rem);
  color: var(--brown); line-height: 1.25; margin-bottom: 14px;
}
.fp-excerpt { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.fp-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.fp-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.fp-meta i { color: var(--gold-d); }
.fp-read-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff; font-weight: 700; font-size: 14px; align-self: flex-start;
}

/* ===== BLOG GRID ===== */
.blog-grid-section { padding: 40px 0 80px; }
.bg-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.blog-posts-grid { display: flex; flex-direction: column; gap: 28px; padding-right: 24px; }

/* Blog Card */
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bc-img-wrap {
  display: block; position: relative; overflow: hidden;
  height: 260px;
}
.bc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .bc-img-wrap img { transform: scale(1.04); }
.bc-cat-tag {
  position: absolute; bottom: 16px; left: 16px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--gold-d);
  background: rgba(255,255,255,0.92); border: 1px solid rgba(123,84,20,0.12);
}
.bc-cat-product { color: #1a5ecc; }
.bc-cat-tips { color: var(--green); }
.bc-cat-ayurveda { color: #a45ef0; }
.bc-body { padding: 22px 24px 24px; }
.bc-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.bc-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.bc-meta i { color: var(--gold-d); font-size: 12px; }
.bc-title { font-family: 'Cinzel', serif; font-size: 1.18rem; line-height: 1.3; margin-bottom: 10px; }
.bc-title a { color: var(--brown); }
.bc-title a:hover { color: var(--gold-d); }
.bc-excerpt { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 18px; }
.bc-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.bc-author { display: flex; align-items: center; gap: 10px; }
.bc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#d4a843,#8c6118); color: #fff; font-weight: 700;
}
.bc-author span { font-size: 13px; font-weight: 600; color: var(--brown); }
.bc-read-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff; font-size: 13px; font-weight: 700;
}
.bc-read-btn:hover { color: #fff; transform: translateY(-1px); }

/* Pagination */
.blog-pagination {
  display: flex; align-items: center; gap: 8px;
  padding: 32px 24px 0 0; flex-wrap: wrap;
}
.pg-btn {
  min-width: 44px; height: 44px; padding: 0 14px;
  border-radius: 12px; border: 1.5px solid var(--border);
  background: #fff; font-weight: 700; font-size: 14px;
  color: var(--brown); cursor: pointer; transition: var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.pg-btn:hover, .pg-btn.active {
  background: linear-gradient(135deg,#d4a843,#8c6118);
  border-color: transparent; color: #fff;
}

/* No Results */
.no-results { text-align: center; padding: 60px 20px; color: var(--muted); }
.no-results i { font-size: 48px; color: rgba(123,84,20,0.18); margin-bottom: 14px; display: block; }
.no-results h3 { font-family: 'Cinzel',serif; color: var(--brown); margin-bottom: 8px; }

/* ===== SIDEBAR ===== */
.blog-sidebar { padding-left: 10px; }
.sticky-sidebar { position: sticky; top: 76px; }
.sidebar-widget {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 22px;
  box-shadow: var(--shadow); margin-bottom: 22px;
}
.sw-title {
  font-family: 'Cinzel', serif; font-size: 1.08rem;
  color: var(--brown); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid rgba(200,154,63,0.16);
}
.sw-search { display: flex; gap: 0; }
.sw-search input {
  flex: 1; padding: 12px 14px;
  border: 1px solid var(--border); border-right: 0;
  border-radius: 12px 0 0 12px; outline: none;
  font-size: 14px; font-family: 'Inter',sans-serif; color: var(--text);
}
.sw-search button {
  padding: 12px 16px; border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff; border: none; cursor: pointer; font-size: 14px;
}
.sw-cats { display: flex; flex-direction: column; gap: 6px; }
.sw-cats a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 12px;
  color: var(--brown); font-weight: 600; font-size: 14px;
  background: rgba(200,154,63,0.04); border: 1px solid transparent;
}
.sw-cats a:hover { background: rgba(200,154,63,0.10); border-color: rgba(200,154,63,0.18); color: var(--gold-d); }
.sw-cats i { color: var(--gold-d); width: 18px; text-align: center; margin-right: 8px; }
.sw-cats span { font-size: 12px; padding: 3px 9px; border-radius: 999px; background: rgba(200,154,63,0.12); color: var(--gold-d); font-weight: 700; }
.sw-popular { display: flex; flex-direction: column; gap: 14px; }
.sp-item { display: flex; align-items: flex-start; gap: 12px; color: var(--text); }
.sp-item img { width: 68px; height: 68px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.sp-item:hover .sp-title { color: var(--gold-d); }
.sp-title { display: block; font-size: 13.5px; font-weight: 600; color: var(--brown); line-height: 1.4; margin-bottom: 4px; transition: var(--ease); }
.sp-date { font-size: 12px; color: var(--muted); }
.sw-product-cta { padding: 0; overflow: hidden; }
.sw-product-cta img { width: 100%; height: 180px; object-fit: cover; }
.sw-cta-body { padding: 18px 18px 20px; }
.sw-cta-body h4 { font-family: 'Cinzel',serif; font-size: 1.05rem; color: var(--brown); margin-bottom: 6px; }
.sw-cta-body p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.sw-cta-btn {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  padding: 12px 16px; border-radius: 12px; margin-bottom: 8px;
  background: linear-gradient(135deg,#28c760,#15944a);
  color: #fff; font-weight: 700; font-size: 13px;
}
.sw-cta-btn:hover { color: #fff; transform: translateY(-1px); }
.sw-view-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 11px 16px; border-radius: 12px;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff; font-weight: 700; font-size: 13px;
}
.sw-view-btn:hover { color: #fff; transform: translateY(-1px); }
.sw-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sw-tags a {
  padding: 8px 14px; border-radius: 999px;
  background: rgba(200,154,63,0.08);
  border: 1px solid rgba(200,154,63,0.16);
  color: var(--gold-d); font-size: 13px; font-weight: 600;
}
.sw-tags a:hover { background: linear-gradient(135deg,#d4a843,#8c6118); color: #fff; border-color: transparent; }

/* ===========================
   SINGLE BLOG PAGE
=========================== */
.single-blog-section { padding: 56px 0 80px; }
.sb-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }

/* Article */
.single-article {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 44px 42px;
  box-shadow: var(--shadow); margin-bottom: 30px;
}
.sa-top-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 16px; }
.sa-cat {
  padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  color: var(--gold-d); background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.18);
}
.sa-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.sa-meta-item i { color: var(--gold-d); }
.sa-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem,2.8vw,2.8rem);
  color: var(--brown); line-height: 1.2; margin-bottom: 20px;
}
.sa-author-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.sa-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff; font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.sa-author-info { flex: 1; }
.sa-author-info strong { display: block; font-size: 14px; color: var(--brown); }
.sa-author-info span { font-size: 12px; color: var(--muted); }
.sa-share { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.sa-share span { font-size: 13px; color: var(--muted); font-weight: 600; }
.sa-share-btn {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; transition: var(--ease);
}
.sa-fb { background: #1877f2; }
.sa-wa { background: linear-gradient(135deg,#28c760,#15944a); }
.sa-tw { background: #000; }
.sa-share-btn:hover { transform: translateY(-2px); color: #fff; opacity: 0.90; }
.sa-featured-img {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); margin-bottom: 28px;
}
.sa-featured-img img { width: 100%; max-height: 500px; object-fit: cover; }
.sa-img-caption { display: block; text-align: center; font-size: 13px; font-style: italic; color: var(--muted); padding: 10px 14px; }

/* Article Content */
.sa-content { font-size: 16px; line-height: 1.80; color: var(--text); }
.sa-content h2 { font-family: 'Cinzel',serif; font-size: clamp(1.4rem,2vw,1.9rem); color: var(--brown); margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 2px solid rgba(200,154,63,0.14); }
.sa-content p { margin-bottom: 18px; color: var(--text); }
.sa-intro { font-size: 17px; color: var(--text); line-height: 1.8; font-weight: 500; margin-bottom: 28px; }
.sa-content em { color: var(--gold-d); font-style: italic; }
.sa-content strong { color: var(--brown); font-weight: 700; }

/* Highlight Box */
.sa-highlight-box {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 22px; border-radius: 16px; margin: 24px 0;
  background: linear-gradient(135deg,rgba(200,154,63,0.10),rgba(200,154,63,0.04));
  border: 1px solid rgba(200,154,63,0.22);
}
.shb-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#d4a843,#8c6118); color: #fff; font-size: 18px;
}
.sa-highlight-box strong { display: block; color: var(--brown); margin-bottom: 6px; }
.sa-highlight-box p { color: var(--muted); margin: 0; font-size: 15px; }

/* Warning Box */
.sa-warning-box {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border-radius: 16px; margin: 24px 0;
  background: #fff8ec; border: 1px solid rgba(220,150,40,0.22);
}
.sa-warning-box i { color: #c47f10; font-size: 20px; margin-top: 3px; flex-shrink: 0; }
.sa-warning-box strong { display: block; color: var(--brown); margin-bottom: 6px; }
.sa-warning-box p { color: var(--muted); margin: 0; font-size: 14px; }

/* Benefits Grid */
.sa-benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 28px; }
.sa-benefit-item {
  display: flex; gap: 14px; padding: 20px;
  background: linear-gradient(180deg,rgba(255,255,255,0.97),rgba(248,243,234,0.97));
  border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 6px 18px rgba(32,18,6,0.06);
}
.sbi-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold-d);
  background: rgba(200,154,63,0.12); border: 1px solid rgba(200,154,63,0.18);
}
.sa-benefit-item h3 { font-family: 'Cinzel',serif; font-size: 0.98rem; color: var(--brown); margin-bottom: 6px; }
.sa-benefit-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Inline Image */
.sa-inline-img { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); margin: 26px 0; }
.sa-inline-img img { width: 100%; object-fit: cover; }

/* Tips List */
.sa-tips-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 22px; }
.sa-tips-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.sa-tips-list i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* Tags */
.sa-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 24px; border-top: 1px solid var(--border); margin-top: 28px; }
.sa-tags-label { font-weight: 700; color: var(--brown); font-size: 14px; }
.sa-tags a {
  padding: 7px 14px; border-radius: 999px;
  background: rgba(200,154,63,0.08); border: 1px solid rgba(200,154,63,0.16);
  color: var(--gold-d); font-size: 13px; font-weight: 600;
}
.sa-tags a:hover { background: linear-gradient(135deg,#d4a843,#8c6118); color: #fff; border-color: transparent; }

/* Share Bottom */
.sa-share-bottom {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  margin-top: 22px; padding: 20px; border-radius: 16px;
  background: rgba(200,154,63,0.06); border: 1px solid rgba(200,154,63,0.14);
}
.sa-share-bottom span { font-weight: 700; color: var(--brown); }
.sa-share-btns { display: flex; gap: 10px; }
.ssb-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; color: #fff;
}
.ssb-btn:hover { color: #fff; transform: translateY(-2px); }
.ssb-fb { background: #1877f2; }
.ssb-wa { background: linear-gradient(135deg,#28c760,#15944a); }
.ssb-tw { background: #000; }

/* Author Bio */
.sa-author-bio {
  display: flex; gap: 18px; padding: 24px;
  border-radius: 18px; margin-top: 24px;
  background: linear-gradient(180deg,rgba(255,255,255,0.98),rgba(248,243,234,0.98));
  border: 1px solid var(--border);
}
.sab-avatar {
  width: 64px; height: 64px; min-width: 64px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#d4a843,#8c6118); color: #fff;
  font-weight: 700; font-size: 24px;
}
.sab-info strong { display: block; color: var(--brown); font-size: 15px; margin-bottom: 3px; }
.sab-info span { display: block; font-size: 13px; color: var(--gold-d); font-weight: 600; margin-bottom: 8px; }
.sab-info p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Related Posts */
.related-posts-section { padding-top: 10px; }
.rp-title { font-family: 'Cinzel',serif; font-size: 1.6rem; color: var(--brown); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 2px solid rgba(200,154,63,0.16); }
.rp-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: var(--ease); color: var(--text); }
.rp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--text); }
.rp-img { overflow: hidden; }
.rp-img img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s ease; }
.rp-card:hover .rp-img img { transform: scale(1.05); }
.rp-body { padding: 16px; }
.rp-cat { display: inline-block; padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; color: var(--gold-d); background: rgba(200,154,63,0.10); border: 1px solid rgba(200,154,63,0.18); margin-bottom: 8px; }
.rp-body h3 { font-family: 'Cinzel',serif; font-size: 0.94rem; color: var(--brown); margin-bottom: 6px; line-height: 1.3; }
.rp-date { font-size: 12px; color: var(--muted); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1199.98px) {
  .blog-posts-grid { padding-right: 12px; }
  .blog-sidebar { padding-left: 4px; }
}
@media (max-width: 991.98px) {
  .blog-hero { padding: 56px 0 68px; }
  .blog-posts-grid { padding-right: 0; }
  .blog-sidebar { padding-left: 0; margin-top: 32px; }
  .sticky-sidebar { position: static; }
  .fp-img-wrap { min-height: 260px; height: 260px; }
  .fp-content { padding: 28px 24px; }
  .single-article { padding: 30px 24px; }
  .sa-benefit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
  .blog-hero { padding: 48px 0 58px; }
  .bh-title { font-size: 2rem; }
  .bf-inner { flex-direction: column; align-items: stretch; }
  .bf-search { flex: unset; }
  .bc-img-wrap { height: 220px; }
  .sa-author-row { flex-wrap: wrap; }
  .sa-share { margin-left: 0; }
  .sa-benefit-grid { grid-template-columns: 1fr; }
  .sa-share-bottom { flex-direction: column; gap: 10px; }
}
@media (max-width: 575.98px) {
  .single-article { padding: 22px 16px; }
  .sa-title { font-size: 1.6rem; }
  .sa-content h2 { font-size: 1.3rem; }
  .bc-img-wrap { height: 190px; }
  .rp-img img { height: 150px; }
  .fp-img-wrap { min-height: 200px; height: 200px; }
}
