/* ============================================================
   Blog — Single post + Archive index
   ============================================================ */

/* ── Progress bar ── */
.blog-progress {
  position: sticky;
  top: 105px;
  z-index: 30;
  height: 3px;
  background: var(--border-hairline);
}
.admin-bar .blog-progress { top: 137px; }

.blog-progress__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--apoh-green), var(--apoh-blue));
  transition: width 0.12s linear;
}

/* ── Blog header (title block) ── */
.blog-header {
  background: linear-gradient(180deg, #F5F8FF 0%, #fff 100%);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border-hairline);
}

.blog-header .apoh-container--narrow {
  max-width: 1220px;
  /* Match the blog-layout grid: left column only (1fr of 1fr+280px+56px gap) */
  padding-right: calc(280px + 56px + var(--container-padding));
}

.blog-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-header__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: color-mix(in srgb, var(--cat-color) 10%, transparent);
  color: var(--cat-color);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--cat-color) 25%, transparent);
}

.blog-header__read-time { font-size: 13px; color: var(--fg-3); }

.blog-header__title {
  font-size: 44px;
  font-weight: 900;
  color: #1F2A3D;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 28px;
  text-wrap: balance;
}

/* ── Blog article video ── */
.blog-article__video { margin: 0 0 32px; }

.blog-article__video-thumb {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #0E1A2D;
  text-decoration: none;
}

.blog-article__video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 26, 61, 0.35) 0%, transparent 50%);
}

.blog-article__video-play {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.blog-article__video-thumb:hover .blog-article__video-play {
  transform: scale(1.08);
}

.blog-article__video-duration {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
}

.blog-article__video-caption {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 12px;
  line-height: 1.4;
}

.blog-header__bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border-hairline);
}

.blog-header__bar-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-header__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-header__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.blog-header__author-label {
  font-size: 11px;
  color: var(--fg-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 2px;
}

.blog-header__author-name { font-size: 14px; color: #1F2A3D; font-weight: 800; }

.blog-header__dates {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-3);
}
.blog-header__dates strong { color: var(--fg-1); }

.blog-header__reviewer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: var(--radius-pill);
  background: #F0F5FB;
  border: 1px solid #C7D5E8;
  text-decoration: none;
  color: var(--apoh-blue);
  font-size: 12px;
  font-weight: 600;
}

.blog-header__author-name {
  font-size: 14px;
  color: #1F2A3D;
  font-weight: 800;
  text-decoration: none;
}
a.blog-header__author-name:hover {
  color: var(--apoh-blue);
}

.blog-header__standards-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--apoh-green);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--apoh-green) 30%, transparent);
  background: color-mix(in srgb, var(--apoh-green) 6%, transparent);
}
.blog-header__standards-link:hover {
  background: color-mix(in srgb, var(--apoh-green) 12%, transparent);
  text-decoration: none;
}

.blog-header__reviewer-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apoh-blue), var(--apoh-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* ── Blog body layout ── */
.blog-body-section { background: #fff; padding: 52px 0 96px; }

.blog-layout {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}

.blog-article__hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(31, 42, 61, 0.10);
}

.blog-article__hero img { width: 100%; display: block; max-height: 460px; object-fit: cover; }

.blog-article__content { font-size: 17px; line-height: 1.78; color: #3D3F47; }

/* Headings */
.blog-article__content h2 {
  font-size: 27px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 48px 0 18px;
  scroll-margin-top: 220px;
  line-height: 1.2;
}
.admin-bar .blog-article__content h2 { scroll-margin-top: 252px; }
.blog-article__content h2 strong { color: var(--apoh-blue); }
.blog-article__content h2:first-of-type {
  padding-left: 18px;
  border-left: 4px solid #F7921E;
}
.blog-article__content h3 { font-size: 20px; font-weight: 800; color: #1F2A3D; margin: 32px 0 12px; }
.blog-article__content h4 { font-size: 17px; font-weight: 700; color: var(--apoh-blue); margin: 24px 0 10px; }
.blog-article__content p { margin: 0 0 18px; }
.blog-article__content p:first-of-type { font-size: 18px; color: #585961; line-height: 1.7; }
.blog-article__content strong { color: var(--fg-emphasis); }
.blog-article__content a { color: var(--apoh-blue); text-decoration: underline; text-decoration-color: #C7D5E8; text-underline-offset: 3px; }
.blog-article__content a:hover { text-decoration-color: var(--apoh-blue); }
.blog-article__content hr { border: none; border-top: 2px solid #EAEAE7; margin: 36px 0; }

/* Blockquotes */
.blog-article__content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--apoh-blue);
  background: #F0F5FB;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: #1F2A3D;
}
.blog-article__content blockquote p { margin: 0 0 12px; font-size: inherit; color: inherit; }
.blog-article__content blockquote p:last-child { margin-bottom: 0; }
.blog-article__content blockquote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--apoh-blue);
  margin-top: 12px;
}

/* Lists */
.blog-article__content ul, .blog-article__content ol { margin: 20px 0; padding-left: 1.5em; }
.blog-article__content ul { list-style: none; padding-left: 0; }
.blog-article__content ul li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.blog-article__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--apoh-green);
}
.blog-article__content ol li { margin-bottom: 8px; }
.blog-article__content img { border-radius: 12px; max-width: 100%; height: auto; box-shadow: 0 4px 16px rgba(31, 42, 61, 0.08); }

/* ── Article Quick Answer (add class "article-quick-answer" in editor) ── */
.blog-article__content .article-quick-answer,
.blog-article__content p.article-quick-answer {
  font-size: 17px;
  line-height: 1.7;
  color: #1F2A3D;
  padding: 20px 24px;
  background: #F5F8FF;
  border-radius: 12px;
  border: 1px solid #DBEAFE;
  margin: 0 0 28px;
}

/* ── Tables — card style, no borders ── */
.blog-article__content .wp-block-table,
.blog-article__content figure.wp-block-table {
  margin: 36px 0;
  background: #F8F9FB;
  border: none;
  border-radius: 16px;
  padding: 4px;
  box-shadow: none;
}

.blog-article__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  font-size: 15px;
  line-height: 1.6;
  border: none;
  background: transparent;
}

/* Header row */
.blog-article__content thead tr,
.blog-article__content tbody tr:first-child:has(b),
.blog-article__content tbody tr:first-child:has(strong) {
  background: transparent;
}

.blog-article__content thead tr td,
.blog-article__content thead tr th,
.blog-article__content tbody tr:first-child:has(b) td,
.blog-article__content tbody tr:first-child:has(strong) td {
  color: var(--apoh-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: transparent;
  border: none;
}

.blog-article__content thead tr td b,
.blog-article__content thead tr td strong,
.blog-article__content tbody tr:first-child:has(b) td b,
.blog-article__content tbody tr:first-child:has(strong) td strong {
  color: var(--apoh-blue);
  font-weight: 800;
}

.blog-article__content th {
  padding: 12px 22px;
  color: var(--apoh-blue);
  font-weight: 800;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
}

/* Data rows — white cards */
.blog-article__content tbody tr:not(:first-child),
.blog-article__content tbody tr:not(:has(b)):not(:has(strong)) {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(31, 42, 61, 0.04);
}

.blog-article__content td {
  padding: 18px 22px;
  border: none;
  vertical-align: top;
  color: #3D3F47;
}

/* Round the corners of first/last cells in each row */
.blog-article__content tbody tr td:first-child { border-radius: 12px 0 0 12px; }
.blog-article__content tbody tr td:last-child  { border-radius: 0 12px 12px 0; }

.blog-article__content td strong,
.blog-article__content td b {
  color: #1F2A3D;
  font-weight: 700;
}

/* Hover */
.blog-article__content tbody tr:not(:first-child):hover td {
  background: #EEF3FF;
}

/* Responsive table scroll */
@media (max-width: 640px) {
  .blog-article__content .wp-block-table,
  .blog-article__content figure.wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .blog-article__content table { min-width: 500px; }
}

/* ── Crisis Callout Box (add class "crisis-callout" in editor) ── */
.blog-article__content .crisis-callout {
  margin: 32px 0;
  padding: 20px 24px;
  background: #FFF5F5;
  border: 1px solid #FCA5A5;
  border-left: 5px solid #E55934;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  line-height: 1.6;
}
.blog-article__content .crisis-callout p { margin: 0; color: #1F2A3D; font-size: 15px; }

/* ── TOC sidebar ── */
.blog-toc { position: sticky; top: 180px; align-self: start; max-height: calc(100vh - 200px); overflow-y: auto; }
.admin-bar .blog-toc { top: 212px; max-height: calc(100vh - 232px); }

.blog-toc__box {
  background: #F5F8FF;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border: 1px solid #DBEAFE;
}

.blog-toc__label {
  font-size: 10px;
  font-weight: 800;
  color: var(--apoh-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-toc__list a {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-1);
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 5px 8px;
  border-radius: 6px;
  transition: all var(--dur-fast);
}
.blog-toc__list a:hover { background: #DBEAFE; color: var(--apoh-blue); }
.blog-toc__list a.is-active { background: #DBEAFE; color: var(--apoh-blue); font-weight: 700; }

/* ── Post mid-CTA ── */
.post-mid-cta {
  background: linear-gradient(135deg, #1F2A3D 0%, var(--apoh-blue) 100%);
  border-radius: 22px;
  padding: 44px 40px;
  margin: 56px 0 0;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}

.post-mid-cta .apoh-section-label--orange { color: #F5A623; } /* AA on dark navy bg */
.post-mid-cta__title { font-size: 30px; font-weight: 900; margin: 0 0 14px; letter-spacing: -0.02em; line-height: 1.15; color: #fff; }
.post-mid-cta__lead { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0 0 22px; }
.post-mid-cta__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.post-mid-cta__ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  text-decoration: none;
  background: rgba(255,255,255,0.06);
}
.post-mid-cta__ghost:hover { background: rgba(255,255,255,0.12); text-decoration: none; }

.post-mid-cta__conditions {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.16);
}

.post-mid-cta__conditions-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-mid-cta__conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.post-mid-cta__condition { display: flex; align-items: center; gap: 8px; }
.post-mid-cta__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--apoh-green); flex-shrink: 0; }

/* ── Author block ── */
.author-block {
  margin: 56px 0 0;
  padding: 28px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-hairline);
  border-radius: 18px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.author-block__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apoh-green), var(--apoh-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 28px;
}

.author-block__label { font-size: 12px; color: var(--fg-3); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }
.author-block__name { font-size: 22px; font-weight: 800; color: #1F2A3D; margin: 0 0 8px; }
.author-block__title { font-size: 14px; color: var(--fg-1); font-weight: 600; margin-bottom: 10px; }
.author-block__bio { font-size: 15px; line-height: 1.65; color: #3D3F47; margin: 0 0 12px; }

/* ── Post card ── */
.post-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-hairline);
  transition: all var(--dur-base);
  height: 100%;
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31, 42, 61, 0.10);
  border-color: #C7D5E8;
  text-decoration: none;
}

.post-card__image {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.post-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  color: var(--apoh-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: scale(0.85);
  transform-origin: top left;
}

.post-card__read-time {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.post-card__body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__title { font-size: 19px; font-weight: 800; color: #1F2A3D; margin: 0 0 10px; letter-spacing: -0.015em; line-height: 1.25; text-wrap: balance; }
.post-card__excerpt { font-size: 14px; color: var(--fg-1); line-height: 1.6; margin: 0 0 14px; flex: 1; }
.post-card__meta { font-size: 12px; color: var(--fg-3); }
.post-card__author { color: var(--apoh-blue); font-weight: 700; }

/* ── Blog related posts ── */
.blog-related__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-related__title { font-size: 28px; font-weight: 900; color: #1F2A3D; letter-spacing: -0.02em; margin: 0; }

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Blog index ── */
.blog-index__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar categories */
.blog-index__sidebar {
  position: sticky;
  top: 180px;
  align-self: start;
}
.admin-bar .blog-index__sidebar { top: 212px; }

.blog-index__sidebar-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--apoh-blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding: 0 12px;
}

.blog-index__cat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-index__cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  text-decoration: none;
  transition: all var(--dur-fast);
}

.blog-index__cat-link:hover {
  background: #F0F5FB;
  color: var(--apoh-blue);
  text-decoration: none;
}

.blog-index__cat-link--active {
  background: var(--apoh-blue);
  color: #fff;
  font-weight: 700;
}
.blog-index__cat-link--active:hover {
  background: var(--apoh-blue);
  color: #fff;
}

.blog-index__cat-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-3);
}

.blog-index__cat-link--active .blog-index__cat-count {
  color: inherit;
}

.blog-index__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  margin-inline: auto;
}

.blog-index__title {
  font-size: 44px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px 0 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.blog-index__accent { color: var(--apoh-blue); }

.blog-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.blog-index__chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-1);
  background: var(--bg-subtle);
  border: 1px solid var(--border-hairline);
  text-decoration: none;
  transition: all var(--dur-fast);
}
.blog-index__chip:hover { border-color: var(--apoh-blue); color: var(--apoh-blue); text-decoration: none; }
.blog-index__chip--active { background: var(--apoh-blue); color: #fff; border-color: var(--apoh-blue); }
.blog-index__chip--active:hover { color: #fff; }

.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Blog index hero ── */
.blog-index__hero {
  background: linear-gradient(180deg, #F5F8FF 0%, #fff 100%);
  padding: 56px 0 40px;
  text-align: center;
}

.blog-index__em {
  font-style: italic;
  font-family: var(--font-slab);
  color: var(--apoh-blue);
}

.blog-index__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-1);
  max-width: 640px;
  margin: 16px auto 0;
}

/* ── Filter bar ── */
.blog-index__filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-hairline);
  padding: 20px 0;
}

.blog-index__chip-count { font-weight: 500; opacity: 0.75; }

/* ── Load More Button ── */
.blog-index__load-more {
  text-align: center;
  margin-top: 40px;
}

.blog-index__load-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--apoh-blue);
  background: #fff;
  border: 2px solid var(--apoh-blue);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}

.blog-index__load-btn:hover {
  background: var(--apoh-blue);
  color: #fff;
}

.blog-index__load-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.blog-index__showing {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-3);
}

/* ── Featured post card ── */
.post-card-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-hairline);
  transition: all var(--dur-base);
  margin-bottom: 32px;
}
.post-card-featured:hover {
  transform: translateY(-2px);
  border-color: var(--apoh-blue);
  box-shadow: 0 16px 40px -16px rgba(31, 42, 61, 0.18);
  text-decoration: none;
}

.post-card-featured { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 360px; }

.post-card-featured__image {
  position: relative;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}
.post-card-featured__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-card-featured__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,26,61,0.75) 0%, rgba(14,26,61,0.2) 60%, transparent 100%); }

.post-card-featured__badge {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.post-card-featured__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-card-featured__meta { font-size: 12px; color: var(--fg-3); font-weight: 600; margin-bottom: 14px; }
.post-card-featured__title { font-size: 28px; font-weight: 900; color: #1F2A3D; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 16px; text-wrap: balance; }
.post-card-featured__excerpt { font-size: 15px; line-height: 1.65; color: var(--fg-1); margin: 0 0 22px; }
.post-card-featured__link { color: var(--apoh-blue); font-weight: 700; font-size: 14px; }

/* ── Editorial Standards ── */
.editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.editorial__title {
  font-size: 32px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.editorial__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-1);
  margin: 0 0 18px;
}

.editorial__steps { display: flex; flex-direction: column; gap: 16px; }

.editorial__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
}

.editorial__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.editorial__step-title { display: block; font-size: 15px; font-weight: 800; color: #1F2A3D; margin-bottom: 4px; }
.editorial__step-body { margin: 0; font-size: 14px; line-height: 1.5; color: var(--fg-1); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-header .apoh-container--narrow { padding-right: var(--container-padding); max-width: 800px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-toc { display: none; }
  .post-mid-cta { grid-template-columns: 1fr; }
  .post-card-featured { grid-template-columns: 1fr; min-height: auto; }
  .editorial__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .blog-index__layout {
    grid-template-columns: 1fr;
  }
  .blog-index__sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .blog-index__sidebar-title { display: none; }
  .blog-index__cat-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .blog-index__cat-link {
    padding: 7px 14px;
    border: 1px solid var(--border-hairline);
    border-radius: 999px;
    font-size: 13px;
  }
  .blog-index__cat-count { display: none; }
}

@media (max-width: 768px) {
  .blog-header__title { font-size: 32px; }
  .blog-related__grid { grid-template-columns: 1fr; }
  .blog-index__grid { grid-template-columns: 1fr; }
  .blog-index__title { font-size: 32px; }
  .author-block { flex-direction: column; }
}
