.blog-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 750;
}

.blog-nav-links a:hover { color: var(--orange-dark); }

.locale-link {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.blog-index-hero {
  padding: 82px 0 48px;
  text-align: center;
}

.blog-index-hero h1 {
  max-width: 820px;
  margin-inline: auto;
}

.blog-index-hero .lead { margin-inline: auto; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 92px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(57, 38, 25, .09);
}

.post-card-visual {
  min-height: 230px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 98, 0, .27), transparent 30%),
    linear-gradient(145deg, #fffaf6, #fff0e6);
}

.post-card-visual strong {
  max-width: 480px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.visual-badge {
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 98, 0, .2);
  font-size: 12px;
  font-weight: 850;
}

.post-card-body { padding: 28px; }
.post-card-body h2 { margin-bottom: 12px; font-size: 28px; }
.post-card-body p { color: var(--muted); }
.post-meta { color: var(--muted); font-size: 13px; font-weight: 700; }
.read-link { display: inline-flex; margin-top: 8px; color: var(--orange-dark); font-weight: 850; }

.article-shell {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 92px;
}

.article-header { text-align: center; }
.article-header h1 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(40px, 6vw, 64px);
}
.article-header .lead { margin-inline: auto; }

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.article-visual {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  margin: 42px 0;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 98, 0, .22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 83% 15%, rgba(255, 98, 0, .31), transparent 30%),
    linear-gradient(145deg, #fffaf6, #fff0e6);
  box-shadow: var(--shadow);
}

.article-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -75px;
  bottom: -110px;
  border: 1px solid rgba(20, 34, 58, .12);
  border-radius: 50%;
}

.article-visual-copy { position: relative; z-index: 1; }
.article-visual-copy span { color: var(--orange-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-visual-copy strong { display: block; margin-top: 12px; font-size: clamp(32px, 5vw, 52px); line-height: 1.02; letter-spacing: -.05em; }

.feed-sheet {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 50px rgba(57, 38, 25, .12);
  transform: rotate(2deg);
}

.feed-sheet-row { display: grid; grid-template-columns: 1.3fr .65fr .5fr; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.feed-sheet-row:last-child { border: 0; }
.feed-sheet-row i { display: block; height: 9px; border-radius: 99px; background: #e5e8ee; }
.feed-sheet-row:first-child i { background: var(--orange); }
.feed-ready { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: #147a55; font-size: 12px; font-weight: 850; }
.feed-ready::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: white; background: #20b77a; }

.article-body {
  padding: 44px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(57, 38, 25, .08);
}

.article-body h2 { margin: 46px 0 15px; font-size: 31px; }
.article-body h2:first-of-type { margin-top: 0; }
.article-body h3 { margin: 28px 0 9px; }
.article-body p, .article-body li { color: #46536b; }
.article-body a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 23px; }
.article-body li + li { margin-top: 8px; }

.toc-box {
  margin-bottom: 42px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 98, 0, .2);
  border-radius: 18px;
  background: var(--orange-soft);
}
.toc-box strong { display: block; margin-bottom: 10px; }
.toc-box ol { margin: 0; }

.article-table-wrap { overflow-x: auto; margin: 20px 0 28px; }
.article-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.article-table th, .article-table td { padding: 13px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table th { color: var(--navy); background: var(--orange-soft); font-size: 13px; }
.article-table td { color: #46536b; font-size: 14px; }

.article-callout {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: #fff7f1;
  color: #46536b;
}

.article-checklist { display: grid; gap: 10px; margin: 18px 0 26px; }
.article-checklist div { padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: #fbfcfe; color: #46536b; }
.article-checklist div::before { content: "✓"; margin-right: 9px; color: #20a56e; font-weight: 900; }

.article-cta {
  margin-top: 42px;
  padding: 28px;
  border-radius: 20px;
  color: white;
  background: var(--navy);
  text-align: center;
}
.article-cta h2 { margin: 0 0 10px; color: white; }
.article-cta p { color: #bac4d6; }
.article-cta .button { color: var(--white); text-decoration: none; }

@media (max-width: 760px) {
  .blog-nav { min-height: 68px; gap: 12px; }
  .blog-nav-links a:not(.button):not(.locale-link) { display: none; }
  .blog-nav-links .button { display: none; }
  .post-grid { grid-template-columns: 1fr; }
  .article-shell { width: min(100% - 28px, 960px); padding-top: 52px; }
  .article-visual { grid-template-columns: 1fr; min-height: 0; padding: 28px; }
  .feed-sheet { transform: none; }
  .article-body { padding: 30px 22px; }
  .article-body h2 { font-size: 27px; }
}
