/* NiftyPro — Blog & Single Post Styles */

/* ── Blog listing page ────────────────────────────────────────────────────── */
.blog-page { padding-top: var(--nav-h); }

.blog-hero {
  padding: 72px 52px 48px; max-width: 1320px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.blog-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(36px,4vw,60px); font-weight: 900; letter-spacing: -2px; }
.blog-hero h1 em { font-style: italic; font-weight: 300; color: var(--orange); }

.blog-search {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden;
  background: #fff;
}
.blog-search input {
  border: none; outline: none; padding: 12px 18px; font-size: 14px;
  font-family: 'Figtree', sans-serif; color: var(--ink); min-width: 220px;
  background: transparent;
}
.blog-search button {
  background: var(--orange); border: none; padding: 12px 20px;
  color: #fff; cursor: pointer; font-size: 16px; transition: background .2s;
}
.blog-search button:hover { background: #e04d10; }

/* Category tabs */
.category-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 0 52px 32px; max-width: 1320px; margin: 0 auto;
}
.cat-tab {
  padding: 7px 16px; border-radius: 100px; border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none;
  transition: all .2s;
}
.cat-tab:hover, .cat-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.cat-tab.active[data-color] { background: var(--color); border-color: var(--color); }

/* Main layout with sidebar */
.blog-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 40px; padding: 0 52px 80px; max-width: 1320px; margin: 0 auto;
  align-items: start;
}
/* min-width:0 required by Firefox — grid items default to min-width:auto
   and won't shrink below content size without this */
.blog-layout > * { min-width: 0; }

.blog-main-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-main-grid > * { min-width: 0; }

/* Featured post (first) */
.blog-post-featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line); border-radius: var(--card-r); overflow: hidden;
  background: #fff; text-decoration: none; color: inherit;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.blog-post-featured:hover { border-color: rgba(255,92,26,.25); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.07); }
.blog-post-featured .blog-card-img { height: 300px; }
.blog-post-featured .blog-card-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-post-featured .blog-card-title { font-size: 28px; }

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: #fff; }
.sidebar-widget-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--ink); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.sidebar-recent-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.sidebar-recent-post:last-child { border-bottom: none; }
.sidebar-recent-thumb { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: var(--bg2); }
.sidebar-recent-title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 4px; }
.sidebar-recent-date  { font-size: 12px; color: var(--muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 5px 12px; border-radius: 100px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; color: var(--muted); text-decoration: none;
  transition: all .2s;
}
.tag-pill:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 48px 0 0; grid-column: span 2; }
.pagination a {
  width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none;
  transition: all .2s;
}
.pagination a.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.pagination a:hover:not(.active) { background: var(--bg2); border-color: var(--ink); }

/* ── Single Post ──────────────────────────────────────────────────────────── */
.post-page { padding-top: var(--nav-h); }

.post-hero { padding: 60px 52px 0; max-width: 1320px; margin: 0 auto; }
.post-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 32px;
  font-size: 13px; color: var(--muted);
}
.post-breadcrumb a { color: var(--muted); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--orange); }
.post-breadcrumb span { color: var(--line); }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 0 52px 80px; max-width: 1200px; margin: 0 auto;
  align-items: start;
}
/* Both columns need min-width:0 in Firefox */
.post-layout > * { min-width: 0; }
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 24px; }

.post-header { margin-bottom: 48px; }
.post-cat    { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--orange); margin-bottom: 16px; display: block; text-decoration: none; }
.post-title  { font-family: 'Fraunces', serif; font-size: clamp(32px,4vw,52px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; color: var(--ink); margin-bottom: 24px; }
.post-meta   { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-author { display: flex; align-items: center; gap: 10px; }
.post-author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; }
.post-author-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.post-author-role { font-size: 12px; color: var(--muted); }
.post-meta-sep  { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.post-meta-item { font-size: 13px; color: var(--muted); }

.post-featured-image { width: 100%; border-radius: 20px; margin: 40px 0; object-fit: cover; max-height: 480px; }

/* ── Article content typography ────────────────────────────────────────────── */
.post-content { font-size: 17px; line-height: 1.85; color: var(--ink2); }
.post-content h2 { font-family: 'Fraunces', serif; font-size: clamp(22px,2vw,28px); font-weight: 900; letter-spacing: -0.5px; color: var(--ink); margin: 56px 0 20px; line-height: 1.2; }
.post-content h3 { font-family: 'Fraunces', serif; font-size: clamp(18px,1.6vw,22px); font-weight: 700; letter-spacing: -0.3px; color: var(--ink); margin: 40px 0 16px; line-height: 1.25; }
.post-content h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 32px 0 12px; }
.post-content p  { margin-bottom: 24px; }
.post-content a  { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
/* Buttons inside article content — high specificity to survive editor <style> blocks.
   Articles use .cta-btn inside .cta-box; .post-content a would otherwise colour them orange. */
.post-content a.btn-fill,
.post-content .btn-fill,
.post-content .cta-btn,
.post-content .cta-box a,
.post-content .cta-box button,
.post-content .cta-box [class*="btn"],
.post-content [class*="cta"] a[style],
.post-content a[style*="background:#FF5C1A"],
.post-content a[style*="background: #FF5C1A"],
.post-content a[style*="background:var(--orange"],
.post-content a[style*="background: var(--orange"] {
  color: #fff !important;
  text-decoration: none !important;
}
.post-content ul, .post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--orange); margin: 36px 0;
  padding: 20px 28px; background: var(--orange-light); border-radius: 0 12px 12px 0;
  font-size: 18px; font-style: italic; color: var(--ink2);
}
.post-content code {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 8px; font-size: 14px; font-family: monospace; color: var(--orange);
}
.post-content pre {
  background: var(--ink); border-radius: 14px; padding: 24px;
  overflow-x: auto; margin: 32px 0;
}
.post-content pre code { background: none; border: none; color: #7effd4; padding: 0; font-size: 14px; }
.post-content img { max-width: 100%; border-radius: 14px; margin: 24px 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.post-content th { background: var(--bg2); padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 700; border: 1px solid var(--line); }
.post-content td { padding: 12px 16px; border: 1px solid var(--line); font-size: 15px; }
.post-content tr:nth-child(even) td { background: var(--bg2); }
.post-content .callout {
  background: var(--orange-light); border: 1px solid var(--orange-mid);
  border-radius: 14px; padding: 20px 24px; margin: 32px 0;
  display: flex; gap: 14px;
}
.post-content .callout-icon { font-size: 24px; flex-shrink: 0; }
.post-content .callout-body  { font-size: 15px; }
.post-content .callout-body strong { color: var(--orange); }

/* In-content ad */
.post-content .ad-slot { margin: 40px 0; }

/* ── WYSIWYG custom components ───────────────────────────────────────────── */

/* Provide fallback CSS variables for article component classes.
   These match the tokens used in article HTML files so components render
   correctly after :root overrides are stripped from embedded <style> blocks. */
.post-content {
  --navy   : #0f2645;
  --green  : #16a34a;
  --red    : #dc2626;
  --blue   : #1d4ed8;
  --g900   : #111827;
  --g700   : #374151;
  --g500   : #6b7280;
  --g300   : #d1d5db;
  --g100   : #f3f4f6;
  --g50    : #f9fafb;
  --white  : #ffffff;
  --bg-ora : #fff7ed;
  --bg-grn : #f0fdf4;
  --bg-red : #fff1f2;
  --bg-blu : #eff6ff;
}

/* .article wrapper — neutralise max-width so it fits the post layout */
.post-content .article {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force any editor-injected TOC to stay in document flow, never fixed/sticky/floating */
.post-content [class*="toc"],
.post-content [id*="toc"] {
  position: static !important;
  float: none !important;
}

/* ── Mobile overflow containment ─────────────────────────────────────────── */
/* Use overflow-x:clip (not hidden) — clip does NOT create a scroll container,
   so position:sticky still works correctly in Firefox (which follows the W3C
   spec: overflow:hidden implicitly sets overflow-y:auto, making the element
   a scroll container and breaking sticky children).                          */
.post-page { overflow-x: clip; }
/* Do NOT set overflow-x on .post-content — it would prevent .tbl-wrap from
   scrolling horizontally. The min-width:0 rule below handles overflow instead. */
.post-content { max-width: 100%; }

/* Every element inside article must respect the container width.
   min-width:0 is critical in Firefox — grid/flex items default to
   min-width:auto in Firefox and won't shrink below content size without it. */
.post-content * { min-width: 0; box-sizing: border-box; }

/* Media always fluid */
.post-content img,
.post-content video,
.post-content iframe,
.post-content embed { max-width: 100% !important; height: auto; }

/* Base: ensure tables inside table-wrap / tbl-wrap are fluid */
.post-content .table-wrap,
.post-content .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
.post-content .table-wrap table { min-width: 560px; width: 100% !important; }
.post-content .tbl-wrap table  { min-width: 420px; width: 100% !important; }

/* Stats grids (.stats and .stats-row): cap at 2 columns on narrow sidebar layout */
.post-content .stats,
.post-content .stats-row { width: 100%; box-sizing: border-box; }

/* Sector grid: ensure it doesn't overflow */
.post-content .sector-grid { width: 100%; box-sizing: border-box; }
.post-content .sc { min-width: 0; box-sizing: border-box; }

/* Timeline items don't overflow */
.post-content .tl-item { min-width: 0; }
.post-content .tl-text, .post-content .tl-date { word-break: break-word; }

/* CTA box */
.post-content .cta-box { box-sizing: border-box; max-width: 100%; }

/* Pull quote */
.post-content .pull-quote { box-sizing: border-box; max-width: 100%; }

/* Post footer */
.post-footer   { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
.post-tags     { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.post-share    { margin-bottom: 40px; }
.post-share h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.share-btns    { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  border-radius: 10px; border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 600; text-decoration: none; color: var(--ink);
  transition: all .2s;
}
.share-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Author box */
.author-box-wrap { margin-bottom: 48px; }
.author-box-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.author-box {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 20px;
  padding: 32px; display: flex; gap: 28px; align-items: flex-start;
}
.author-box-avatar { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: #fff; }
.author-box-avatar img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.author-box-body { flex: 1; min-width: 0; }
.author-box-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.author-box-name  { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; }
.author-box-role  { font-size: 12px; font-weight: 600; color: var(--accent); background: rgba(255,92,26,.08); padding: 2px 10px; border-radius: 20px; white-space: nowrap; }
.author-box-bio   { font-size: 14px; color: var(--ink2); line-height: 1.75; margin-bottom: 14px; }
.author-box-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.author-social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px; padding: 5px 12px; text-decoration: none;
  transition: border-color .15s, color .15s;
}
.author-social-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Related posts */
.related-posts { margin-bottom: 60px; }
.related-posts h3 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900; letter-spacing: -0.8px; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-grid > * { min-width: 0; }

/* Sidebar categories */
.sidebar-cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-cat-tab {
  padding: 8px 16px; border-radius: 10px;
  border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 600;
  color: var(--ink); background: #fff;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.sidebar-cat-tab:hover {
  background: var(--cc, var(--orange));
  border-color: var(--cc, var(--orange));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  text-decoration: none;
}

/* Table of contents — Jodit class (.toc) and older class (.toc-widget) */
.post-content .toc {
  position: static !important;
  float: none !important;
  width: 100% !important;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 32px 0;
  box-sizing: border-box;
}
.post-content .toc-hd {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
  color: var(--muted) !important;
  margin: 0 0 14px !important;
}
.post-content .toc ol,
.post-content .toc ul {
  margin: 0;
  padding-left: 18px;
}
.post-content .toc li {
  margin-bottom: 6px;
}
.post-content .toc a {
  font-size: 14px;
  color: var(--ink2);
  text-decoration: none;
  line-height: 1.5;
}
.post-content .toc a:hover {
  color: var(--orange);
}

/* Table of contents — in-content (Jodit-inserted): render as normal block */
.post-content .toc-widget {
  position: static !important;
  float: none !important;
  width: 100% !important;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 32px 0;
  box-sizing: border-box;
}
.post-content .toc-widget h2,
.post-content .toc-widget h3,
.post-content .toc-widget p,
.post-content .toc-widget > div:first-child {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .6px !important;
  color: var(--muted) !important;
  margin: 0 0 12px !important;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.toc-list a { font-size: 13px; color: var(--muted); text-decoration: none; padding: 4px 10px; border-left: 2px solid var(--line); display: block; transition: color .2s, border-color .2s; }
.toc-list a:hover, .toc-list a.active { color: var(--orange); border-left-color: var(--orange); }
.toc-list .toc-h3 { padding-left: 20px; font-size: 12px; }

/* Reading progress bar */
#reading-progress {
  position: fixed; top: var(--nav-h); left: 0; height: 3px;
  background: var(--orange); z-index: 600;
  transition: width .1s linear; width: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .blog-sidebar { position: static; display: none; }
  .blog-hero { padding: 48px 24px 32px; }
  .category-tabs { padding: 0 24px 24px; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .blog-post-featured { grid-template-columns: 1fr; }
  .blog-post-featured .blog-card-img { height: 220px; }
  .blog-post-featured .blog-card-body { padding: 28px; }
  .post-layout { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .post-sidebar { position: static; }
  .post-hero { padding: 40px 24px 0; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .post-hero { padding: 28px 20px 0; }
  .post-layout { padding: 0 20px 48px; }
  .post-breadcrumb { font-size: 12px; gap: 5px; flex-wrap: wrap; }
  .post-title { letter-spacing: -1px; margin-bottom: 18px; }
  .post-meta { gap: 12px; }
  .post-featured-image { border-radius: 14px; max-height: 320px; margin: 28px 0; }
  .post-content { font-size: 16px; line-height: 1.8; }
  .post-content h2 { margin: 44px 0 16px; }
  .post-content h3 { margin: 32px 0 12px; }
  .post-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .author-box { flex-direction: column; gap: 16px; padding: 24px; }
  .author-box-avatar, .author-box-avatar img { width: 64px; height: 64px; }
  .author-box-name { font-size: 18px; }
  .related-grid { grid-template-columns: 1fr; }
  .post-footer { margin-top: 48px; padding-top: 32px; }
  /* WYSIWYG components */
  .post-content .sector-grid { grid-template-columns: 1fr !important; }
  .post-content .cta-box { padding: 20px !important; }
  .post-content .stats-row,
  .post-content .stats { grid-template-columns: repeat(2, 1fr) !important; }
  .post-content .stat { min-width: 0 !important; }
  /* Force any bare table (not in tbl-wrap) to scroll */
  .post-content > table,
  .post-content p + table,
  .post-content h2 + table,
  .post-content h3 + table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  .post-hero { padding: 20px 16px 0; }
  .post-layout { padding: 0 16px 40px; }
  .post-breadcrumb { font-size: 11px; gap: 4px; }
  .post-header { margin-bottom: 28px; }
  .post-meta { gap: 8px; }
  .post-meta-sep { display: none; }
  .post-meta-item { font-size: 12px; }
  .post-author-name { font-size: 13px; }
  .post-author-role { font-size: 11px; }
  .post-author-avatar { width: 34px; height: 34px; font-size: 12px; }
  .post-featured-image { border-radius: 10px; max-height: 220px; margin: 20px 0; }
  .post-content { font-size: 15px; line-height: 1.75; }
  .post-content h2 { font-size: clamp(19px, 5vw, 22px); margin: 32px 0 12px; }
  .post-content h3 { font-size: clamp(16px, 4vw, 19px); margin: 24px 0 10px; }
  .post-content h4 { font-size: 15px; margin: 20px 0 10px; }
  .post-content p  { margin-bottom: 18px; }
  .post-content ul, .post-content ol { margin-left: 18px; }
  .post-content blockquote { padding: 14px 18px; font-size: 15px; margin: 24px 0; border-radius: 0 10px 10px 0; }
  .post-content pre { padding: 14px; border-radius: 10px; }
  .post-content img { border-radius: 10px; }
  .share-btn { flex: 1 1 calc(50% - 5px); justify-content: center; font-size: 12px; padding: 9px 12px; }
  .author-box { padding: 18px; gap: 12px; border-radius: 14px; }
  .author-box-name { font-size: 18px; }
  .author-box-bio { font-size: 13px; }
  .sidebar-widget { padding: 16px; border-radius: 12px; }
  .sidebar-recent-title { font-size: 13px; }
  .post-footer { margin-top: 36px; padding-top: 24px; }
  .post-tags { gap: 6px; }
  .share-btns { gap: 8px; }
  .related-posts h3 { font-size: 22px; }
  /* WYSIWYG components — mobile overrides */
  .post-content .stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 1px !important; }
  .post-content .stat { padding: 12px 8px !important; }
  .post-content .stat-n { font-size: 1.2rem !important; }
  .post-content .stat-l { font-size: 10px !important; }
  .post-content .stat-s { font-size: 10px !important; }
  .post-content .sector-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .post-content .cta-box { padding: 18px 16px !important; margin: 24px 0 !important; border-radius: 10px !important; }
  .post-content .cta-box h3 { font-size: 1rem !important; }
  .post-content .cta-box p { font-size: 14px !important; }
  .post-content .pull-quote { padding: 4px 0 4px 14px !important; margin: 20px 0 !important; }
  .post-content .pull-quote p { font-size: 1rem !important; }
  .post-content .tl-dot { width: 30px !important; height: 30px !important; font-size: 9px !important; flex-shrink: 0 !important; }
  .post-content .tl-item { gap: 10px !important; margin-bottom: 18px !important; }
  .post-content .callout { padding: 12px 14px !important; font-size: 14px !important; border-radius: 6px !important; }
  .post-content .callout p { font-size: 14px !important; }
  .post-content .sc { padding: 12px 14px !important; }
}
