.blog-page { padding-top: 72px; }

.blog-hero {
  background: #fff;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.blog-hero::after {
  content: '';
  position: absolute; top: -100px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.08), transparent 70%);
  pointer-events: none;
}
.blog-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: end;
  padding-bottom: 0;
}
.blog-hero-left {}
.blog-hero-right { align-self: end; }

.blog-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-4);
  margin-bottom: 18px;
}
.blog-breadcrumb a { color: var(--text-4); text-decoration: none; transition: color .2s; }
.blog-breadcrumb a:hover { color: var(--indigo-deep); }
.blog-breadcrumb span { color: var(--indigo-deep); }
.blog-breadcrumb-sep { color: var(--border-2); }

.blog-hero-h {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 18px;
}
.blog-hero-h strong { font-weight: 700; display: block; }
.blog-hero-h em {
  font-style: italic;
  background: linear-gradient(120deg, var(--indigo-deep), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero-sub {
  font-size: .97rem; color: var(--text-3);
  line-height: 1.8; max-width: 480px;
  margin-bottom: 36px;
}
.blog-hero-meta {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.blog-hero-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 600; color: var(--text-3);
}
.blog-hero-meta-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--border-2);
}

.blog-featured-peek {
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: 1.5px solid var(--border);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -4px 32px rgba(10,15,30,.07);
  position: relative;
}
.bfp-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--indigo-deep); color: #fff;
  padding: 4px 10px; border-radius: 100px;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
}
.bfp-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 40%, #fff7ed 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.bfp-img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(249,115,22,.1), transparent 60%);
}
.bfp-body { padding: 20px 22px 24px; }
.bfp-cat {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 100px;
  background: var(--indigo-dim); color: var(--indigo-deep);
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 10px;
}
.bfp-title {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 600;
  color: var(--text); line-height: 1.3; margin-bottom: 8px;
}
.bfp-desc { font-size: .79rem; color: var(--text-3); line-height: 1.65; margin-bottom: 14px; }
.bfp-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.bfp-author { display: flex; align-items: center; gap: 8px; }
.bfp-av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
}
.bfp-author-name { font-size: .75rem; font-weight: 600; color: var(--text-2); }
.bfp-date { font-size: .7rem; color: var(--text-4); }
.bfp-read {
  font-size: .72rem; font-weight: 700; color: var(--indigo-deep);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  transition: gap .2s var(--ease);
}
.bfp-read:hover { gap: 8px; }

.blog-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 80;
  box-shadow: 0 2px 12px rgba(10,15,30,.04);
}
.blog-filter-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; padding: 0;
}
.blog-cats {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none; flex: 1;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.blog-cats::-webkit-scrollbar { display: none; }
.blog-cats.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}
.blog-cat {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 14px;
  font-size: .76rem; font-weight: 600; color: var(--text-3);
  white-space: nowrap;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: var(--font-b);
  cursor: pointer;
  transition: all .22s var(--ease);
}
.blog-cat:hover { color: var(--indigo-deep); background: var(--indigo-pale); }
.blog-cat.active {
  color: var(--indigo-deep);
  border-bottom-color: var(--indigo-deep);
  font-weight: 700;
}
.blog-cat-count {
  background: var(--bg-2); color: var(--text-4);
  padding: 1px 6px; border-radius: 100px;
  font-size: .6rem; font-weight: 700;
}
.blog-cat.active .blog-cat-count {
  background: var(--indigo-dim); color: var(--indigo-deep);
}

.blog-search-wrap { flex-shrink: 0; padding: 10px 0; }
.blog-search {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--bg);
  transition: all .25s var(--ease);
}
.blog-search:focus-within {
  border-color: var(--indigo); background: #fff;
  box-shadow: 0 0 0 3px var(--indigo-dim);
}
.blog-search input {
  border: none; background: transparent; outline: none;
  font-family: var(--font-b); font-size: .8rem; color: var(--text); width: 180px;
}
.blog-search input::placeholder { color: var(--text-4); }
.blog-search-icon { font-size: .85rem; color: var(--text-4); flex-shrink: 0; }
.blog-search-clear {
  background: none; border: none; cursor: pointer;
  font-size: .75rem; color: var(--text-4); padding: 0;
  display: none; transition: color .2s;
  line-height: 1;
}
.blog-search-clear:hover { color: var(--indigo-deep); }
.blog-search-clear.visible { display: block; }
.blog-card-link { display: contents; }
.blog-main {
  padding: 56px 0 50px;
  background: var(--bg);
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: start;
}
.blog-content-col {}

.blog-featured-wrap { margin-bottom: 44px; }

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: all .35s var(--ease);
  min-height: 300px;
}
.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo);
}

.bfc-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.bfc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .6s var(--ease);
}
.blog-featured-card:hover .bfc-img-wrap img { transform: scale(1.05); }
.bfc-img-placeholder {
  width: 100%; height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 50%, #fff7ed 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative;
}
.bfc-img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 60% 40%, rgba(59,130,246,.12), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(249,115,22,.09), transparent 50%);
}
.bfc-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--indigo-deep); color: #fff;
  padding: 5px 12px; border-radius: 100px;
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(234,88,12,.4);
}

.bfc-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.bfc-cat {
  display: inline-flex;
  padding: 4px 12px; border-radius: 100px;
  background: var(--teal-dim); color: var(--teal-deep);
  font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 14px; width: fit-content;
  text-decoration: none;
}
.bfc-title {
  font-family: var(--font-h); font-size: 1.45rem; font-weight: 600;
  color: var(--text); line-height: 1.25; margin-bottom: 12px;
  transition: color .2s;
}
.blog-featured-card:hover .bfc-title { color: var(--indigo-deep); }
.bfc-desc {
  font-size: .87rem; color: var(--text-3); line-height: 1.75; margin-bottom: 22px;
}
.bfc-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: .75rem; color: var(--text-4);
  padding-top: 16px; border-top: 1px solid var(--border);
}
.bfc-author-av {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
}
.bfc-author-name { font-weight: 600; color: var(--text-2); }
.bfc-sep { color: var(--border-2); }
.bfc-read-btn {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 16px; border-radius: 100px;
  background: var(--indigo-dim); color: var(--indigo-deep);
  font-size: .74rem; font-weight: 700;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.blog-featured-card:hover .bfc-read-btn {
  background: var(--indigo-deep); color: #fff;
}

.blog-section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.blog-section-label h3 {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
  color: var(--text); white-space: nowrap;
}
.blog-section-label-line { flex: 1; height: 1px; background: var(--border); }
.blog-section-label-count {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-4); white-space: nowrap;
}

.blog-no-results {
  display: none;
  text-align: center; padding: 56px 20px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); margin-bottom: 24px;
}
.blog-no-results.show { display: block; }
.blog-no-results-icon { font-size: 2.5rem; margin-bottom: 12px; }
.blog-no-results-title {
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.blog-no-results-sub { font-size: .84rem; color: var(--text-4); }

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: cardIn .5s var(--ease) forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: none; }
}
.blog-card:nth-child(1)  { animation-delay: .05s; }
.blog-card:nth-child(2)  { animation-delay: .10s; }
.blog-card:nth-child(3)  { animation-delay: .15s; }
.blog-card:nth-child(4)  { animation-delay: .20s; }
.blog-card:nth-child(5)  { animation-delay: .25s; }
.blog-card:nth-child(6)  { animation-delay: .30s; }
.blog-card:nth-child(7)  { animation-delay: .35s; }
.blog-card:nth-child(8)  { animation-delay: .40s; }

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo);
}

.bc-img-wrap {
  position: relative; overflow: hidden;
  height: 195px; flex-shrink: 0;
}
.bc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease); display: block;
}
.blog-card:hover .bc-img-wrap img { transform: scale(1.06); }

.bc-img-placeholder {
  width: 100%; height: 195px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; flex-shrink: 0; position: relative;
}
.bc-img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(59,130,246,.09), transparent 60%);
}

.bcbg-1 { background: linear-gradient(135deg,#e8f0fe,#dbeafe); }
.bcbg-2 { background: linear-gradient(135deg,#fff7ed,#fed7aa); }
.bcbg-3 { background: linear-gradient(135deg,#d1fae5,#a7f3d0); }
.bcbg-4 { background: linear-gradient(135deg,#fce7f3,#fbcfe8); }
.bcbg-5 { background: linear-gradient(135deg,#ede9fe,#ddd6fe); }
.bcbg-6 { background: linear-gradient(135deg,#fef9c3,#fef08a); }
.bcbg-7 { background: linear-gradient(135deg,#cffafe,#a5f3fc); }
.bcbg-8 { background: linear-gradient(135deg,#f0fdf4,#bbf7d0); }

.bc-bar { height: 3px; flex-shrink: 0; }
.bc-bar-1 { background: linear-gradient(90deg,var(--teal-deep),var(--teal)); }
.bc-bar-2 { background: linear-gradient(90deg,var(--indigo-deep),var(--indigo)); }
.bc-bar-3 { background: linear-gradient(90deg,#059669,#34d399); }
.bc-bar-4 { background: linear-gradient(90deg,#9d174d,#ec4899); }
.bc-bar-5 { background: linear-gradient(90deg,#5b21b6,#8b5cf6); }
.bc-bar-6 { background: linear-gradient(90deg,#d97706,var(--rose)); }

.bc-body {
  padding: 18px 20px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.bc-cat {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 100px;
  font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 9px; width: fit-content;
}
.bc-cat-t { background: var(--teal-dim);    color: var(--teal-deep); }
.bc-cat-i { background: var(--indigo-dim);  color: var(--indigo-deep); }
.bc-cat-g { background: rgba(5,150,105,.1); color: #065f46; }
.bc-cat-p { background: rgba(124,58,237,.1);color: #5b21b6; }
.bc-cat-r { background: var(--rose-dim);    color: #92400e; }
.bc-cat-b { background: rgba(14,165,233,.1);color: #0369a1; }

.bc-title {
  font-family: var(--font-h); font-size: .97rem; font-weight: 600;
  color: var(--text); line-height: 1.3; margin-bottom: 7px; flex: 1;
  transition: color .2s;
}
.blog-card:hover .bc-title { color: var(--indigo-deep); }
.bc-desc {
  font-size: .78rem; color: var(--text-3); line-height: 1.7; margin-bottom: 14px;
}
.bc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 11px; border-top: 1px solid var(--border); margin-top: auto;
}
.bc-author { display: flex; align-items: center; gap: 7px; }
.bc-av {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: #fff;
}
.bc-author-name { font-size: .72rem; font-weight: 600; color: var(--text-2); }
.bc-meta-right {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; color: var(--text-4);
}
.bc-arrow {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .72rem; font-weight: 700; color: var(--indigo-deep);
  text-decoration: none; margin-top: 9px;
  transition: gap .2s var(--ease);
}
.blog-card:hover .bc-arrow { gap: 8px; }

.blog-load-more { margin-top: 50px; text-align: center; }
.blog-load-more-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 30px; border-radius: 100px;
  border: 1.5px solid var(--border); background: #fff;
  font-family: var(--font-b); font-size: .84rem; font-weight: 600;
  color: var(--text-2); cursor: pointer;
  transition: all .25s var(--ease); box-shadow: var(--shadow);
}
.blog-load-more-btn:hover {
  border-color: var(--indigo); color: var(--indigo-deep);
  background: var(--indigo-pale); box-shadow: var(--shadow-md);
}
.blog-load-more-btn.loading { opacity: .6; pointer-events: none; }

.blog-sidebar {
  display: flex; flex-direction: column; gap: 22px;
  position: sticky; top: 132px;
}

.sw {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sw-head {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  background: var(--bg);
}
.sw-head h4 {
  font-size: .74rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-2);
}
.sw-head-icon { font-size: .92rem; }
.sw-body { padding: 14px 18px; }

.sw-post-link { text-decoration: none; display: block; }
.sw-post {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  transition: all .22s;
}
.sw-post:last-child { border-bottom: none; padding-bottom: 0; }
.sw-post-link:hover .sw-post-title { color: var(--indigo-deep); }
.sw-post-img {
  width: 54px; height: 50px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; overflow: hidden;
}
.sw-post-body { flex: 1; }
.sw-post-cat {
  font-size: .58rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 3px;
}
.sw-post-title {
  font-size: .77rem; font-weight: 600; color: var(--text);
  line-height: 1.4; margin-bottom: 3px; transition: color .2s;
}
.sw-post-date { font-size: .65rem; color: var(--text-4); }

.sw-cats { display: flex; flex-direction: column; }
.sw-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: all .22s;
}
.sw-cat:last-child { border-bottom: none; }
.sw-cat:hover .sw-cat-name { color: var(--indigo-deep); }
.sw-cat-left { display: flex; align-items: center; gap: 9px; }
.sw-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sw-cat-name {
  font-size: .82rem; font-weight: 500; color: var(--text-2); transition: color .2s;
}
.sw-cat-badge {
  background: var(--bg-2); color: var(--text-4);
  padding: 2px 7px; border-radius: 100px;
  font-size: .64rem; font-weight: 700;
}

.sw-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.sw-tag {
  padding: 5px 11px; border-radius: 100px;
  background: var(--bg); border: 1.5px solid var(--border);
  font-size: .71rem; font-weight: 500; color: var(--text-3);
  cursor: pointer; transition: all .22s var(--ease);
}
.sw-tag:hover,
.sw-tag.active {
  background: var(--indigo-pale);
  border-color: rgba(249,115,22,.3);
  color: var(--indigo-deep);
}
.sw-tag.active { font-weight: 700; }

.sw-newsletter {
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
  position: relative; overflow: hidden;
}
.sw-newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.sw-newsletter-inner { position: relative; z-index: 1; }
.sw-newsletter-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.sw-newsletter h4 {
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  color: #fff; margin-bottom: 8px; line-height: 1.3;
}
.sw-newsletter p {
  font-size: .75rem; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 16px;
}
.sw-newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.sw-newsletter-input {
  width: 100%; padding: 9px 13px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  font-family: var(--font-b); font-size: .8rem; color: #fff; outline: none;
  transition: border-color .25s;
}
.sw-newsletter-input::placeholder { color: rgba(255,255,255,.6); }
.sw-newsletter-input:focus { border-color: rgba(255,255,255,.7); }
.sw-newsletter-btn {
  width: 100%; padding: 10px; border-radius: 8px;
  background: #fff; color: var(--indigo-deep);
  border: none; cursor: pointer;
  font-family: var(--font-b); font-size: .8rem; font-weight: 700;
  transition: all .25s var(--ease);
}
.sw-newsletter-btn:hover { background: var(--indigo-pale); transform: translateY(-1px); }

@media(max-width:1024px) {
  .blog-hero-inner    { grid-template-columns: 1fr; gap: 40px; }
  .blog-hero-right    { max-width: 480px; }
  .blog-featured-peek { border-radius: var(--radius-xl); border-bottom: 1.5px solid var(--border); }
  .blog-layout        { grid-template-columns: 1fr; gap: 40px; }
  .blog-sidebar       { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .sw-newsletter      { grid-column: span 2; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .bfc-img-wrap,
  .bfc-img-placeholder { min-height: 240px; }
}
@media(max-width:768px) {
  .blog-page          { padding-top: 72px; }
  .blog-filter-bar    { top: 72px; }
  .blog-sidebar       { grid-template-columns: 1fr; }
  .sw-newsletter      { grid-column: span 1; }
  .blog-cards-grid    { grid-template-columns: 1fr; }
  .blog-hero-h        { font-size: 2.2rem; }
  .blog-cat           { padding: 12px 10px; font-size: .72rem; }
  .blog-search input  { width: 130px; }
  .bfc-body           { padding: 22px 20px; }
}
@media(max-width:480px) {
  .blog-hero          { padding: 40px 0 0; }
  .blog-hero-h        { font-size: 1.9rem; }
  .blog-hero-meta     { gap: 12px; }
}