:root {
  --blog-navy: #0b1628;
  --blog-navy-mid: #142035;
  --blog-navy-soft: #1e3050;
  --blog-ink: #101828;
  --blog-text: #27364d;
  --blog-muted: #66758b;
  --blog-cream: #f4efe6;
  --blog-soft: #fffdf8;
  --blog-gold: #c9a84c;
  --blog-gold-light: #e2c47a;
  --blog-border: rgba(201, 168, 76, 0.28);
  --blog-rule: rgba(201, 168, 76, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--blog-text);
  background:
    linear-gradient(90deg, rgba(11, 22, 40, 0.05) 0 1px, transparent 1px),
    linear-gradient(180deg, #f4efe6 0%, #fbf7f0 42%, #efe7da 100%);
  background-size: 100% 100%, 100% 100%;
}

.site-menu {
  position: fixed;
  top: 0rem;
  left: 0;
  width: 100%;
  z-index: 80;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-menu.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: rgba(247, 244, 239, 0.86);
  border: 1px solid rgba(166, 124, 57, 0.45);
  border-radius: 0;
  box-shadow: 0 10px 22px rgba(36, 26, 16, 0.14);
}

.site-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.site-menu-logo-link {
  display: inline-flex;
  align-items: center;
  width: 120px;
  height: 51px;
  overflow: hidden;
}

.site-menu-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 54%;
  transform: scale(1);
}

.site-context-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #7c571c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  transform: translate(-26px, 23px);
}

.site-menu-burger {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(10, 9, 8, 0.85);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.site-menu-burger span {
  width: 16px;
  height: 1.6px;
  background: #d4af37;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu.is-open .site-menu-burger span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}

.site-menu.is-open .site-menu-burger span:nth-child(2) {
  opacity: 0;
}

.site-menu.is-open .site-menu-burger span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

.site-menu-nav {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 1rem;
  left: 1rem;
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(8, 7, 6, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.28);
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.site-menu.is-open .site-menu-nav {
  display: flex;
}

.site-menu-nav a {
  color: #f2eadf;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
}

.site-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  margin-left: auto;
  padding: 0.16rem;
  border: 1px solid rgba(166, 124, 57, 0.32);
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.9);
}

.site-lang-switch a {
  min-width: 1.72rem;
  padding: 0.24rem 0.34rem;
  border-radius: 999px;
  color: #4a3828;
  text-decoration: none;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.site-lang-switch a.is-current {
  background: #a78f68;
  color: #2f2a24;
}

@media (max-width: 899px) {
  .site-lang-switch {
    margin-left: auto;
  }
}

.site-menu-nav a:hover,
.site-menu-nav a:focus-visible {
  background: rgba(212, 175, 55, 0.14);
  outline: none;
}

.site-menu-nav a.is-active,
.site-menu-nav a.is-current,
.site-menu-nav a[aria-current="location"],
.site-menu-nav a[aria-current="page"] {
  color: #e0bb58;
  background: transparent;
}

.blog-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem 90px;
}

.blog-body:not(.blog-article-detail) .blog-page {
  padding-top: 6.1rem;
}

.blog-hero,
.blog-article-hero {
  display: grid;
  gap: 18px;
  margin: 0 auto 52px;
}

.blog-hero {
  width: 100%;
  margin: 1rem 0 1.55rem;
  padding: clamp(1.35rem, 2vw, 2rem) 0;
  display: grid;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(166, 124, 57, 0.22);
  background: transparent;
  color: #1f140c;
}

.blog-hero::before {
  content: none;
}

.blog-hero::after {
  content: none;
}

.blog-kicker {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 2px;
  padding: 6px 16px;
  color: var(--blog-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.blog-article-hero h1 {
  margin: 0;
  color: var(--blog-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.blog-hero h1 {
  margin: 0;
  color: #1f140c;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.75rem, 1.08rem + 2.8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.blog-hero h1 span {
  display: inline;
  margin-top: 0;
  color: #8c682f;
  font-size: clamp(0.86rem, 0.72rem + 0.55vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-hero-service > p,
.blog-article-hero p:not(.blog-kicker) {
  margin: 0;
  line-height: 1.55;
}

.blog-hero-service {
  color: #4c3a2a;
}

.blog-hero-service > p:first-child {
  color: #1f140c;
  font-size: clamp(1.28rem, 1.02rem + 1vw, 1.8rem);
  font-weight: 650;
}

.blog-hero-service > p + p {
  margin-top: 1rem;
  color: #5a4634;
  font-size: clamp(1.08rem, 0.98rem + 0.42vw, 1.28rem);
  line-height: 1.45;
}

@media (min-width: 820px) {
  .blog-hero {
    grid-template-columns: 1fr;
    align-items: end;
    row-gap: 1.35rem;
  }

  .blog-hero-service {
    padding-left: 0;
    border-left: 0;
  }
}

.blog-article-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: auto;
  align-content: center;
  padding: 90px max(24px, calc((100vw - 860px) / 2)) 60px;
  overflow: hidden;
  text-align: center;
  background: var(--blog-navy);
}

.blog-article-hero::before {
  content: none;
}

.blog-article-hero .blog-kicker,
.blog-article-hero h1,
.blog-article-hero p {
  position: relative;
  z-index: 2;
}

.blog-article-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  color: #fff;
}

.blog-article-hero p:not(.blog-kicker) {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.blog-article-hero img {
  display: none;
}

.blog-toolbar {
  width: min(1180px, calc(100% - 32px));
  margin: 38px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.blog-results {
  color: var(--blog-navy);
}

.blog-grid {
  width: 100%;
  margin: 1.55rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(166, 124, 57, 0.18);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 20px 46px rgba(31, 20, 12, 0.09);
  cursor: pointer;
}

.blog-card-image {
  display: block;
  height: 245px;
  overflow: hidden;
  background: #e7dfd2;
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 1.15rem;
}

.blog-card-access-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(141, 111, 33, 0.32);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.86);
  color: #7a5730;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-access-badge.is-authorized {
  border-color: rgba(46, 125, 78, 0.3);
  background: rgba(235, 248, 239, 0.92);
  color: #2f7045;
}

.blog-card-access-badge svg {
  width: 0.84rem;
  height: 0.84rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-card h2 {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.14rem, 1rem + 0.6vw, 1.42rem);
  font-weight: 650;
  line-height: 1.22;
}

.blog-card h2 a {
  color: #1f140c;
  text-decoration: none;
}

.blog-card p {
  margin: 0;
  color: #463729;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  width: fit-content;
  margin-top: 0.25rem;
  color: #8d6f21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-card-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: rgba(141, 111, 33, 0.45);
  transition: opacity 0.18s ease;
}

.blog-card:hover .blog-card-link::after {
  opacity: 0;
}

@media (min-width: 900px) {
  .blog-card {
    grid-template-columns: minmax(480px, 47%) minmax(0, 1fr);
    align-items: stretch;
  }

  .blog-card-image {
    height: 310px;
    min-height: 0;
  }

  .blog-card-body {
    padding: 2rem 1.35rem;
  }
}

.blog-pagination {
  width: min(1180px, calc(100% - 32px));
  margin: 1.2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.38rem;
}

.blog-pagination a {
  min-width: 36px;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(141, 111, 33, 0.28);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.9);
  color: #8d6f21;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.blog-pagination a.active {
  color: #fffaf2;
  border-color: #8d6f21;
  background: #8d6f21;
}

.blog-pagination a.disabled {
  pointer-events: none;
  opacity: 0.42;
}

.blog-alert {
  width: min(1180px, calc(100% - 32px));
  margin: 52px auto 0;
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  background: var(--blog-soft);
  padding: 18px 20px;
}

.blog-article {
  max-width: none;
  margin: 0 auto;
}

.blog-article-nav {
  max-width: 860px;
  margin: -30px auto 38px;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.blog-article-nav-bottom {
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 44px;
  background: #0b1628;
}

.blog-article-nav a {
  display: inline-flex;
  align-items: center;
  color: #c9a84c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: auto;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-access-gate {
  width: min(760px, calc(100% - 2rem));
  margin: 2rem auto 3rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(166, 124, 57, 0.26);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 18px 42px rgba(31, 20, 12, 0.08);
  color: #3d2d20;
}

.blog-access-gate h2 {
  margin: 0 0 0.55rem;
  color: #1f140c;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.blog-access-gate p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.blog-access-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
}

.blog-access-form label {
  display: grid;
  gap: 0.32rem;
}

.blog-access-form span {
  color: #6b512f;
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-access-form input {
  min-height: 2.75rem;
  border: 1px solid rgba(166, 124, 57, 0.35);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  color: #1f140c;
  font: inherit;
}

.blog-access-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.blog-access-form button,
.blog-access-actions a {
  min-height: 2.75rem;
  border-radius: 10px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
}

.blog-access-form button {
  border: 1px solid #2f2923;
  background: #2f2923;
  color: #fffaf1;
  cursor: pointer;
}

.blog-access-actions a {
  border: 1px solid rgba(166, 124, 57, 0.35);
  background: #fff;
  color: #7a5730;
}

.blog-access-note {
  margin-top: 0.9rem !important;
  color: rgba(90, 70, 52, 0.78);
  font-size: 0.86rem;
}

.blog-access-error {
  margin-bottom: 0.8rem;
}

@media (max-width: 640px) {
  .blog-access-form {
    grid-template-columns: 1fr;
  }

  .blog-access-form button {
    width: 100%;
  }

  .blog-access-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-access-actions a {
    width: 100%;
  }
}

.blog-content {
  max-width: 820px;
  margin: 0 auto;
  color: #293548;
  font-size: 1.03rem;
  line-height: 1.82;
}

.blog-protected-preview {
  margin-bottom: 1.4rem;
}

.blog-content > *:first-child {
  margin-top: 0;
}

.blog-content p {
  margin: 0 0 1.25em;
}

.blog-content .lead,
.blog-content .intro,
.blog-content .intro-block p {
  color: #34445c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.75;
  border-left: 2px solid var(--blog-gold);
  padding-left: 22px;
  margin: 0 0 42px;
}

.blog-content h2,
.blog-content .step-title,
.blog-content .section-rule h2,
.blog-content .section-header h2 {
  color: var(--blog-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 54px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--blog-rule);
}

.blog-content h3,
.blog-content .step-label,
.blog-content .section-number,
.blog-content .callout-title,
.blog-content .schema-title,
.blog-content .case-study-badge,
.blog-content .hero-kicker {
  color: var(--blog-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-content strong {
  color: var(--blog-navy);
  font-weight: 700;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1.5em;
  padding-left: 1.35rem;
}

.blog-content li {
  margin-bottom: 0.65em;
}

.blog-content .callout,
.blog-content .schema-card,
.blog-content .case-study,
.blog-content .pull-quote,
.blog-content .cta-block,
.blog-content .intro-block,
.blog-content .conclusion-box,
.blog-content .note-box {
  margin: 34px 0;
  padding: 30px 34px;
  border: 1px solid var(--blog-border);
  border-left: 3px solid var(--blog-gold);
  border-radius: 4px;
  background: var(--blog-soft);
  box-shadow: 0 14px 34px rgba(11, 22, 40, 0.06);
}

.blog-content .stat-row,
.blog-content .stats-band,
.blog-content .investment-grid,
.blog-content .case-row,
.blog-content .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.blog-content .stat,
.blog-content .stat-item,
.blog-content .inv-card,
.blog-content .case-item,
.blog-content .principle-card {
  border: 1px solid var(--blog-border);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.9);
  padding: 24px 22px;
}

.blog-content .stat-num,
.blog-content .stat-number,
.blog-content .case-item-val,
.blog-content .inv-card-rdt {
  display: block;
  color: var(--blog-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1.05;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 12px 28px rgba(11, 22, 40, 0.05);
}

.blog-content th,
.blog-content td {
  border: 1px solid var(--blog-border);
  padding: 12px 14px;
  text-align: left;
}

.blog-content th {
  background: var(--blog-navy-mid);
  color: #fff;
}

.blog-content .band {
  width: min(1080px, calc(100vw - 32px));
  margin: 58px 0 58px 50%;
  transform: translateX(-50%);
  border: 1px solid var(--blog-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 22, 40, 0.12);
}

.blog-content .band-inner {
  padding: 52px 56px;
}

.blog-content .band-navy {
  background:
    radial-gradient(ellipse 55% 58% at 90% 20%, rgba(201, 168, 76, 0.13), transparent 70%),
    linear-gradient(135deg, var(--blog-navy) 0%, var(--blog-navy-mid) 100%);
  color: #f4efe6;
}

.blog-content .band-cream {
  background: #f7f2e8;
}

.blog-content .band-navy p,
.blog-content .band-navy .step-content,
.blog-content .band-navy .schema-box-sub,
.blog-content .band-navy .schema-center-sub,
.blog-content .band-navy .assump-desc,
.blog-content .band-navy .comp-desc {
  color: rgba(244, 239, 230, 0.8);
}

.blog-content .band-navy strong,
.blog-content .band-navy .step-title,
.blog-content .band-navy .schema-box-name,
.blog-content .band-navy .schema-center-name,
.blog-content .band-navy .example-title,
.blog-content .band-navy .vigilance-title {
  color: #fff;
}

.blog-content .step-section,
.blog-content .example-section,
.blog-content .vigilance-section {
  margin: 0;
}

.blog-content .step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 34px;
}

.blog-content .step-number {
  flex: 0 0 auto;
  color: var(--blog-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 5.8rem);
  line-height: 0.9;
  opacity: 0.52;
}

.blog-content .step-title {
  border: 0;
  margin: 4px 0 0;
  padding: 0;
}

.blog-content .schema-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-content .schema-box,
.blog-content .schema-center,
.blog-content .assump-box,
.blog-content .comp-box,
.blog-content .info-card,
.blog-content .philosophy-item,
.blog-content .vigilance-item {
  border: 1px solid var(--blog-border);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.88);
  padding: 22px;
}

.blog-content .band-navy .schema-box,
.blog-content .band-navy .schema-center,
.blog-content .band-navy .assump-box,
.blog-content .band-navy .comp-box,
.blog-content .band-navy .info-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(184, 146, 67, 0.35);
}

.blog-content .schema-center {
  border-color: rgba(184, 146, 67, 0.62);
  box-shadow: inset 0 0 0 1px rgba(184, 146, 67, 0.18);
}

.blog-content .schema-box-label,
.blog-content .schema-center-label,
.blog-content .assump-label,
.blog-content .comp-label,
.blog-content .inv-card-type,
.blog-content .stat-label,
.blog-content .sl,
.blog-content .sd,
.blog-content .alloc-header,
.blog-content .mandarine-tag,
.blog-content .role {
  color: var(--blog-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-content .schema-arrow {
  min-width: 90px;
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--blog-gold);
  font-size: 0.72rem;
  text-align: center;
}

.blog-content .schema-arrow-line {
  width: 100%;
  height: 1px;
  background: var(--blog-gold);
}

.blog-content .example-assumption,
.blog-content .comparison-row,
.blog-content .info-box,
.blog-content .philosophy-grid,
.blog-content .vigilance-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.blog-content .example-subtitle,
.blog-content .vigilance-title,
.blog-content .alloc-header {
  margin-bottom: 16px;
}

.blog-content .example-title,
.blog-content .vigilance-title,
.blog-content .assump-value,
.blog-content .comp-value,
.blog-content .sv {
  color: var(--blog-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.12;
}

.blog-content .band-navy .assump-value,
.blog-content .band-navy .comp-value,
.blog-content .band-navy .sv {
  color: #fffaf2;
}

.blog-content .td-gold,
.blog-content .gold,
.blog-content .pos {
  color: var(--blog-gold);
  font-weight: 700;
}

.blog-content .td-green,
.blog-content .green {
  color: #3f7f54;
  font-weight: 700;
}

.blog-content .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.blog-content .stat-card {
  border: 1px solid var(--blog-border);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.9);
  padding: 24px 20px;
  text-align: center;
}

.blog-content .alloc-section,
.blog-content .gerant-card,
.blog-content .risk-band,
.blog-content .risk-labels {
  margin: 30px 0;
}

.blog-content .alloc-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.2fr) minmax(120px, 2fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--blog-border);
}

.blog-content .alloc-label,
.blog-content .name {
  color: var(--blog-navy);
  font-weight: 700;
}

.blog-content .alloc-sub,
.blog-content .bio,
.blog-content .case-item-sub,
.blog-content .case-note,
.blog-content .sub {
  color: var(--blog-muted);
  font-size: 0.94rem;
}

.blog-content .alloc-bar-wrap {
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 22, 40, 0.1);
  overflow: hidden;
}

.blog-content .alloc-bar {
  height: 100%;
  border-radius: inherit;
  background: var(--blog-gold);
}

.blog-content .bar-bond {
  width: 72.9%;
}

.blog-content .bar-equity {
  width: 51.1%;
}

.blog-content .bar-absolute {
  width: 32%;
}

.blog-content .bar-cash {
  width: 12%;
}

.blog-content .cat-row td {
  background: rgba(11, 22, 40, 0.08);
  color: var(--blog-navy);
  font-weight: 700;
}

.blog-content .gerant-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--blog-border);
  border-radius: 4px;
  background: var(--blog-soft);
  padding: 22px;
}

.blog-content .gerant-avatars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-content .gerant-avatar,
.blog-content .phi-marker {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blog-navy);
  color: var(--blog-gold);
  font-weight: 800;
}

.blog-content .risk-band {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.blog-content .risk-segment {
  height: 12px;
  border-radius: 999px;
  background: rgba(11, 22, 40, 0.14);
}

.blog-content .risk-segment.active3 {
  background: var(--blog-gold);
}

.blog-content .risk-labels {
  display: flex;
  justify-content: space-between;
  color: var(--blog-muted);
  font-size: 0.85rem;
}

.blog-content .implantation-list,
.blog-content .monthly-list,
.blog-content .tools-list,
.blog-content .avantages {
  list-style: none;
  padding-left: 0;
}

.blog-content .implantation-list > li,
.blog-content .monthly-list > li,
.blog-content .tools-list > li,
.blog-content .avantages > li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--blog-border);
}

.blog-content .implantation-list > li::before,
.blog-content .monthly-list > li::before,
.blog-content .tools-list > li::before,
.blog-content .avantages > li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blog-gold);
}

.blog-content .city-name-main {
  color: var(--blog-navy);
  font-weight: 700;
}

.blog-content .city-badge {
  margin-left: 10px;
  color: var(--blog-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-content .cabinet-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.blog-content .cabinet-link,
.blog-content .cta-btn {
  color: var(--blog-gold);
  font-weight: 700;
}

.blog-content .cta-block {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 80% 0%, rgba(201, 168, 76, 0.14), transparent 62%),
    var(--blog-navy);
  color: #fff;
}

.blog-content .cta-block h2 {
  color: #fffaf2;
  border-color: rgba(184, 146, 67, 0.35);
}

.blog-content .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid var(--blog-gold);
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  text-decoration: none;
}

.blog-content img {
  max-width: 100%;
  height: auto;
}

.blog-content .disclaimer,
.blog-content .fine-print {
  color: #705f4d;
  font-size: 0.88rem;
  line-height: 1.65;
  border-top: 1px solid var(--blog-border);
  padding-top: 18px;
}

.blog-article-detail {
  background: #0b1628;
  color: #f4efe6;
}

.blog-article-detail .site-menu {
  background: transparent;
  border-bottom-color: transparent;
}

.blog-article-detail .site-menu-nav a {
  color: rgba(244, 239, 230, 0.82);
}

.blog-article-detail .site-context-badge {
  color: #e8c96f;
}

.blog-article-detail .blog-page {
  padding-bottom: 0;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero {
  min-height: auto;
  padding: 90px max(24px, calc((100vw - 860px) / 2)) 60px;
  text-align: center;
  align-content: center;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero::before {
  background: none;
}

.blog-article-detail .blog-article-hero img {
  display: none;
}

.blog-article-detail .blog-article-hero .blog-kicker {
  margin-inline: auto;
  letter-spacing: 0.3em;
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.4);
}

.blog-article-detail .blog-article-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
}

.blog-article-detail .blog-article-hero p:not(.blog-kicker) {
  max-width: 620px;
  margin-inline: auto;
  color: #d0d8e4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.blog-article-detail .blog-content {
  max-width: none;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.blog-article-detail .blog-content > * {
  max-width: none;
}

.blog-article-detail .blog-content > .intro-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 70px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content > .intro-block p {
  margin: 0;
  padding: 0;
  border: 0;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.9;
}

.blog-article-detail .blog-content .band {
  width: 100%;
  margin: 0;
  padding: 70px 0;
  transform: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content .band-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-article-detail .blog-content .band-navy {
  background: #0b1628;
}

.blog-article-detail .blog-content .band-cream {
  background: #ede8df;
}

.blog-article-detail .blog-content .step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
}

.blog-article-detail .blog-content .step-number {
  flex-shrink: 0;
  margin-top: -8px;
  color: #c9a84c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.35;
}

.blog-article-detail .blog-content .step-label {
  margin-bottom: 6px;
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .step-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.blog-article-detail .blog-content .step-content p,
.blog-article-detail .blog-content li {
  color: #d0d8e4;
  font-size: 0.97rem;
  line-height: 1.8;
}

.blog-article-detail .blog-content .band-cream .step-title,
.blog-article-detail .blog-content .band-cream h3,
.blog-article-detail .blog-content .band-cream h4 {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .step-content p,
.blog-article-detail .blog-content .band-cream li,
.blog-article-detail .blog-content .band-cream td {
  color: #2a3a52;
}

.blog-article-detail .blog-content strong {
  color: #e2c47a;
  font-weight: 500;
}

.blog-article-detail .blog-content .band-cream strong {
  color: #0b1628;
}

.blog-auto-disclaimer {
  width: 100%;
  margin: 0;
  padding: 18px 0 38px;
  transform: none;
  border: 0;
  box-shadow: none;
}

.blog-auto-disclaimer-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 14px 40px 0;
  border-top: 1px solid currentColor;
}

.blog-auto-disclaimer p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
}

.blog-auto-disclaimer strong {
  font-weight: 600;
}

.blog-auto-disclaimer.is-after-navy {
  background: #0b1628;
  color: rgba(208, 216, 228, 0.74);
}

.blog-auto-disclaimer.is-after-navy .blog-auto-disclaimer-inner {
  border-top-color: rgba(201, 168, 76, 0.22);
}

.blog-auto-disclaimer.is-after-navy strong {
  color: #e2c47a;
}

.blog-auto-disclaimer.is-after-cream {
  background: #ede8df;
  color: #2a3a52;
}

.blog-auto-disclaimer.is-after-cream .blog-auto-disclaimer-inner {
  border-top-color: rgba(11, 22, 40, 0.22);
}

.blog-auto-disclaimer.is-after-cream strong {
  color: #0b1628;
}

.blog-article-detail .blog-content .band:has(+ .blog-auto-disclaimer) {
  padding-bottom: 28px;
}

.blog-article-detail .blog-content .blog-auto-disclaimer.is-after-cream p {
  color: #2a3a52;
}

.blog-article-detail .blog-content .blog-auto-disclaimer.is-after-cream strong {
  color: #8d6f21;
}

.blog-article-detail .blog-content .blog-auto-disclaimer.is-after-navy p {
  color: rgba(208, 216, 228, 0.78);
}

.blog-floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0 1.05rem;
  border: 1px solid rgba(226, 196, 122, 0.44);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.84);
  color: #182437;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(11, 22, 40, 0.18);
  backdrop-filter: blur(16px);
}

.blog-floating-contact .floating-contact-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-floating-contact::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
}

.blog-floating-contact:hover {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 34px rgba(11, 22, 40, 0.22);
}

.blog-content .cta-btn,
.blog-article-detail .blog-content .cta-btn {
  cursor: pointer;
}

.blog-article-detail {
  background: #0b1628;
  color: #f4efe6;
}

.blog-article-detail .site-menu {
  background: transparent;
  border-bottom-color: transparent;
}

.blog-article-detail .site-menu-nav a {
  color: rgba(244, 239, 230, 0.82);
}

.blog-article-detail .blog-page {
  padding-bottom: 0;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero {
  min-height: auto;
  padding: 90px max(24px, calc((100vw - 860px) / 2)) 60px;
  text-align: center;
  align-content: center;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero::before {
  background: none;
}

.blog-article-detail .blog-article-hero img {
  display: none;
}

.blog-article-detail .blog-article-hero .blog-kicker {
  margin-inline: auto;
  letter-spacing: 0.3em;
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.4);
}

.blog-article-detail .blog-article-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
}

.blog-article-detail .blog-article-hero p:not(.blog-kicker) {
  max-width: 620px;
  margin-inline: auto;
  color: #d0d8e4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.blog-article-detail .blog-content {
  max-width: none;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.blog-article-detail .blog-content > .intro-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 70px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content > .intro-block p {
  margin: 0;
  padding: 0;
  border: 0;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.9;
}

.blog-article-detail .blog-content .intro-block strong {
  color: #e2c47a;
  font-weight: 500;
}

.blog-article-detail .blog-content .band {
  width: 100%;
  margin: 0;
  padding: 70px 0;
  transform: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content .band-navy {
  background: #0b1628;
}

.blog-article-detail .blog-content .band-cream {
  background: #ede8df;
}

.blog-article-detail .blog-content .band-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-article-detail .blog-content .step-section {
  margin-bottom: 0;
}

.blog-article-detail .blog-content .step-section + .step-section {
  margin-top: 60px;
}

.blog-article-detail .blog-content .step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
}

.blog-article-detail .blog-content .step-number {
  flex-shrink: 0;
  margin-top: -8px;
  color: #c9a84c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.35;
}

.blog-article-detail .blog-content .step-label,
.blog-article-detail .blog-content .schema-title,
.blog-article-detail .blog-content .example-subtitle {
  margin-bottom: 6px;
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .step-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.blog-article-detail .blog-content .step-content p {
  color: #d0d8e4;
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.blog-article-detail .blog-content .step-content strong {
  color: #e2c47a;
  font-weight: 500;
}

.blog-article-detail .blog-content .schema-card {
  margin: 32px 0;
  padding: 36px 40px;
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left-width: 1px;
  border-radius: 4px;
  box-shadow: none;
}

.blog-article-detail .blog-content .schema-title {
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: 0.28em;
}

.blog-article-detail .blog-content .schema-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.blog-article-detail .blog-content .schema-box {
  min-width: 160px;
  padding: 18px 24px;
  text-align: center;
  background: #1e3050;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 3px;
}

.blog-article-detail .blog-content .schema-center {
  min-width: 180px;
  padding: 22px 30px;
  text-align: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid #c9a84c;
  border-radius: 3px;
  box-shadow: none;
}

.blog-article-detail .blog-content .schema-box-label,
.blog-article-detail .blog-content .schema-center-label,
.blog-article-detail .blog-content .inv-card-type,
.blog-article-detail .blog-content .assump-label,
.blog-article-detail .blog-content .comp-label {
  margin-bottom: 6px;
  color: #c9a84c;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .schema-box-name,
.blog-article-detail .blog-content .schema-center-name,
.blog-article-detail .blog-content .inv-card-name,
.blog-article-detail .blog-content .example-title,
.blog-article-detail .blog-content .vigilance-title,
.blog-article-detail .blog-content .comp-value {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.blog-article-detail .blog-content .schema-box-name {
  font-size: 1.1rem;
}

.blog-article-detail .blog-content .schema-center-name {
  font-size: 1.3rem;
  font-weight: 600;
}

.blog-article-detail .blog-content .schema-box-sub,
.blog-article-detail .blog-content .schema-center-sub,
.blog-article-detail .blog-content .inv-card-desc,
.blog-article-detail .blog-content .assump-desc,
.blog-article-detail .blog-content .comp-desc,
.blog-article-detail .blog-content .divider-note {
  color: #a8b4c4;
}

.blog-article-detail .blog-content .schema-arrow {
  min-width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  gap: 2px;
}

.blog-article-detail .blog-content .schema-arrow-line {
  width: 40px;
  height: 1px;
  background: #c9a84c;
  opacity: 0.4;
}

.blog-article-detail .blog-content .schema-arrow-label {
  margin-top: 4px;
  color: #c9a84c;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-article-detail .blog-content .schema-card:has(.schema-row) {
  color: #eef2f7;
}

.blog-article-detail .blog-content .schema-card:has(.schema-row) .schema-title,
.blog-article-detail .blog-content .schema-card:has(.schema-row) .schema-box-label,
.blog-article-detail .blog-content .schema-card:has(.schema-row) .schema-center-label,
.blog-article-detail .blog-content .schema-card:has(.schema-row) .schema-arrow-label {
  color: #e6c66d;
}

.blog-article-detail .blog-content .schema-card:has(.schema-row) .schema-box-sub,
.blog-article-detail .blog-content .schema-card:has(.schema-row) .schema-center-sub,
.blog-article-detail .blog-content .schema-card:has(.schema-row) > div:last-child {
  color: #dfe6ef;
}

.blog-article-detail .blog-content .investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.blog-article-detail .blog-content .inv-card {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  box-shadow: none;
}

.blog-article-detail .blog-content .inv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #c9a84c;
  opacity: 0.5;
}

.blog-article-detail .blog-content .inv-card-name {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.blog-article-detail .blog-content .inv-card-rdt,
.blog-article-detail .blog-content .assump-value {
  color: #e2c47a;
  font-size: 1.4rem;
  font-weight: 600;
}

.blog-article-detail .blog-content .example-section {
  margin: 60px 0;
  padding: 50px;
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
}

.blog-article-detail .blog-content .example-assumption,
.blog-article-detail .blog-content .comparison-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.blog-article-detail .blog-content .comparison-row {
  grid-template-columns: 1fr 1fr;
  margin: 28px 0;
}

.blog-article-detail .blog-content .assump-box,
.blog-article-detail .blog-content .comp-box {
  padding: 18px 20px;
  text-align: center;
  background: #0b1628;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 3px;
}

.blog-article-detail .blog-content .comp-box {
  padding: 24px 26px;
  text-align: left;
}

.blog-article-detail .blog-content .comp-box.highlight {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.55);
}

.blog-article-detail .blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.88rem;
}

.blog-article-detail .blog-content thead tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}

.blog-article-detail .blog-content th {
  padding: 10px 14px;
  background: transparent;
  border: 0;
  color: #c9a84c;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: left;
  text-transform: uppercase;
}

.blog-article-detail .blog-content tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-article-detail .blog-content td {
  padding: 13px 14px;
  border: 0;
  color: #d0d8e4;
  vertical-align: top;
}

.blog-article-detail .blog-content td:first-child {
  color: #f4efe6;
}

.blog-article-detail .blog-content .td-gold {
  color: #e2c47a !important;
  font-weight: 500;
}

.blog-article-detail .blog-content .td-green,
.blog-article-detail .blog-content .green {
  color: #7ec8a0 !important;
  font-weight: 500;
}

.blog-article-detail .blog-content .vigilance-title {
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.blog-article-detail .blog-content .vigilance-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-article-detail .blog-content .vigilance-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 22px;
  background: #142035;
  border: 0;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 0 3px 3px 0;
}

.blog-article-detail .blog-content .vigilance-text {
  color: #d0d8e4;
  font-size: 0.88rem;
  line-height: 1.75;
}

.blog-article-detail .blog-content .vigilance-text strong {
  color: #f4efe6;
  font-weight: 500;
}

.blog-article-detail .blog-content .conclusion {
  margin: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
}

.blog-article-detail .blog-content .conclusion h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
}

.blog-article-detail .blog-content .conclusion p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: #d0d8e4;
}

.blog-article-detail .blog-content .f-logo,
.blog-article-detail .blog-content .f-disclaimer {
  display: none;
}

.blog-article-detail .blog-content .band-cream .step-title,
.blog-article-detail .blog-content .band-cream .schema-box-name,
.blog-article-detail .blog-content .band-cream .schema-center-name,
.blog-article-detail .blog-content .band-cream .inv-card-name,
.blog-article-detail .blog-content .band-cream .vigilance-title,
.blog-article-detail .blog-content .band-cream .comp-value {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .step-content p,
.blog-article-detail .blog-content .band-cream .vigilance-text,
.blog-article-detail .blog-content .band-cream td {
  color: #2a3a52;
}

.blog-article-detail .blog-content .band-cream .schema-card,
.blog-article-detail .blog-content .band-cream .inv-card,
.blog-article-detail .blog-content .band-cream .example-section,
.blog-article-detail .blog-content .band-cream .vigilance-item {
  background: #fff;
}

.blog-article-detail .blog-content .band-cream .schema-box,
.blog-article-detail .blog-content .band-cream .assump-box,
.blog-article-detail .blog-content .band-cream .comp-box {
  background: #ede8df;
}

.blog-article-detail .blog-content .band-cream .schema-box-sub,
.blog-article-detail .blog-content .band-cream .inv-card-desc,
.blog-article-detail .blog-content .band-cream .assump-desc,
.blog-article-detail .blog-content .band-cream .comp-desc {
  color: #6b7a8d;
}

.blog-article-detail .blog-content .band-cream td:first-child,
.blog-article-detail .blog-content .band-cream .vigilance-text strong {
  color: #0b1628;
}

.blog-article-detail,
.blog-article-detail,
.blog-article-detail {
  background: #0b1628;
}

.blog-article-detail .blog-page,
.blog-article-detail .blog-page,
.blog-article-detail .blog-page {
  background: #0b1628;
}

.blog-article-detail .blog-content,
.blog-article-detail .blog-content,
.blog-article-detail .blog-content {
  max-width: none;
  color: #d0d8e4;
}

.blog-article-detail .blog-content > *,
.blog-article-detail .blog-content > *,
.blog-article-detail .blog-content > * {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.blog-article-detail .blog-content > h2,
.blog-article-detail .blog-content > h3,
.blog-article-detail .blog-content > p,
.blog-article-detail .blog-content > ul,
.blog-article-detail .blog-content > table,
.blog-article-detail .blog-content > .prose,
.blog-article-detail .blog-content > .section-rule,
.blog-article-detail .blog-content > table,
.blog-article-detail .blog-content > .intro-block,
.blog-article-detail .blog-content > .section-header,
.blog-article-detail .blog-content > .body-text,
.blog-article-detail .blog-content > .implantation-block,
.blog-article-detail .blog-content > .monthly-list,
.blog-article-detail .blog-content > .tools-list {
  padding-left: 40px;
  padding-right: 40px;
}

.blog-article-detail .blog-content > .lead,
.blog-article-detail .blog-content > .callout,
.blog-article-detail .blog-content > .stat-row,
.blog-article-detail .blog-content > .case-study,
.blog-article-detail .blog-content > .cta-block,
.blog-article-detail .blog-content > .disclaimer,
.blog-article-detail .blog-content > .stats-grid,
.blog-article-detail .blog-content > .pull-quote,
.blog-article-detail .blog-content > .alloc-section,
.blog-article-detail .blog-content > .gerant-card,
.blog-article-detail .blog-content > .risk-band,
.blog-article-detail .blog-content > .risk-labels,
.blog-article-detail .blog-content > .info-box,
.blog-article-detail .blog-content > .disclaimer,
.blog-article-detail .blog-content > .stats-band,
.blog-article-detail .blog-content > .philosophy-block {
  max-width: 860px;
}

.blog-article-detail .blog-content > .lead,
.blog-article-detail .blog-content .intro,
.blog-article-detail .blog-content > .intro-block p {
  color: #d0d8e4;
  border-left-color: #c9a84c;
}

.blog-article-detail .blog-content h2,
.blog-article-detail .blog-content h3,
.blog-article-detail .blog-content .section-rule h2,
.blog-article-detail .blog-content .section-header h2 {
  color: #fff;
  border-bottom-color: rgba(201, 168, 76, 0.35);
}

.blog-article-detail .blog-content p,
.blog-article-detail .blog-content li,
.blog-article-detail .blog-content p,
.blog-article-detail .blog-content .body-text,
.blog-article-detail .blog-content li {
  color: #d0d8e4;
}

.blog-article-detail .blog-content strong,
.blog-article-detail .blog-content strong,
.blog-article-detail .blog-content strong {
  color: #e2c47a;
  font-weight: 600;
}

.blog-article-detail .blog-content > h2:nth-of-type(even),
.blog-article-detail .blog-content > .section-rule:nth-of-type(even),
.blog-article-detail .blog-content > .section-header:nth-of-type(even) {
  width: 100%;
  max-width: none;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(201, 168, 76, 0.16);
}

.blog-article-detail .blog-content .callout,
.blog-article-detail .blog-content .case-study,
.blog-article-detail .blog-content .alloc-section,
.blog-article-detail .blog-content .gerant-card,
.blog-article-detail .blog-content .info-card,
.blog-article-detail .blog-content .intro-block,
.blog-article-detail .blog-content .implantation-block {
  background: #142035;
  border-color: rgba(201, 168, 76, 0.24);
  color: #d0d8e4;
  box-shadow: none;
}

.blog-article-detail .blog-content .stat,
.blog-article-detail .blog-content .case-item,
.blog-article-detail .blog-content .stat-card,
.blog-article-detail .blog-content .stat-item,
.blog-article-detail .blog-content .philosophy-item {
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: #d0d8e4;
}

.blog-article-detail .blog-content .stat-num,
.blog-article-detail .blog-content .case-item-val,
.blog-article-detail .blog-content .sv,
.blog-article-detail .blog-content .stat-number {
  color: #e2c47a;
}

.blog-article-detail .blog-content .stat-label,
.blog-article-detail .blog-content .case-item-label,
.blog-article-detail .blog-content .sl,
.blog-article-detail .blog-content .sd,
.blog-article-detail .blog-content .stat-label,
.blog-article-detail .blog-content .section-number,
.blog-article-detail .blog-content .city-badge {
  color: #c9a84c;
}

.blog-article-detail .blog-content table,
.blog-article-detail .blog-content table {
  background: #142035;
}

.blog-article-detail .blog-content th,
.blog-article-detail .blog-content th {
  background: #1e3050;
  color: #e2c47a;
}

.blog-article-detail .blog-content td,
.blog-article-detail .blog-content td {
  color: #d0d8e4;
}

.blog-article-detail {
  background: #0b1628;
  color: #f4efe6;
}

.blog-article-detail .site-menu {
  background: transparent;
  border-bottom-color: transparent;
}

.blog-article-detail .site-menu-nav a {
  color: rgba(244, 239, 230, 0.82);
}

.blog-article-detail .blog-page {
  padding-bottom: 0;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero {
  min-height: auto;
  padding: 90px max(24px, calc((100vw - 860px) / 2)) 60px;
  text-align: center;
  align-content: center;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero::before {
  background: none;
}

.blog-article-detail .blog-article-hero img {
  display: none;
}

.blog-article-detail .blog-article-hero .blog-kicker {
  margin-inline: auto;
  letter-spacing: 0.3em;
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.4);
}

.blog-article-detail .blog-article-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
}

.blog-article-detail .blog-article-hero p:not(.blog-kicker) {
  max-width: 620px;
  margin-inline: auto;
  color: #d0d8e4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.blog-article-detail .blog-content {
  max-width: none;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.blog-article-detail .blog-content > * {
  max-width: none;
}

.blog-article-detail .blog-content > .intro-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 70px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content > .intro-block p {
  margin: 0;
  padding: 0;
  border: 0;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.9;
}

.blog-article-detail .blog-content strong {
  color: #e2c47a;
  font-weight: 500;
}

.blog-article-detail .blog-content .band {
  width: 100%;
  margin: 0;
  padding: 70px 0;
  transform: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content .band-navy {
  background: #0b1628;
}

.blog-article-detail .blog-content .band-cream {
  background: #ede8df;
}

.blog-article-detail .blog-content .band-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-article-detail .blog-content .step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
}

.blog-article-detail .blog-content .step-number {
  flex-shrink: 0;
  margin-top: -8px;
  color: #c9a84c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.35;
}

.blog-article-detail .blog-content .step-label,
.blog-article-detail .blog-content .callout-title,
.blog-article-detail .blog-content .case-study-badge,
.blog-article-detail .blog-content .stat-label,
.blog-article-detail .blog-content .case-item-label {
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .step-label {
  margin-bottom: 6px;
  letter-spacing: 0.3em;
}

.blog-article-detail .blog-content .step-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.blog-article-detail .blog-content .step-content p,
.blog-article-detail .blog-content li {
  color: #d0d8e4;
  font-size: 0.97rem;
  line-height: 1.8;
}

.blog-article-detail .blog-content .step-content p {
  margin-bottom: 16px;
}

.blog-article-detail .blog-content .band-cream .step-title,
.blog-article-detail .blog-content .band-cream h3,
.blog-article-detail .blog-content .band-cream .stat-num,
.blog-article-detail .blog-content .band-cream .case-item-val,
.blog-article-detail .blog-content .band-cream .cta-block h2 {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .step-content p,
.blog-article-detail .blog-content .band-cream li,
.blog-article-detail .blog-content .band-cream td,
.blog-article-detail .blog-content .band-cream .pillar-card p,
.blog-article-detail .blog-content .band-cream .callout p,
.blog-article-detail .blog-content .band-cream .case-item-sub,
.blog-article-detail .blog-content .band-cream .sub {
  color: #2a3a52;
}

.blog-article-detail .blog-content .band-cream strong {
  color: #0b1628;
}

.blog-article-detail .blog-content .callout,
.blog-article-detail .blog-content .pillar-card,
.blog-article-detail .blog-content .case-study,
.blog-article-detail .blog-content .cta-block {
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-left: 3px solid rgba(201, 168, 76, 0.65);
  border-radius: 4px;
  box-shadow: none;
}

.blog-article-detail .blog-content .callout,
.blog-article-detail .blog-content .pillar-card {
  padding: 24px 26px;
  margin: 28px 0;
}

.blog-article-detail .blog-content .band-cream .callout,
.blog-article-detail .blog-content .band-cream .pillar-card,
.blog-article-detail .blog-content .band-cream .cta-block {
  background: #fff;
  border-color: rgba(11, 22, 40, 0.1);
  border-left-color: #c9a84c;
}

.blog-article-detail .blog-content .pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.blog-article-detail .blog-content .pillar-card {
  margin: 0;
}

.blog-article-detail .blog-content .wide-card {
  margin: 32px 0;
}

.blog-article-detail .blog-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.blog-article-detail .blog-content .stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 0;
}

.blog-article-detail .blog-content .stat,
.blog-article-detail .blog-content .case-item {
  padding: 24px 20px;
  text-align: center;
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
}

.blog-article-detail .blog-content .band-cream .stat {
  background: #fff;
  border-color: rgba(11, 22, 40, 0.1);
}

.blog-article-detail .blog-content .stat-num,
.blog-article-detail .blog-content .case-item-val {
  display: block;
  color: #e2c47a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.blog-article-detail .blog-content .stat-label,
.blog-article-detail .blog-content .case-item-label {
  display: block;
  margin-top: 8px;
}

.blog-article-detail .blog-content .avantages {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}

.blog-article-detail .blog-content .avantages li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.16);
}

.blog-article-detail .blog-content .avantages li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c9a84c;
}

.blog-article-detail .blog-content .band-cream .avantages {
  border-top-color: rgba(11, 22, 40, 0.12);
}

.blog-article-detail .blog-content .band-cream .avantages li {
  border-bottom-color: rgba(11, 22, 40, 0.1);
}

.blog-article-detail .blog-content .case-study {
  padding: 34px;
  margin: 32px 0;
}

.blog-article-detail .blog-content .case-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.blog-article-detail .blog-content .case-item-sub,
.blog-article-detail .blog-content .case-note {
  color: #a8b4c4;
  font-size: 0.85rem;
}

.blog-article-detail .blog-content .case-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.16);
}

.blog-article-detail .blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: #142035;
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.88rem;
}

.blog-article-detail .blog-content th {
  padding: 12px 14px;
  background: #1e3050;
  color: #c9a84c;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: left;
  text-transform: uppercase;
}

.blog-article-detail .blog-content td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  color: #d0d8e4;
  vertical-align: top;
}

.blog-article-detail .blog-content .cta-block {
  margin: 42px 0 0;
  padding: 38px 40px;
  text-align: center;
}

.blog-article-detail .blog-content .cta-block h2 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: #0b1628;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.blog-article-detail .blog-content .cta-block .pre {
  margin: 0 0 10px;
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .cta-block .sub {
  max-width: 480px;
  margin: 0 auto 24px;
  color: #2a3a52;
}

.blog-article-detail .blog-content .cta-btn {
  display: inline-block;
  padding: 12px 24px;
  color: #0b1628;
  text-decoration: none;
  border: 1px solid #c9a84c;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-article-detail .blog-content .disclaimer {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 22, 40, 0.15);
  color: #596a80;
  font-size: 0.84rem;
  line-height: 1.65;
}

.blog-article-detail .blog-content .section-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 58px;
}

.blog-article-detail .blog-content .section-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.28);
}

.blog-article-detail .blog-content .sr-num {
  color: #c9a84c;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .prose {
  max-width: 820px;
}

.blog-article-detail .blog-content .pull-quote {
  background: rgba(201, 168, 76, 0.12);
  border-left-color: #c9a84c;
  color: #fff;
}

.blog-article-detail .blog-content .alloc-label,
.blog-article-detail .blog-content .name,
.blog-article-detail .blog-content .city-name-main {
  color: #fff;
}

.blog-article-detail .blog-content .alloc-sub,
.blog-article-detail .blog-content .bio,
.blog-article-detail .blog-content .case-item-sub {
  color: #a8b4c4;
}

.blog-article-detail .blog-content .alloc-bar-wrap {
  background: rgba(255, 255, 255, 0.12);
}

.blog-article-detail .blog-content .risk-labels {
  color: #a8b4c4;
}

.blog-article-detail {
  background: #0b1628;
  color: #f4efe6;
}

.blog-article-detail .site-menu {
  background: transparent;
  border-bottom-color: transparent;
}

.blog-article-detail .site-menu-nav a {
  color: rgba(244, 239, 230, 0.82);
}

.blog-article-detail .blog-page {
  padding-bottom: 0;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero {
  min-height: auto;
  padding: 90px max(24px, calc((100vw - 860px) / 2)) 60px;
  text-align: center;
  align-content: center;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero::before {
  background: none;
}

.blog-article-detail .blog-article-hero img {
  display: none;
}

.blog-article-detail .blog-article-hero .blog-kicker {
  margin-inline: auto;
  letter-spacing: 0.3em;
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.4);
}

.blog-article-detail .blog-article-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
}

.blog-article-detail .blog-article-hero p:not(.blog-kicker) {
  max-width: 620px;
  margin-inline: auto;
  color: #d0d8e4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.blog-article-detail .blog-content {
  max-width: none;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.blog-article-detail .blog-content > * {
  max-width: none;
}

.blog-article-detail .blog-content > .intro-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 70px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content > .intro-block p {
  margin: 0;
  padding: 0;
  border: 0;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.9;
}

.blog-article-detail .blog-content strong {
  color: #e2c47a;
  font-weight: 500;
}

.blog-article-detail .blog-content .band {
  width: 100%;
  margin: 0;
  padding: 70px 0;
  transform: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content .band-navy {
  background: #0b1628;
}

.blog-article-detail .blog-content .band-cream {
  background: #ede8df;
}

.blog-article-detail .blog-content .band-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-article-detail .blog-content .step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
}

.blog-article-detail .blog-content .step-number {
  flex-shrink: 0;
  margin-top: -8px;
  color: #c9a84c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.35;
}

.blog-article-detail .blog-content .step-label {
  margin-bottom: 6px;
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .step-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.blog-article-detail .blog-content .step-content p,
.blog-article-detail .blog-content li {
  color: #d0d8e4;
  font-size: 0.97rem;
  line-height: 1.8;
}

.blog-article-detail .blog-content .step-content p {
  margin-bottom: 16px;
}

.blog-article-detail .blog-content .band-cream .step-title,
.blog-article-detail .blog-content .band-cream .sv,
.blog-article-detail .blog-content .band-cream .alloc-label,
.blog-article-detail .blog-content .band-cream .name,
.blog-article-detail .blog-content .band-cream h4 {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .step-content p,
.blog-article-detail .blog-content .band-cream li,
.blog-article-detail .blog-content .band-cream td,
.blog-article-detail .blog-content .band-cream .sd,
.blog-article-detail .blog-content .band-cream .alloc-sub,
.blog-article-detail .blog-content .band-cream .bio,
.blog-article-detail .blog-content .band-cream .info-card p {
  color: #2a3a52;
}

.blog-article-detail .blog-content .band-cream strong {
  color: #0b1628;
}

.blog-article-detail .blog-content .stats-grid,
.blog-article-detail .blog-content .info-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.blog-article-detail .blog-content .stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-article-detail .blog-content .stat-card,
.blog-article-detail .blog-content .info-card,
.blog-article-detail .blog-content .gerant-card,
.blog-article-detail .blog-content .alloc-section {
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
  box-shadow: none;
}

.blog-article-detail .blog-content .band-cream .stat-card,
.blog-article-detail .blog-content .band-cream .info-card,
.blog-article-detail .blog-content .band-cream .alloc-section {
  background: #fff;
  border-color: rgba(11, 22, 40, 0.1);
}

.blog-article-detail .blog-content .stat-card {
  padding: 24px 20px;
  text-align: center;
}

.blog-article-detail .blog-content .sv {
  color: #e2c47a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
}

.blog-article-detail .blog-content .sv.pos {
  color: #7ec8a0;
}

.blog-article-detail .blog-content .sl {
  color: #c9a84c;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .sd {
  color: #a8b4c4;
  font-size: 0.85rem;
}

.blog-article-detail .blog-content .pull-quote {
  margin: 40px 0 0;
  padding: 28px 32px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 3px solid #c9a84c;
  color: #0b1628;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-style: italic;
  line-height: 1.7;
}

.blog-article-detail .blog-content .pull-quote p {
  margin: 0;
  color: #0b1628;
}

.blog-article-detail .blog-content .alloc-section {
  overflow: hidden;
  margin: 32px 0;
}

.blog-article-detail .blog-content .alloc-header {
  padding: 14px 22px;
  color: #c9a84c;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.blog-article-detail .blog-content .alloc-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) minmax(160px, 2fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.blog-article-detail .blog-content .alloc-row:last-child {
  border-bottom: 0;
}

.blog-article-detail .blog-content .alloc-label,
.blog-article-detail .blog-content .name {
  color: #fff;
  font-weight: 600;
}

.blog-article-detail .blog-content .alloc-sub,
.blog-article-detail .blog-content .bio {
  color: #a8b4c4;
}

.blog-article-detail .blog-content .alloc-pct {
  color: #e2c47a;
  font-weight: 600;
  white-space: nowrap;
}

.blog-article-detail .blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.88rem;
}

.blog-article-detail .blog-content th {
  padding: 12px 14px;
  background: #0b1628;
  color: #c9a84c;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: left;
  text-transform: uppercase;
}

.blog-article-detail .blog-content td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(11, 22, 40, 0.08);
  color: #2a3a52;
  vertical-align: top;
}

.blog-article-detail .blog-content .cat-row td {
  background: transparent;
  color: #8a6b2d;
  font-weight: 700;
}

.blog-article-detail .blog-content .gerant-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
  margin-top: 32px;
}

.blog-article-detail .blog-content .gerant-avatars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-article-detail .blog-content .gerant-avatar {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #e2c47a;
}

.blog-article-detail .blog-content .role,
.blog-article-detail .blog-content .mandarine-tag {
  color: #c9a84c;
  font-size: 0.85rem;
}

.blog-article-detail .blog-content .risk-band {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin: 32px 0 12px;
}

.blog-article-detail .blog-content .risk-segment {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.blog-article-detail .blog-content .risk-segment.active3 {
  background: #c9a84c;
}

.blog-article-detail .blog-content .risk-labels {
  display: flex;
  justify-content: space-between;
  color: #a8b4c4;
  font-size: 0.85rem;
}

.blog-article-detail .blog-content .info-card {
  padding: 24px 26px;
}

.blog-article-detail .blog-content .info-card h4 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.blog-article-detail .blog-content .info-card p {
  margin: 0;
  color: #d0d8e4;
}

.blog-article-detail .blog-content .disclaimer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 22, 40, 0.15);
  color: #596a80;
  font-size: 0.84rem;
  line-height: 1.65;
}

.blog-article-detail .blog-content .stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: rgba(201, 168, 76, 0.18);
}

.blog-article-detail .blog-content .section-header {
  margin-top: 56px;
  margin-bottom: 28px;
}

.blog-article-detail .blog-content .implantation-list,
.blog-article-detail .blog-content .monthly-list,
.blog-article-detail .blog-content .tools-list {
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}

.blog-article-detail .blog-content .philosophy-block {
  margin-top: 58px;
  padding: 42px;
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
}

.blog-article-detail .blog-content .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-article-detail {
  background: #0b1628;
  color: #f4efe6;
}

.blog-article-detail .site-menu {
  background: transparent;
  border-bottom-color: transparent;
}

.blog-article-detail .site-menu-nav a {
  color: rgba(244, 239, 230, 0.82);
}

.blog-article-detail .blog-page {
  padding-bottom: 0;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero {
  min-height: auto;
  padding: 90px max(24px, calc((100vw - 860px) / 2)) 60px;
  text-align: center;
  align-content: center;
  background: #0b1628;
}

.blog-article-detail .blog-article-hero::before {
  background: none;
}

.blog-article-detail .blog-article-hero img {
  display: none;
}

.blog-article-detail .blog-article-hero .blog-kicker {
  margin-inline: auto;
  letter-spacing: 0.3em;
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.4);
}

.blog-article-detail .blog-article-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
}

.blog-article-detail .blog-article-hero p:not(.blog-kicker) {
  max-width: 620px;
  margin-inline: auto;
  color: #d0d8e4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.blog-article-detail .blog-content {
  max-width: none;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.blog-article-detail .blog-content > * {
  max-width: none;
}

.blog-article-detail .blog-content > .intro-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 48px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content > .intro-block p {
  margin: 0;
  padding: 0;
  border: 0;
  color: #d0d8e4;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.9;
}

.blog-article-detail .blog-content strong {
  color: #e2c47a;
  font-weight: 500;
}

.blog-article-detail .blog-content > .stats-band {
  max-width: 860px;
  margin: 0 auto 70px;
  padding: 0 40px;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}

.blog-article-detail .blog-content .stat-item,
.blog-article-detail .blog-content .philosophy-item {
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: #d0d8e4;
  box-shadow: none;
}

.blog-article-detail .blog-content .stat-item {
  padding: 28px 22px;
  text-align: center;
}

.blog-article-detail .blog-content .stat-number {
  display: block;
  margin-bottom: 8px;
  color: #e2c47a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.blog-article-detail .blog-content .stat-label {
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .band {
  width: 100%;
  margin: 0;
  padding: 70px 0;
  transform: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content .band-navy {
  background: #0b1628;
}

.blog-article-detail .blog-content .band-cream {
  background: #ede8df;
}

.blog-article-detail .blog-content .band-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-article-detail .blog-content .step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
}

.blog-article-detail .blog-content .step-number {
  flex-shrink: 0;
  margin-top: -8px;
  color: #c9a84c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.35;
}

.blog-article-detail .blog-content .step-label {
  margin-bottom: 6px;
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .step-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.blog-article-detail .blog-content .step-content p,
.blog-article-detail .blog-content li {
  color: #d0d8e4;
  font-size: 0.97rem;
  line-height: 1.8;
}

.blog-article-detail .blog-content .step-content p {
  margin-bottom: 16px;
}

.blog-article-detail .blog-content .band-cream .step-title,
.blog-article-detail .blog-content .band-cream .city-name-main {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .step-content p,
.blog-article-detail .blog-content .band-cream li,
.blog-article-detail .blog-content .band-cream .cabinet-list li,
.blog-article-detail .blog-content .band-cream .phi-text {
  color: #2a3a52;
}

.blog-article-detail .blog-content .band-cream strong {
  color: #0b1628;
}

.blog-article-detail .blog-content .implantation-block {
  margin: 32px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-article-detail .blog-content .implantation-list,
.blog-article-detail .blog-content .monthly-list,
.blog-article-detail .blog-content .tools-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.24);
}

.blog-article-detail .blog-content .band-cream .implantation-list,
.blog-article-detail .blog-content .band-cream .tools-list {
  border-top-color: rgba(11, 22, 40, 0.12);
}

.blog-article-detail .blog-content .implantation-list > li,
.blog-article-detail .blog-content .monthly-list > li,
.blog-article-detail .blog-content .tools-list > li {
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.blog-article-detail .blog-content .implantation-list > li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 18px 0;
}

.blog-article-detail .blog-content .implantation-list > li::before {
  display: none;
}

.blog-article-detail .blog-content .monthly-list > li,
.blog-article-detail .blog-content .tools-list > li {
  position: relative;
  padding: 16px 0 16px 24px;
}

.blog-article-detail .blog-content .monthly-list > li::before,
.blog-article-detail .blog-content .tools-list > li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  border-radius: 50%;
  background: #c9a84c;
}

.blog-article-detail .blog-content .monthly-list > li::before,
.blog-article-detail .blog-content .tools-list > li::before {
  position: absolute;
  left: 0;
}

.blog-article-detail .blog-content .band-cream .implantation-list > li,
.blog-article-detail .blog-content .band-cream .tools-list > li {
  border-bottom-color: rgba(11, 22, 40, 0.1);
}

.blog-article-detail .blog-content .city-name-main {
  color: #fff;
  font-weight: 600;
}

.blog-article-detail .blog-content .city-badge {
  margin-left: auto;
  padding: 3px 10px;
  align-self: center;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 2px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-article-detail .blog-content .cabinet-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin: 6px 0 0;
  padding-left: 23px;
  list-style: none;
}

.blog-article-detail .blog-content .cabinet-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.9rem;
}

.blog-article-detail .blog-content .cabinet-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #c9a84c;
}

.blog-article-detail .blog-content .cabinet-link {
  color: #8d6f21;
  text-decoration: none;
  border-bottom: 1px solid rgba(141, 111, 33, 0.4);
}

.blog-article-detail .blog-content .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.blog-article-detail .blog-content .philosophy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 4px;
}

.blog-article-detail .blog-content .phi-marker {
  flex: 0 0 auto;
  color: #e2c47a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
  opacity: 0.8;
}

.blog-article-detail .blog-content .phi-text {
  color: #d0d8e4;
  font-size: 0.94rem;
  line-height: 1.65;
}

.contact-lines-inline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0.3rem 0 0.6rem 0;
}

.contact-col {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #c8bca8;
  margin-bottom: 0.15rem;
}

.contact-line {
  margin: 0;
  font-size: 0.82rem;
}

.contact-line a {
  color: #f2e6c9;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #100f12;
  color: #f2e8dc;
  border-top: 1px solid rgba(214, 175, 78, 0.2);
}

.site-footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 1.35rem;
}

.site-footer-grid {
  display: grid;
  gap: 1.45rem;
}

.site-footer-column {
  min-width: 0;
}

.site-footer-column h3 {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0 0 0.55rem 0;
  color: #e0bb58;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer-cncgp-logo {
  display: block;
  width: min(100%, 8.25rem);
  height: auto;
  margin: 0.35rem 0 0.8rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.3rem;
}

.site-footer-column p,
.site-footer-links a {
  color: rgba(242, 232, 220, 0.9);
  font-size: 0.96rem;
  line-height: 1.72;
  text-decoration: none;
}

.site-footer-column p {
  margin: 0;
}

.site-footer-column p + p {
  margin-top: 0.5rem;
}

.site-footer-column a:hover,
.site-footer-column a:focus-visible,
.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  text-decoration: underline;
  color: #f2e6c9;
  outline: none;
}

.site-footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.site-footer-lines {
  margin: 0.8rem 0 0;
}

.site-footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 175, 78, 0.14);
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
}

.site-footer-bottom p,
.site-footer-bottom a {
  color: rgba(242, 232, 220, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer-bottom p {
  margin: 0;
}

.site-footer-bottom a:hover,
.site-footer-bottom a:focus-visible {
  color: #f6d98d;
  outline: none;
}

@media (min-width: 900px) {
  .site-menu {
    top: 0rem;
  }

  .site-menu-inner {
    padding: 0 1.4rem;
    min-height: 74px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .site-menu-logo {
    width: 100%;
    height: 100%;
    object-position: center;
    transform: none;
  }

  .site-menu-logo-link {
    width: 148px;
    height: 48px;
  }

  .site-menu-burger {
    display: none;
  }

  .site-menu-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.28rem;
    padding: 0.42rem;
    margin-left: auto;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: rgba(8, 7, 6, 0.82);
    box-shadow: none;
  }

  .site-lang-switch {
    margin-left: 0.35rem;
    background: rgba(247, 244, 239, 0.72);
  }

  .site-menu-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.01em;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    padding: 0.68rem 0.9rem;
    border-radius: 6px;
    white-space: nowrap;
  }

  .site-menu-nav a.is-active,
  .site-menu-nav a.is-current,
  .site-menu-nav a[aria-current="location"],
  .site-menu-nav a[aria-current="page"] {
    color: #1f140c;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .site-menu-nav a:hover,
  .site-menu-nav a:focus-visible {
    background: rgba(212, 175, 55, 0.14);
  }

  .site-menu-nav a[data-target="about-jp"][aria-current="location"] {
    background: rgba(190, 143, 58, 0.74);
  }

  .site-menu-nav a[data-target="accompagnement"][aria-current="location"] {
    background: rgba(179, 139, 82, 0.62);
  }

  .site-menu-nav a[data-target="confiance"][aria-current="location"] {
    background: rgba(200, 171, 123, 0.62);
  }

  .site-menu-nav a[data-target="expertises"][aria-current="location"] {
    background: rgba(151, 107, 55, 0.68);
  }

  .site-menu-nav a[data-target="contact"][aria-current="location"] {
    background: rgba(213, 184, 134, 0.62);
  }

  .site-menu-nav a.is-current,
  .site-menu-nav a[aria-current="page"] {
    background: rgba(213, 184, 134, 0.62);
  }

  .blog-article-detail .blog-article-hero {
    padding-right: max(32px, calc((100vw - 1120px) / 2));
    padding-left: max(32px, calc((100vw - 1120px) / 2));
  }

  .blog-article-detail .blog-article-hero h1 {
    max-width: 1120px;
  }

  .blog-article-detail .blog-article-hero p:not(.blog-kicker) {
    max-width: 760px;
  }

  .site-footer-inner {
    width: min(1220px, calc(100% - 3rem));
    padding: 3.6rem 0 1.5rem;
  }

  .site-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .site-footer-lines {
    display: block;
  }

  .site-footer-lines .contact-col + .contact-col {
    margin-top: 0.8rem;
  }

  .site-footer-lines .contact-line a {
    display: inline-block;
  }

  .site-footer-lines .contact-line a + a {
    margin-top: 0.25rem;
  }

  .site-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.1rem;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }

  .site-footer-bottom a {
    justify-self: end;
  }
}

@media (max-width: 899px) {
  .site-footer-lines {
    display: block;
  }

  .site-footer-lines .contact-col + .contact-col {
    margin-top: 0.8rem;
  }
}

@media (max-width: 760px) {
  .site-menu-inner {
    min-height: 64px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1rem;
    gap: 0.8rem;
  }

  .blog-page {
    padding-top: 54px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
    background: transparent;
  }

  .blog-hero h1,
  .blog-hero-service > p {
    max-width: none;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: auto;
  }

  .blog-card-image img {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .blog-card-body {
    padding: 22px;
  }

  .blog-article-nav {
    margin-top: -22px;
    padding-inline: 22px;
  }

  .blog-floating-contact {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 0 1rem;
  }

  .blog-floating-contact .floating-contact-icon {
    width: 18px;
    height: 18px;
  }

  .blog-floating-contact .floating-contact-label {
    font-size: 0.84rem;
  }

  .blog-article-hero img {
    aspect-ratio: 4 / 3;
  }

  .blog-content {
    font-size: 0.98rem;
  }

  .blog-content .callout,
  .blog-content .schema-card,
  .blog-content .case-study,
  .blog-content .pull-quote,
  .blog-content .cta-block,
  .blog-content .intro-block,
  .blog-content .conclusion-box,
  .blog-content .note-box {
    padding: 20px;
  }

  .blog-content .band-inner {
    padding: 22px;
  }

  .blog-content .gerant-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-article-detail .blog-content .step-header {
    display: grid;
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 24px;
  }

  .blog-article-detail .blog-content .step-number {
    margin-top: -0.18rem;
    transform: translateX(-0.35rem);
    font-size: 2.65rem;
    line-height: 0.92;
  }

  .blog-article-detail .blog-content .step-title-block {
    min-width: 0;
  }

  .blog-article-detail .blog-content .step-label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    line-height: 1.25;
  }

  .blog-article-detail .blog-content .step-title {
    font-size: clamp(1.35rem, 6vw, 1.72rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .blog-content .schema-arrow {
    display: none;
  }

  .blog-content .alloc-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .blog-article-detail .blog-content .alloc-section {
    margin: 24px 0;
    border-radius: 8px;
  }

  .blog-article-detail .blog-content .alloc-header {
    padding: 14px 16px;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .blog-article-detail .blog-content .alloc-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy pct"
      "bar bar";
    gap: 10px 12px;
    align-items: start;
    padding: 16px;
  }

  .blog-article-detail .blog-content .alloc-row > div:first-child {
    grid-area: copy;
    min-width: 0;
  }

  .blog-article-detail .blog-content .alloc-label {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .blog-article-detail .blog-content .alloc-sub {
    margin-top: 0.25rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .blog-article-detail .blog-content .alloc-pct {
    grid-area: pct;
    align-self: start;
    padding: 0.25rem 0.48rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.14);
    font-size: 0.82rem;
    line-height: 1;
  }

  .blog-article-detail .blog-content .alloc-bar-wrap {
    grid-area: bar;
    width: 100%;
    height: 12px;
  }

  .blog-article-detail .blog-content table.detail-table {
    display: block;
    margin: 24px 0;
    border-radius: 8px;
    background: transparent;
    overflow: visible;
  }

  .blog-article-detail .blog-content table.detail-table thead {
    display: none;
  }

  .blog-article-detail .blog-content table.detail-table tbody {
    display: grid;
    gap: 10px;
  }

  .blog-article-detail .blog-content table.detail-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 14px;
    border: 1px solid rgba(11, 22, 40, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(11, 22, 40, 0.06);
  }

  .blog-article-detail .blog-content table.detail-table td {
    display: block;
    padding: 0;
    border: 0;
    color: #2a3a52;
  }

  .blog-article-detail .blog-content table.detail-table td::before {
    display: block;
    margin-bottom: 0.2rem;
    color: #8a6b2d;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .blog-article-detail .blog-content table.detail-table td:nth-child(1) {
    grid-column: 1 / -1;
    font-weight: 700;
  }

  .blog-article-detail .blog-content table.detail-table td:nth-child(1)::before {
    content: "Support";
  }

  .blog-article-detail .blog-content table.detail-table td:nth-child(2) {
    grid-column: 1;
    font-size: 0.86rem;
  }

  .blog-article-detail .blog-content table.detail-table td:nth-child(2)::before {
    content: "Zone / stratégie";
  }

  .blog-article-detail .blog-content table.detail-table td:nth-child(3) {
    grid-column: 2;
    align-self: end;
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.14);
    color: #8a6b2d;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .blog-article-detail .blog-content table.detail-table td:nth-child(3)::before {
    content: none;
  }

  .blog-article-detail .blog-content table.detail-table tr.cat-row {
    display: block;
    padding: 11px 14px;
    border-color: rgba(201, 168, 76, 0.22);
    background: #0b1628;
    box-shadow: none;
  }

  .blog-article-detail .blog-content table.detail-table tr.cat-row td {
    display: none;
  }

  .blog-article-detail .blog-content table.detail-table tr.cat-row td:first-child {
    display: block;
    color: #c9a84c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .blog-article-detail .blog-content table.detail-table tr.cat-row td:first-child::before {
    content: none;
  }

  .blog-article-detail .blog-content > h2,
  .blog-article-detail .blog-content > h3,
  .blog-article-detail .blog-content > p,
  .blog-article-detail .blog-content > ul,
  .blog-article-detail .blog-content > table,
  .blog-article-detail .blog-content > .prose,
  .blog-article-detail .blog-content > .section-rule,
  .blog-article-detail .blog-content > table,
  .blog-article-detail .blog-content > .intro-block,
  .blog-article-detail .blog-content > .section-header,
  .blog-article-detail .blog-content > .body-text,
  .blog-article-detail .blog-content > .implantation-block,
  .blog-article-detail .blog-content > .monthly-list,
  .blog-article-detail .blog-content > .tools-list {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-article-detail .blog-content .stat-row,
  .blog-article-detail .blog-content .case-row,
  .blog-article-detail .blog-content .stats-grid,
  .blog-article-detail .blog-content .info-box,
  .blog-article-detail .blog-content .stats-band,
  .blog-article-detail .blog-content .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-detail .blog-content .stat-row {
    gap: 10px;
    margin-top: 24px;
  }

  .blog-article-detail .blog-content .pillar-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
  }

  .blog-article-detail .blog-content .band-cream .step-section:has(.pillar-grid + .stat-row) {
    display: flex;
    flex-direction: column;
  }

  .blog-article-detail .blog-content .band-cream .pillar-grid:has(+ .stat-row),
  .blog-article-detail .blog-content .band-cream .pillar-grid + .stat-row {
    display: contents;
  }

  .blog-article-detail .blog-content .band-cream .pillar-grid:has(+ .stat-row) .pillar-card:nth-child(1) {
    order: 10;
  }

  .blog-article-detail .blog-content .band-cream .pillar-grid:has(+ .stat-row) + .stat-row .stat:nth-child(1) {
    order: 11;
  }

  .blog-article-detail .blog-content .band-cream .pillar-grid:has(+ .stat-row) .pillar-card:nth-child(2) {
    order: 20;
  }

  .blog-article-detail .blog-content .band-cream .pillar-grid:has(+ .stat-row) + .stat-row .stat:nth-child(2) {
    order: 21;
  }

  .blog-article-detail .blog-content .band-cream .pillar-grid:has(+ .stat-row) .pillar-card:nth-child(3) {
    order: 30;
  }

  .blog-article-detail .blog-content .band-cream .pillar-grid:has(+ .stat-row) + .stat-row .stat:nth-child(3) {
    order: 31;
  }

  .blog-article-detail .blog-content .pillar-card {
    padding: 16px 18px;
  }

  .blog-article-detail .blog-content .pillar-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .blog-article-detail .blog-content .pillar-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .blog-article-detail .blog-content .stat-row .stat {
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: -4px 0 12px;
    padding: 12px 16px;
    text-align: left;
    border-left-color: rgba(201, 168, 76, 0.35);
  }

  .blog-article-detail .blog-content .stat-row .stat-num {
    font-size: 1.55rem;
    line-height: 1;
    text-align: center;
  }

  .blog-article-detail .blog-content .stat-row .stat-label {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: left;
  }

  .blog-article-detail .blog-content table.rate-table {
    display: block;
    margin: 28px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .blog-article-detail .blog-content table.rate-table thead {
    display: none;
  }

  .blog-article-detail .blog-content table.rate-table tbody {
    display: grid;
    gap: 12px;
  }

  .blog-article-detail .blog-content table.rate-table tr {
    display: grid;
    gap: 0;
    padding: 14px 16px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-left: 3px solid rgba(201, 168, 76, 0.45);
    border-radius: 4px;
    background: rgba(20, 32, 53, 0.72);
  }

  .blog-article-detail .blog-content table.rate-table td {
    display: grid;
    grid-template-columns: minmax(7rem, 42%) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    padding: 9px 0;
    border: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.11);
    color: #d0d8e4;
  }

  .blog-article-detail .blog-content table.rate-table td:last-child {
    border-bottom: 0;
  }

  .blog-article-detail .blog-content table.rate-table td::before {
    color: #c9a84c;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .blog-article-detail .blog-content table.rate-table td:nth-child(1)::before {
    content: "Option";
  }

  .blog-article-detail .blog-content table.rate-table td:nth-child(2)::before {
    content: "Taux";
  }

  .blog-article-detail .blog-content table.rate-table td:nth-child(3)::before {
    content: "Interets/an";
  }

  .blog-article-detail .blog-content table.rate-table td:nth-child(4)::before {
    content: "Mensualite";
  }

  .blog-article-detail .blog-content .investment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
  }

  .blog-article-detail .blog-content .inv-card {
    padding: 18px 20px;
  }

  .blog-article-detail .blog-content .inv-card-type {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .blog-article-detail .blog-content .inv-card-name {
    margin-bottom: 8px;
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .blog-article-detail .blog-content .inv-card-rdt {
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .blog-article-detail .blog-content .inv-card-rdt span {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
  }

  .blog-article-detail .blog-content .inv-card-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .blog-article-detail .blog-content .schema-card {
    margin: 26px 0;
    padding: 18px 16px;
  }

  .blog-article-detail .blog-content .schema-title {
    margin-bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-align: left;
  }

  .blog-article-detail .blog-content .schema-card table {
    display: block;
    margin: 18px 0;
    background: transparent;
    overflow: visible;
  }

  .blog-article-detail .blog-content .schema-card table thead {
    display: none;
  }

  .blog-article-detail .blog-content .schema-card table tbody {
    display: grid;
    gap: 10px;
  }

  .blog-article-detail .blog-content .schema-card table tr {
    display: grid;
    gap: 0;
    padding: 13px 15px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-left: 3px solid rgba(201, 168, 76, 0.42);
    border-radius: 4px;
    background: rgba(11, 22, 40, 0.42);
  }

  .blog-article-detail .blog-content .schema-card table td {
    display: grid;
    grid-template-columns: minmax(7.5rem, 45%) minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    line-height: 1.35;
  }

  .blog-article-detail .blog-content .schema-card table td:last-child {
    border-bottom: 0;
  }

  .blog-article-detail .blog-content .schema-card table td::before {
    color: #c9a84c;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .blog-article-detail .blog-content .schema-card table td:nth-child(1)::before {
    content: "Tranche";
  }

  .blog-article-detail .blog-content .schema-card table td:nth-child(2)::before {
    content: "Taux IS";
  }

  .blog-article-detail .blog-content .schema-card table td:nth-child(3)::before {
    content: "Illustration";
  }

  .blog-article-detail .blog-content .schema-card table td:nth-child(4)::before {
    content: "IS du";
  }

  .blog-article-detail .blog-content .schema-card table td[colspan] {
    grid-template-columns: 1fr;
  }

  .blog-article-detail .blog-content .schema-card table td[colspan]::before {
    content: none;
  }

  .blog-article-detail .blog-content .schema-card > div:last-child {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .blog-article-detail .blog-content .example-section {
    margin: 34px 0;
    padding: 20px 16px;
  }

  .blog-article-detail .blog-content .example-subtitle {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }

  .blog-article-detail .blog-content .example-title {
    font-size: 1.32rem;
    line-height: 1.18;
  }

  .blog-article-detail .blog-content .example-assumption,
  .blog-article-detail .blog-content .comparison-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0;
  }

  .blog-article-detail .blog-content .assump-box,
  .blog-article-detail .blog-content .comp-box {
    padding: 16px 18px;
    text-align: left;
  }

  .blog-article-detail .blog-content .assump-value,
  .blog-article-detail .blog-content .comp-value {
    font-size: 1.22rem;
    line-height: 1.2;
  }

  .blog-article-detail .blog-content .example-section table {
    display: block;
    margin: 22px 0;
    background: transparent;
    overflow: visible;
  }

  .blog-article-detail .blog-content .example-section table thead {
    display: none;
  }

  .blog-article-detail .blog-content .example-section table tbody {
    display: grid;
    gap: 10px;
  }

  .blog-article-detail .blog-content .example-section table tr {
    display: grid;
    padding: 13px 15px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-left: 3px solid rgba(201, 168, 76, 0.42);
    border-radius: 4px;
    background: rgba(11, 22, 40, 0.42);
  }

  .blog-article-detail .blog-content .example-section table td {
    display: grid;
    grid-template-columns: minmax(7.4rem, 44%) minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    line-height: 1.35;
  }

  .blog-article-detail .blog-content .example-section table td:last-child {
    border-bottom: 0;
  }

  .blog-article-detail .blog-content .example-section table td::before {
    color: #c9a84c;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(1) td:nth-child(1)::before {
    content: "Poste";
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(1) td:nth-child(2)::before {
    content: "Montant brut";
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(1) td:nth-child(3)::before {
    content: "Fiscalite IS";
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(1) td:nth-child(4)::before {
    content: "Net societe";
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(2) td:nth-child(1)::before {
    content: "Scenario";
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(2) td:nth-child(2)::before {
    content: "Capital initial";
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(2) td:nth-child(3)::before {
    content: "Rendement net";
  }

  .blog-article-detail .blog-content .example-section table:nth-of-type(2) td:nth-child(4)::before {
    content: "Capital estime";
  }

  .blog-article-detail .blog-content .example-section table td[colspan] {
    grid-template-columns: 1fr;
  }

  .blog-article-detail .blog-content .example-section table td[colspan]::before {
    content: none;
  }

  .blog-article-detail .blog-content .divider-note,
  .blog-article-detail .blog-content .example-section > div:last-child {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .blog-article-detail .blog-content .section-rule {
    align-items: flex-start;
    gap: 10px;
    margin-top: 44px;
  }

  .blog-article-detail .blog-content .section-rule::after {
    display: none;
  }

  .blog-article-detail .blog-content .sr-num {
    flex: 0 0 auto;
    min-width: 1.45rem;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    transform: translateY(0.18rem);
  }

  .blog-article-detail .blog-content .section-rule h2 {
    min-width: 0;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.08;
  }
}

@media (min-width: 900px) {
  body.blog-article-detail .blog-article-hero {
    padding-right: max(28px, calc((100vw - 1320px) / 2));
    padding-left: max(28px, calc((100vw - 1320px) / 2));
  }

  body.blog-article-detail .blog-article-hero h1 {
    max-width: min(1320px, 100%);
  }
}

.blog-article-detail .blog-content .schema-card .schema-box-sub,
.blog-article-detail .blog-content .schema-card .schema-center-sub,
.blog-article-detail .blog-content .schema-card > div:last-child {
  color: #f2f6fb;
}

.blog-article-detail .blog-content .band-navy table {
  background: #142035;
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: none;
}

.blog-article-detail .blog-content .band-navy th {
  background: #1e3050;
  color: #e2c47a;
}

.blog-article-detail .blog-content .band-navy td {
  border-bottom-color: rgba(201, 168, 76, 0.14);
  color: #d0d8e4;
}

.blog-article-detail .blog-content .band-navy td:first-child {
  color: #f4efe6;
}

.blog-article-detail .blog-content .band-cream table {
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.08);
  box-shadow: none;
}

.blog-article-detail .blog-content .band-cream table tr {
  background: transparent;
}

.blog-article-detail .blog-content .band-cream th {
  background: #0b1628;
  color: #e2c47a;
}

.blog-article-detail .blog-content .band-cream td {
  border-bottom-color: rgba(11, 22, 40, 0.08);
  color: #2a3a52;
}

.blog-article-detail .blog-content .band-cream td:first-child {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .info-card h4 {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .info-card p {
  color: #2a3a52;
}

.blog-article-detail .blog-content .band-navy .cta-block h2 {
  color: #fffaf2;
}

.blog-article-detail .blog-content .band-navy .cta-block .sub {
  color: #d0d8e4;
}

.blog-article-detail .blog-content .band-navy .cta-btn {
  background: #e2c47a;
  border-color: #e2c47a;
  color: #0b1628;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.blog-article-detail .blog-content .band-navy .cta-btn:hover,
.blog-article-detail .blog-content .band-navy .cta-btn:focus-visible {
  background: #fff1b8;
  border-color: #fff1b8;
  color: #0b1628;
  outline: none;
}

.blog-article-detail .blog-content .band-cream .cta-block h2 {
  color: #0b1628;
}

.blog-article-detail .blog-content .band-cream .cta-block .sub {
  color: #2a3a52;
}

.blog-article-detail .blog-content .band-cream .cta-btn {
  background: #0b1628;
  border-color: #0b1628;
  color: #fffaf2;
}

.blog-article-detail .blog-content .band-cream .cta-btn:hover,
.blog-article-detail .blog-content .band-cream .cta-btn:focus-visible {
  background: #1e3050;
  border-color: #1e3050;
  color: #fffaf2;
  outline: none;
}

.blog-article-detail .blog-content .band-navy .schema-card .schema-box-sub,
.blog-article-detail .blog-content .band-navy .schema-card .schema-center-sub,
.blog-article-detail .blog-content .band-navy .schema-card > div:last-child {
  color: #dfe6ef;
}

.blog-article-detail .blog-content .band-cream .schema-card .schema-box-sub,
.blog-article-detail .blog-content .band-cream .schema-card .schema-center-sub,
.blog-article-detail .blog-content .band-cream .schema-card > div:last-child {
  color: #506176;
}

.blog-article-detail .blog-content table.rate-table {
  background: #142035;
  border-color: rgba(201, 168, 76, 0.22);
}

.blog-article-detail .blog-content table.rate-table th {
  background: #1e3050;
  color: #e2c47a;
}

.blog-article-detail .blog-content table.rate-table td {
  color: #eef2f7;
}

.blog-article-detail .blog-content table.rate-table td:first-child {
  color: #fff;
}
