/* ==========================================================================
   SISGAIN AE BLOG SINGLE POST STYLES (Prototype 50/50 Hero, Meta Strip & 2-Col Layout)
   ========================================================================== */

:root {
  --bg: #f7f8fa;
  --bg-pure: #ffffff;
  --surface: #ffffff;
  --surface-2: #f0f2f5;
  --border: #e5e8ee;
  --border-strong: #d0d5dd;
  --text: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --green: #2563eb;
  --green-soft: #dbeafe;
  --green-mid: #3b82f6;
  --green-dark: #1d4ed8;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --accent-mid: #3b82f6;
  --accent-dark: #1d4ed8;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --max: 1380px;
  --radius: 14px;
  --radius-sm: 10px;
}

html,
body {
  overflow-x: clip !important;
}

.author-profile-card .author-profile-photo,
.author-profile-photo-link .author-profile-photo,
.author-profile-photo {
  width: 120px !important;
  height: 120px !important;
  max-width: 120px !important;
  min-width: 120px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  margin: 0 !important;
  border: 3px solid #f1f3f4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.blog-page-body {
  background: var(--bg);
  color: var(--text);

  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.article .content a {
  color: var(--green);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.article .content a:hover {
  color: var(--green-dark);
}

.blog-page-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== HERO SPLIT (50/50: image | content) ========== */
.hero-split-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 32px 0;
  position: relative;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* min-height: 420px; */
}

/* .hero-image {
  position: relative;
  background: var(--surface-2);
  min-height: 320px;
} */

.hero-image img {
  width: 100%;
  height: auto;
  /* object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0; */
}

.hero-content {
  /* display: flex; */
  /* flex-direction: column;
  justify-content: center; */
  padding: 1rem 1.5rem;
  text-align: left;
  background: var(--bg-pure);
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #bfdbfe;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none !important;
}

.cat-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.read-time {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.post-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
  max-width: none;
}

.post-description {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: none;
  margin-bottom: 0;
}

/* ========== META STRIP ========== */
.meta-overlap-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 10;
  margin-top: 24px;
}

.meta-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
  text-align: left;
  max-width: 100%;
}

.author-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  text-align: left;
}

.author-mini img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 0 0 2px #f1f5f9;
}

.author-mini-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.author-mini-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.author-mini-date {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
  flex-wrap: wrap;
  justify-self: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.breadcrumb a {
  color: #64748b;
}

.breadcrumb a:hover {
  color: #0f172a;
}

.breadcrumb .sep {
  opacity: .5;
  font-size: 12px;
  color: #cbd5e1;
}

.breadcrumb .current {
  color: #2563eb;
  font-weight: 600;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}

.share-row>span {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.share-btn:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.share-btn svg {
  width: 14px;
  height: 14px;
}

/* ========== MAIN CONTENT AREA (2 Columns: Left TOC + Full Width Article) ========== */
.content-area {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 32px 0;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  background: transparent !important;
}

/* ========== TOC SIDEBAR (LEFT) ========== */
.sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  z-index: 20;
}

.sidebar::before,
.sidebar::after {
  display: none !important;
  content: none !important;
}

.toc-card {
  background: #ffffff !important;
  border: 1px solid #e8ecf1 !important;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06) !important;
  position: relative;
  overflow: hidden;
}

.toc-header {
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-label-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toc-label-icon svg {
  width: 14px;
  height: 14px;
}

.toc-progress-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.toc-progress-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
}

.toc-body {
  padding: 10px 14px 18px 14px;
  max-height: calc(100vh - 240px);
  height: auto;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.toc-body::-webkit-scrollbar {
  width: 5px;
}

.toc-body::-webkit-scrollbar-track {
  background: transparent;
}

.toc-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.toc-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.toc-track {
  position: relative;
}

.toc-track::before {
  content: '';
  position: absolute;
  left: 25.5px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: #e2e8f0;
  border-radius: 999px;
  z-index: 0;
}

.toc-progress-bar {
  position: absolute;
  left: 25.5px;
  top: 24px;
  width: 3px;
  height: 0%;
  background: linear-gradient(180deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  border-radius: 999px;
  z-index: 1;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
  transition: height 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.toc-item {
  position: relative;
}

.toc-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #475569;
  padding: 10px 14px 10px 12px;
  border-radius: 12px;
  transition: color .2s, background .2s;
  line-height: 1.35;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.toc-link .toc-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s ease;
  position: relative;
  z-index: 2;
  font-variant-numeric: tabular-nums;
}

.toc-link .toc-text {
  flex: 1;
  font-weight: 500;
  color: inherit;
}

.toc-link .toc-arrow {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toc-link:hover {
  color: #1e293b;
  background: #f8fafc;
}

.toc-link:hover .toc-num {
  border-color: #93c5fd;
  color: #2563eb;
}

.toc-item.active .toc-link,
.toc-link.active {
  color: #1e40af;
  background: #eff6ff;
}

.toc-item.active .toc-text,
.toc-link.active .toc-text {
  font-weight: 600;
}

.toc-item.active .toc-num,
.toc-link.active .toc-num {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.google-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.google-card p {
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.5;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.google-btn:hover {
  background: var(--bg-pure);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.google-btn svg {
  width: 15px;
  height: 15px;
}

/* ========== ARTICLE BODY ========== */
.article,
.blog-post-content {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.article .content img,
.blog-post-content img {
  max-width: 100% !important;
  height: auto !important;
}

.article .content table,
.blog-post-content table {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.article .content iframe,
.article .content video,
.article .content embed,
.article .content object,
.blog-post-content iframe,
.blog-post-content video {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
}

.article .content pre,
.blog-post-content pre {
  max-width: 100% !important;
  white-space: pre-wrap !important;
  word-break: break-word !important;
  overflow-x: auto !important;
}

/* Key Takeaways Box */
.takeaways {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.takeaways-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border-bottom: 1px solid transparent;
  transition: background .2s;
}

.takeaways.open .takeaways-header {
  border-bottom-color: var(--border);
}

.takeaways-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.takeaways-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.takeaways-icon svg {
  width: 15px;
  height: 15px;
}

.takeaways-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.takeaways-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all .25s;
}

.takeaways.open .takeaways-toggle {
  transform: rotate(180deg);
}

.takeaways-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 18px;
}

.takeaways.open .takeaways-body {
  max-height: 400px;
  padding: 16px 18px 18px;
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.takeaways-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.takeaways-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Article Typography */
.article h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 44px 0 14px;
  color: var(--text);
  scroll-margin-top: 100px;
}

.article h2:first-of-type {
  margin-top: 8px;
}

.article h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
  scroll-margin-top: 100px;
}

.article p {
  margin-bottom: 18px;
  color: var(--text-2);
  font-size: 16px;
}

.article ul,
.article ol {
  margin: 0 0 18px 20px;
  color: var(--text-2);
}

.article li {
  margin-bottom: 7px;
}

.article blockquote {
  margin: 28px 0;
  padding: 16px 20px;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

/* FAQ Accordion Section */
.faq-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.faqHead {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-pure);
}

.faq-toggle {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.accordion-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-content p {
  padding-bottom: 16px;
  color: var(--text-2);
  font-size: 15px;
  margin: 0;
}

/* Prev / Next Navigation */
.post-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 32px 0;
}

.post-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.post-nav-inner.has-single,
.post-nav-inner:has(> .nav-card:only-child) {
  grid-template-columns: 1fr;
}

.nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
  min-height: 88px;
  width: 100%;
}

.nav-card.full-width,
.post-nav-inner.has-single .nav-card,
.post-nav-inner>.nav-card:only-child {
  width: 100%;
}

.nav-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.nav-card.prev {
  align-items: flex-start;
}

.nav-card.next {
  align-items: flex-end;
  text-align: right;
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
}

.nav-card.next .nav-label {
  flex-direction: row-reverse;
}

.nav-label svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.nav-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -.01em;
}

.nav-card:hover .nav-title {
  color: var(--green-dark);
}

/* Mobile-only Google card */
.google-card-mobile {
  display: none;
}

/* Related Posts */
.related {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 32px 80px;
}

.related-head {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rel-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.rel-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.rel-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform .4s;
}

.rel-card:hover .rel-card-img {
  transform: scale(1.03);
}

.rel-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.rel-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.rel-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.rel-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-top: auto;
  padding-top: 6px;
}

/* Responsive */
@media (max-width: 1200px) {
  .content-area {
    grid-template-columns: 290px 1fr;
    gap: 28px;
  }
}

@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* .hero-image {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  } */

  .hero-content {
    padding: 24px 20px;
  }

  .meta-overlap-wrap {
    margin-top: 20px;
  }

  .content-area {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar {
    display: none !important;
  }

  .google-card-mobile {
    display: block;
    margin-bottom: 24px;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .meta-strip {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
    border-radius: 20px;
    padding: 16px 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .author-mini {
    justify-self: center;
  }

  .share-row {
    justify-self: center;
  }

  .breadcrumb {
    justify-self: center;
    justify-content: center;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
  }
}

@media (max-width: 640px) {

  .hero-split-wrap,
  .meta-overlap-wrap,
  .content-area,
  .post-nav,
  .related {
    padding-left: 14px;
    padding-right: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-split {
    border-radius: 16px;
    width: 100%;
  }

  /* 
  .hero-image {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  } */

  .hero-content {
    padding: 18px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .post-title {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.25;
    overflow-wrap: break-word;
    word-break: break-word;
    margin-bottom: 10px;
  }

  .post-description {
    font-size: 14.5px;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .cat-pill {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .meta-strip {
    padding: 14px 12px;
    border-radius: 16px;
    gap: 12px;
  }

  .author-mini {
    gap: 10px;
  }

  .author-mini img {
    width: 36px;
    height: 36px;
  }

  .author-mini-name {
    font-size: 13.5px;
  }

  .author-mini-date {
    font-size: 11.5px;
  }

  .breadcrumb {
    font-size: 12px;
    gap: 4px 6px;
  }

  .share-row {
    gap: 6px;
  }

  .share-btn {
    width: 32px;
    height: 32px;
  }

  .takeaways {
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .takeaways-header {
    padding: 12px 14px;
  }

  .takeaways-title {
    font-size: 13.5px;
  }

  .takeaways-body {
    padding: 0 14px;
  }

  .takeaways.open .takeaways-body {
    padding: 14px 14px 16px;
  }

  .takeaways-list li {
    font-size: 13.5px;
  }

  .article h2 {
    font-size: 20px;
    margin: 32px 0 12px;
  }

  .article h3 {
    font-size: 16.5px;
    margin: 22px 0 8px;
  }

  .article p,
  .article ul,
  .article ol {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .article ul,
  .article ol {
    padding-left: 18px;
    margin-left: 0;
  }

  .faq-section {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .faqHead {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .faq-toggle {
    padding: 12px 14px;
  }

  .accordion-title {
    font-size: 14.5px;
    line-height: 1.35;
  }

  .accordion-content {
    padding: 0 14px;
  }

  .accordion-content p {
    font-size: 14px;
    padding-bottom: 14px;
  }

  .post-nav {
    padding-top: 28px;
  }

  .post-nav-inner {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .nav-card {
    padding: 14px 16px;
    min-height: auto;
  }

  .nav-card.next {
    align-items: flex-start;
    text-align: left;
  }

  .nav-card.next .nav-label {
    flex-direction: row;
  }

  .nav-title {
    font-size: 14px;
  }

  .related {
    padding: 32px 14px 48px;
  }

  .related-head {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .related-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .rel-card-img {
    height: 160px;
  }

  .rel-card-body {
    padding: 14px;
  }
}

@media (max-width: 380px) {

  .hero-split-wrap,
  .meta-overlap-wrap,
  .content-area,
  .post-nav,
  .related {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-content {
    padding: 14px 12px;
  }

  .post-title {
    font-size: 19px;
  }

  .meta-strip {
    padding: 12px 10px;
  }

  .share-row>span {
    display: none;
  }
}