.wi-blog-article-page {
  background: var(--color-white);
}

.wi-blog-breadcrumbs {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: 22px 0 0;
  color: #66736e;
  font: 600 13px/1.4 "Inter", system-ui, sans-serif;
}

.wi-blog-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wi-blog-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #98a39f;
}

.wi-blog-breadcrumbs a {
  color: var(--color-forest);
}

.wi-blog-article {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 0 80px;
}

.wi-blog-article-header {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.wi-blog-kicker {
  margin: 0 0 14px;
  color: var(--color-forest);
  font: 700 12px/1.4 "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

#main-content .wi-blog-article-header h1 {
  margin: 0;
  color: var(--color-forest) !important;
  font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
}

.wi-blog-deck {
  max-width: 700px;
  margin: 22px auto 0;
  color: #58635f;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.wi-blog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 22px;
  color: #69746f;
  font-size: 14px;
}

.wi-blog-hero-image {
  margin: 0 0 clamp(38px, 6vw, 62px);
}

#main-content .wi-blog-hero-image img {
  display: block;
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-subtle);
}

.wi-blog-content {
  max-width: 740px;
  margin: 0 auto;
  color: var(--color-charcoal);
  font-size: clamp(1rem, .35vw + .96rem, 1.125rem);
  line-height: 1.75;
}

.wi-blog-content > :first-child { margin-top: 0; }
.wi-blog-content > :last-child { margin-bottom: 0; }
.wi-blog-content p { margin: 0 0 1.25em; }
.wi-blog-content h2 { margin: 2.2em 0 .65em; }
.wi-blog-content h3 { margin: 1.8em 0 .55em; }
.wi-blog-content :where(ul, ol) { margin: 0 0 1.4em; padding-left: 1.4em; }
.wi-blog-content li { margin: .45em 0; }
.wi-blog-content a { color: var(--color-forest); font-weight: 650; text-underline-offset: 3px; }
.wi-blog-content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-gold);
  background: var(--color-ivory);
}
.wi-blog-content img {
  display: block;
  width: 100%;
  margin: 2rem auto;
  border-radius: 18px;
}
.wi-blog-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.wi-blog-author {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 740px;
  margin: 60px auto 0;
  padding: 24px;
  border: 1px solid var(--color-stone);
  border-radius: 18px;
  background: var(--color-ivory);
}

.wi-blog-author img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.wi-blog-author h2 { margin: 0 0 5px; font-size: 1.5rem !important; }
.wi-blog-author p { margin: 0; color: #58635f; line-height: 1.55; }
.wi-blog-author a { color: var(--color-forest); font-weight: 700; }

.wi-blog-related {
  max-width: 900px;
  margin: 54px auto 0;
}

.wi-blog-related h2 { margin: 0 0 18px; text-align: center; }
.wi-blog-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.wi-blog-related a {
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--color-stone);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
.wi-blog-related a:hover { background: var(--color-ivory); }

.wi-blog-consult {
  display: flex;
  max-width: 900px;
  margin: 54px auto 0;
  padding: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 22px;
  background: var(--color-forest);
  color: var(--color-white);
}
.wi-blog-consult h2 { margin: 0; color: var(--color-white) !important; font-size: 1.7rem !important; }
.wi-blog-consult p { margin: 7px 0 0; color: rgba(255, 255, 255, .84) !important; }
.wi-blog-consult a {
  flex: 0 0 auto;
  padding: 12px 17px;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 700px) {
  .wi-blog-related-grid { grid-template-columns: 1fr; }
  .wi-blog-related a { min-height: 72px; }
  .wi-blog-consult { align-items: stretch; flex-direction: column; }
  .wi-blog-consult a { text-align: center; }
}

@media (max-width: 480px) {
  .wi-blog-author { grid-template-columns: 68px minmax(0, 1fr); gap: 14px; padding: 18px; }
  .wi-blog-author img { width: 68px; height: 68px; }
  .wi-blog-meta { align-items: center; flex-direction: column; }
}
