.blog-page {
  --blog-dark: #10302a;
  --blog-green: #a4d519;
  --blog-cream: #f3f0e8;
  --blog-soft: #f7f9f6;
  --blog-muted: #66716d;
  --blog-border: rgba(16, 48, 42, .14);
  color: var(--tp-common-black-1, #111112);
  background: var(--blog-soft);
}

.blog-page a {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.blog-page a:focus-visible,
.blog-page summary:focus-visible {
  outline: 3px solid var(--blog-green);
  outline-offset: 4px;
}

.blog-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blog-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding-top: clamp(140px, 12vw, 170px);
  padding-bottom: 0;
  color: #030303;
  background: var(--blog-cream);
}

.blog-hero-big-title {
  max-width: 100%;
  margin-bottom: -28px;
  overflow: hidden;
  pointer-events: none;
}

.blog-hero-big-title span {
  display: block;
  max-width: 100%;
  font-size: clamp(58px, 8.8vw, 142px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.06em;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(16, 48, 42, .1) 0%, rgba(6, 18, 22, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blog-post-grid,
.blog-author-box {
  display: grid;
  gap: 48px;
}

.blog-hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 28px;
  z-index: 1;
}

.blog-hero-title-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px 34px;
  isolation: isolate;
  width: min(100%, 1040px);
  padding: 22px 28px 24px;
  border: 1px solid rgba(16, 48, 42, .06);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .42), rgba(248, 255, 244, .18));
  -webkit-backdrop-filter: blur(4px) saturate(124%);
  backdrop-filter: blur(4px) saturate(124%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42), 0 12px 30px rgba(16, 48, 42, .04);
}

.blog-hero-scroll a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(3, 3, 3, .24);
  border-radius: 50%;
  color: #030303;
  background: transparent;
}

.blog-hero .blog-kicker {
  margin-bottom: 10px;
  color: var(--blog-dark);
}

.blog-hero h1 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 7vw, 112px);
  line-height: .92;
  letter-spacing: -.07em;
}

.blog-hero h1 {
  max-width: 700px;
  color: #030303;
  font-family: var(--tp-ff-inter, inherit);
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.06em;
}

.blog-hero-content p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.blog-hero-content p {
  max-width: 600px;
  margin: 16px 0 0;
  color: rgba(16, 48, 42, .82);
  font-family: var(--tp-ff-inter, inherit);
  font-size: 17px;
  line-height: 1.42;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .56);
}

.blog-hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  max-width: 360px;
  margin-top: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(16, 48, 42, .14);
}

.blog-hero-actions::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 3px;
  height: 34px;
  border-radius: 999px;
  background: var(--blog-green);
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--blog-green);
  border-radius: 999px;
  color: var(--blog-dark);
  background: var(--blog-green);
  font-weight: 700;
  line-height: 1.1;
}

.blog-button:hover {
  color: var(--blog-dark);
  transform: translateY(-2px);
}

.blog-hero .blog-button {
  min-height: 52px;
  padding: 16px 23px;
  border-color: #030303;
  border-radius: 26px;
  color: #fff;
  background: #030303;
  font-family: var(--tp-ff-inter, inherit);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-hero .blog-button:hover {
  color: #fff;
  background: var(--blog-dark);
  border-color: var(--blog-dark);
}

.blog-card,
.blog-answer-summary,
.blog-takeaways,
.blog-author-box,
.blog-faq,
.blog-related-links,
.blog-toc,
.blog-empty-state {
  border: 1px solid var(--blog-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(16, 48, 42, .06);
}

.blog-section-card-header {
  display: grid;
  gap: 8px;
}

.blog-section-card-header .blog-kicker {
  margin-bottom: 0;
}

.blog-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.blog-section-heading h2,
.blog-answer-summary h2,
.blog-takeaways h2,
.blog-faq h2,
.blog-author-box h2,
.blog-related-posts h2,
.blog-toc h2,
.blog-related-links h2,
.blog-empty-state h3 {
  margin: 0;
  color: var(--blog-dark);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
}

.blog-answer-summary h2,
.blog-takeaways h2,
.blog-author-box h2,
.blog-related-links h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
}

.blog-section-heading p,
.blog-empty-state p,
.blog-answer-summary p,
.blog-author-box p,
.blog-section-card-header p,
.blog-toc p {
  margin: 16px 0 0;
  color: var(--blog-muted);
  font-size: 17px;
  line-height: 1.6;
}

.blog-featured-single,
.blog-card-grid {
  display: grid;
  gap: 24px;
}

.blog-featured-single {
  margin-bottom: 32px;
}

.blog-filter-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 48, 42, .08);
}

.blog-filter-panel__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 48, 42, .09);
  border-radius: 999px;
  color: var(--blog-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition: border-color .22s ease, color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.blog-filter-chip:hover,
.blog-filter-chip:focus-visible {
  color: var(--blog-dark);
  border-color: rgba(16, 48, 42, .16);
  background: rgba(16, 48, 42, .03);
}

.blog-filter-chip:focus-visible {
  outline: 2px solid rgba(16, 48, 42, .18);
  outline-offset: 2px;
}

.blog-filter-chip.is-active {
  border-color: rgba(16, 48, 42, .18);
  color: var(--blog-dark);
  background: rgba(16, 48, 42, .04);
  box-shadow: inset 0 0 0 1px rgba(16, 48, 42, .035);
}

.blog-filter-panel__status {
  margin: 0;
  color: var(--blog-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.case-study-card-highlight {
  margin: 0 0 12px;
  color: var(--blog-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case-study-card-featured-description {
  margin: 14px 0 0;
  color: var(--blog-muted);
  font-size: 16px;
  line-height: 1.6;
}

.case-study-card-featured-client {
  align-items: flex-start;
}

.blog-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  min-height: 100%;
  padding: 1px;
  border-radius: 14px;
  background: linear-gradient(rgba(157, 157, 157, .06) 0%, rgba(0, 0, 0, .06) 100%);
  box-shadow: 0 4px 4px rgba(23, 23, 23, .04);
  overflow: hidden;
}

.blog-card-surface {
  display: flex;
  min-height: 100%;
  padding: 14px;
  flex-direction: column;
  border-radius: 13px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover .blog-card-surface,
.blog-card:focus-within .blog-card-surface {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(23, 23, 23, .04);
}

.blog-card-surface:hover,
.blog-card-surface:focus-visible {
  color: inherit;
}

.blog-card-body,
.blog-card-copy {
  display: grid;
}

.blog-card-body {
  min-height: 100%;
  align-content: start;
}

.blog-card-copy {
  gap: 12px;
}

.blog-card-media {
  margin: 0 0 18px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .05);
  border-radius: 8px;
  background: #050505;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.blog-post-meta,
.blog-post-eyebrow,
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.blog-post-meta,
.blog-post-eyebrow {
  color: var(--blog-muted);
  font-size: 14px;
  font-weight: 700;
}

.blog-card h3 {
  margin: 0;
  color: var(--blog-dark);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.14;
  letter-spacing: -.03em;
}

.blog-card p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 15px;
  line-height: 1.6;
}

.blog-card-divider {
  height: 1px;
  margin: 18px 0 16px;
  background: linear-gradient(90deg, rgba(82, 82, 82, .2) 0%, rgba(82, 82, 82, .9) 48.0346%, rgba(82, 82, 82, .2) 100%);
  opacity: .15;
}

.blog-card-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-top: auto;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.blog-card-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.blog-card-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.blog-card-author-name,
.blog-card-info {
  font-size: 14px;
  line-height: 1.45;
}

.blog-card-author-name {
  color: var(--blog-dark);
  font-weight: 700;
}

.blog-card-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--blog-muted);
  font-weight: 600;
}

.blog-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(16, 48, 42, .08);
  border-radius: 6px;
  color: var(--blog-dark);
  background: rgba(16, 48, 42, .03);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}

.blog-card-featured-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-featured-link:hover,
.blog-card-featured-link:focus-visible {
  color: inherit;
}

.blog-featured-single .blog-card {
  min-height: auto;
  padding: clamp(14px, 1.8vw, 18px);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(16, 48, 42, .06);
}

.blog-featured-single .blog-card-media {
  margin-bottom: 0;
  padding: 0;
  border-color: rgba(16, 48, 42, .08);
  border-radius: 20px;
  background: #050505;
}

.blog-featured-single .blog-card-media img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-featured-body {
  padding: clamp(22px, 3vw, 30px) clamp(6px, 1vw, 12px) clamp(8px, 1vw, 10px);
}

.blog-featured-single .blog-card h3 {
  margin: 0;
  max-width: 860px;
  color: var(--blog-dark);
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.blog-card-featured-divider {
  height: 1px;
  margin: 22px 0 20px;
  background: rgba(16, 48, 42, .1);
}

.blog-card-featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
}

.blog-card-featured-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.blog-card-featured-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.blog-card-featured-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.blog-card-featured-author-copy {
  display: grid;
  gap: 2px;
}

.blog-card-featured-author-name {
  color: var(--blog-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.blog-card-featured-author-role,
.blog-card-featured-info {
  color: var(--blog-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.blog-card-featured-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.blog-card-featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(16, 48, 42, .1);
  border-radius: 999px;
  color: var(--blog-dark);
  background: rgba(16, 48, 42, .03);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

.blog-link {
  color: var(--blog-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.blog-index-section,
.blog-related-posts {
  padding: 110px 0;
}

.blog-post-sidebar {
  position: sticky;
  top: 110px;
}

.blog-empty-state,
.blog-answer-summary,
.blog-takeaways,
.blog-faq,
.blog-author-box,
.blog-related-links,
.blog-toc {
  padding: 30px;
}

.blog-related-links,
.blog-toc + .blog-related-links,
.blog-answer-summary + .blog-takeaways,
.blog-post-content + .blog-faq,
.blog-faq + .blog-author-box,
.blog-post-content + .blog-author-box {
  margin-top: 24px;
}

.blog-toc li + li {
  margin-top: 14px;
}

.blog-post-tags a {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid var(--blog-border);
  border-radius: 999px;
  color: var(--blog-dark);
  background: var(--blog-soft);
  font-size: 13px;
  font-weight: 800;
}

.blog-empty-state {
  padding: 42px;
}

.blog-post-hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding-top: clamp(140px, 12vw, 170px);
  padding-bottom: 0;
  color: #030303;
  background: var(--blog-cream);
}

.blog-post-hero-big-title {
  max-width: 100%;
  margin-bottom: -24px;
  overflow: hidden;
  pointer-events: none;
}

.blog-post-hero-big-title span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.06em;
  text-overflow: clip;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(16, 48, 42, .1) 0%, rgba(6, 18, 22, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blog-post-hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 28px;
  z-index: 1;
}

.blog-post-hero-title-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 28px 34px;
  isolation: isolate;
  width: min(100%, 1180px);
  padding: 24px 28px 26px;
  border: 1px solid rgba(16, 48, 42, .06);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .46), rgba(248, 255, 244, .18));
  -webkit-backdrop-filter: blur(4px) saturate(124%);
  backdrop-filter: blur(4px) saturate(124%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42), 0 12px 30px rgba(16, 48, 42, .04);
}

.blog-post-hero-scroll a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(3, 3, 3, .24);
  border-radius: 50%;
  color: #030303;
  background: transparent;
}

.blog-post-title {
  max-width: 760px;
  margin: 0;
  color: #030303;
  font-family: var(--tp-ff-inter, inherit);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.06em;
}

.blog-post-deck {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(16, 48, 42, .82);
  font-family: var(--tp-ff-inter, inherit);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.42;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .56);
}

.blog-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.blog-breadcrumb li,
.blog-breadcrumb a {
  color: rgba(16, 48, 42, .66);
  font-size: 14px;
  font-weight: 700;
}

.blog-breadcrumb li:not(:last-child)::after {
  margin-left: 10px;
  content: "/";
  color: rgba(16, 48, 42, .34);
}

.blog-post-eyebrow {
  margin-bottom: 12px;
  color: var(--blog-dark);
}

.blog-post-eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(16, 48, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  color: var(--blog-dark);
  line-height: 1;
}

.blog-post-hero-rail {
  position: relative;
  display: grid;
  gap: 20px;
  padding-left: 28px;
  border-left: 1px solid rgba(16, 48, 42, .14);
}

.blog-post-hero-rail::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 3px;
  height: 34px;
  border-radius: 999px;
  background: var(--blog-green);
}

.blog-post-meta {
  display: grid;
  gap: 8px;
  margin-top: 0;
  color: rgba(16, 48, 42, .82);
  font-family: var(--tp-ff-inter, inherit);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-post-meta span {
  display: block;
}

.blog-post-meta a {
  color: var(--blog-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-post-tags {
  gap: 8px;
  margin-top: 26px;
}

.blog-post-hero .blog-post-tags {
  margin-top: 0;
}

.blog-post-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(16, 48, 42, .12);
  border-radius: 999px;
  color: var(--blog-dark);
  background: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.blog-post-shell {
  padding: 44px 0 110px;
  background: #fff;
}

.blog-post-body-container {
  max-width: 1320px;
}

.blog-post-shell .blog-post-body-container {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(16, 48, 42, .08);
  border-radius: 32px;
  background: rgba(255, 255, 255, .94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 54px rgba(16, 48, 42, .04);
}

.blog-post-featured-media {
  margin: 0 0 clamp(36px, 5vw, 64px);
  padding: clamp(16px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(16, 48, 42, .08);
  border-radius: 28px;
  background: #050505;
  box-shadow: 0 18px 60px rgba(16, 48, 42, .06);
}

.blog-post-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.blog-post-grid {
  grid-template-columns: minmax(230px, 280px) minmax(0, 920px);
  gap: clamp(26px, 4vw, 48px);
  justify-content: center;
  align-items: start;
}

.blog-post-main {
  width: 100%;
  padding-left: clamp(26px, 4vw, 48px);
  border-left: 1px solid rgba(16, 48, 42, .12);
}

.blog-post-content {
  padding: 20px 0;
  color: #23302c;
  font-size: 19px;
  line-height: 1.78;
}

.blog-post-content > section,
.blog-post-content [id] {
  scroll-margin-top: 118px;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin: 58px 0 18px;
  color: var(--blog-dark);
  letter-spacing: -.04em;
}

.blog-post-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

.blog-post-content h3 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol,
.blog-post-content blockquote {
  margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 1.22em;
}

.blog-post-content ul {
  list-style: disc outside;
}

.blog-post-content ol {
  list-style-position: outside;
}

.blog-post-content li {
  padding-left: .28em;
  color: #23302c;
}

.blog-post-content li + li {
  margin-top: 10px;
}

.blog-post-content ul li::marker,
.blog-takeaways-list li::marker {
  color: var(--blog-green);
  font-size: .82em;
}

.blog-post-content a {
  color: var(--blog-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--blog-green);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.blog-post-content blockquote {
  padding: 28px 32px;
  border-left: 6px solid var(--blog-green);
  border-radius: 18px;
  color: var(--blog-dark);
  background: #fff;
  font-size: 22px;
  line-height: 1.45;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.blog-post-sidebar .blog-toc {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-share-box {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 48, 42, .12);
}

.blog-share-box h2 {
  margin-bottom: 16px;
  color: rgba(16, 48, 42, .58);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 48, 42, .12);
  border-radius: 999px;
  color: var(--blog-dark);
  background: rgba(255, 255, 255, .7);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.blog-share-link:hover,
.blog-share-link:focus-visible {
  color: var(--blog-dark);
  border-color: rgba(16, 48, 42, .2);
  background: rgba(16, 48, 42, .05);
  transform: translateY(-1px);
}

.blog-share-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.blog-post-sidebar .blog-toc h2 {
  margin-bottom: 18px;
  color: rgba(16, 48, 42, .58);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-toc ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-toc li + li {
  margin-top: 0;
}

.blog-toc a {
  display: block;
  padding: 11px 0 11px 14px;
  border-left: 1px solid #dfe6df;
  color: #66716d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-toc a:hover,
.blog-toc a:focus-visible,
.blog-toc a[aria-current] {
  border-left-color: var(--blog-dark);
  color: var(--blog-dark);
}

.blog-post-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.blog-post-content th,
.blog-post-content td {
  padding: 14px 16px;
  border: 1px solid var(--blog-border);
}

.blog-post-content th {
  color: var(--blog-dark);
  background: #f7f4ee;
}

.blog-answer-summary,
.blog-takeaways,
.blog-author-box,
.blog-related-links {
  border-color: rgba(16, 48, 42, .1);
  background: rgba(255, 255, 255, .94);
}

.blog-answer-summary {
  border-color: rgba(16, 48, 42, .12);
  background: rgba(255, 255, 255, .96);
}

.blog-answer-summary-text {
  max-width: 780px;
  color: #23302c !important;
  font-size: 20px !important;
  line-height: 1.62 !important;
}

.blog-takeaways-list {
  padding-left: 1.22em;
  margin: 22px 0 0;
  list-style: disc outside;
}

.blog-takeaways-list li {
  padding-left: .28em;
  color: #23302c;
}

.blog-takeaways-list li + li {
  margin-top: 10px;
}

.blog-faq-list {
  margin-top: 24px;
  border-top: 1px solid rgba(16, 48, 42, .12);
}

.blog-faq-item {
  border-bottom: 1px solid rgba(16, 48, 42, .12);
}

.blog-faq-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 26px 58px 26px 0;
  color: var(--blog-dark);
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.blog-faq-btn::-webkit-details-marker {
  display: none;
}

.blog-faq-count {
  flex: 0 0 auto;
  color: rgba(16, 48, 42, .52);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.blog-faq-question {
  min-width: 0;
}

.blog-faq-btn .accordion-btn {
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 48, 42, .16);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background .22s ease, border-color .22s ease;
}

.blog-faq-btn .accordion-btn::before,
.blog-faq-btn .accordion-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--blog-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.blog-faq-btn .accordion-btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-faq-item[open] .blog-faq-btn .accordion-btn {
  border-color: rgba(16, 48, 42, .24);
  background: var(--blog-dark);
}

.blog-faq-item[open] .blog-faq-btn .accordion-btn::before,
.blog-faq-item[open] .blog-faq-btn .accordion-btn::after {
  background: #fff;
}

.blog-faq-item[open] .blog-faq-btn .accordion-btn::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.blog-faq-btn:hover .accordion-btn,
.blog-faq-btn:focus-visible .accordion-btn {
  border-color: rgba(16, 48, 42, .28);
}

.blog-faq-item summary::after {
  display: none;
}

.blog-faq-answer {
  padding: 0 58px 26px 54px;
  color: var(--blog-muted);
  line-height: 1.65;
}

.blog-faq-answer p {
  margin: 0;
}

.blog-faq-answer p + p {
  margin-top: 14px;
}

.blog-related-link-card {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 84px;
  padding: 12px 13px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--blog-dark);
  background: transparent;
  text-decoration: none;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.blog-author-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.blog-author-media {
  display: inline-flex;
  flex: 0 0 88px;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  overflow: hidden;
  border: 1px solid rgba(16, 48, 42, .1);
  border-radius: 24px;
  color: var(--blog-dark);
  background: var(--blog-soft);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.blog-author-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-content {
  min-width: 0;
}

.blog-author-aside {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
}

.blog-author-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.blog-author-primary-link {
  display: flex;
  flex-wrap: wrap;
}

.blog-author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-author-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 48, 42, .1);
  border-radius: 999px;
  color: rgba(16, 48, 42, .58);
  background: rgba(16, 48, 42, .02);
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}

.blog-author-social-link:hover,
.blog-author-social-link:focus-visible {
  color: var(--blog-dark);
  border-color: rgba(16, 48, 42, .16);
  background: rgba(16, 48, 42, .05);
}

.blog-author-social-link svg {
  width: 15px;
  height: 15px;
  display: block;
}

.blog-author-role {
  color: var(--blog-dark) !important;
  font-weight: 800;
}

.blog-related-link-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.blog-related-link-card:hover,
.blog-related-link-card:focus-visible {
  color: var(--blog-dark);
  border-color: rgba(16, 48, 42, .08);
  background: rgba(16, 48, 42, .045);
  box-shadow: none;
}

.blog-related-link-copy {
  display: grid;
  flex: 1 1 auto;
  gap: 5px;
  min-width: 0;
}

.blog-related-link-label {
  font-size: 17px;
  font-weight: 850;
  line-height: 1.24;
}

.blog-related-link-description {
  color: var(--blog-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.blog-related-link-arrow {
  flex: 0 0 auto;
  color: rgba(16, 48, 42, .42);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: color .22s ease, transform .22s ease;
}

.blog-related-link-card:hover .blog-related-link-arrow,
.blog-related-link-card:focus-visible .blog-related-link-arrow {
  color: rgba(16, 48, 42, .42);
  transform: translateX(2px);
}

.blog-related-posts {
  position: relative;
  background: #fff;
}

.blog-related-posts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), 1320px);
  border-top: 1px solid rgba(16, 48, 42, .1);
  transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .blog-card-meta-row,
  .blog-card-featured-meta {
    align-items: flex-start;
  }

  .blog-card-info,
  .blog-card-featured-info {
    justify-content: flex-start;
  }

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

  .blog-hero-content {
    gap: 20px;
  }

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

  .blog-post-hero-content {
    gap: 20px;
  }

  .blog-post-hero-title-wrap {
    grid-template-columns: 1fr;
  }

  .blog-hero-actions {
    max-width: none;
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(16, 48, 42, .14);
    border-left: 0;
  }

  .blog-hero-actions::before {
    top: -2px;
    bottom: auto;
    left: 0;
    width: 34px;
    height: 3px;
  }

  .blog-post-hero-rail {
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(16, 48, 42, .14);
    border-left: 0;
  }

  .blog-post-hero-rail::before {
    top: -2px;
    bottom: auto;
    left: 0;
    width: 34px;
    height: 3px;
  }

  .blog-post-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post-sidebar {
    position: static;
    order: 2;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(16, 48, 42, .12);
  }

  .blog-post-main {
    order: 1;
    padding-left: 0;
    padding-top: 0;
    border-left: 0;
  }

  .blog-card-grid,
  .blog-card-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-filter-panel {
    padding-top: 12px;
  }

  .blog-filter-chip {
    width: 100%;
  }

  .case-study-card-featured-description {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .blog-card-surface {
    padding: 12px;
  }

  .blog-card h3 {
    font-size: 22px;
  }

  .blog-card-meta-row,
  .blog-card-info {
    gap: 12px;
  }

  .blog-card-info {
    width: 100%;
  }

  .blog-card-featured-body {
    padding: 20px 2px 4px;
  }

  .blog-featured-single .blog-card h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .blog-card-featured-author,
  .blog-card-featured-meta {
    gap: 14px;
  }

  .blog-card-featured-info {
    width: 100%;
  }

  .blog-post-hero {
    min-height: auto;
    padding-top: 145px;
  }

  .blog-hero {
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 0;
  }

  .blog-hero-big-title {
    margin-bottom: -12px;
  }

  .blog-hero-big-title span {
    font-size: clamp(54px, 21vw, 108px);
  }

  .blog-post-hero-big-title {
    margin-bottom: -12px;
  }

  .blog-post-hero-big-title span {
    font-size: clamp(48px, 18vw, 96px);
  }

  .blog-hero-content,
  .blog-post-hero-content {
    display: block;
  }

  .blog-hero-title-wrap,
  .blog-post-hero-title-wrap {
    padding: 22px;
    border-radius: 20px;
  }

  .blog-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .blog-post-title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .blog-hero-content p,
  .blog-post-deck {
    font-size: 16px;
  }

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

  .blog-index-section,
  .blog-related-posts,
  .blog-post-shell {
    padding: 70px 0;
  }

  .blog-card-grid,
  .blog-card-grid--compact,
  .blog-author-box {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-empty-state,
  .blog-answer-summary,
  .blog-takeaways,
  .blog-faq,
  .blog-author-box,
  .blog-related-links,
  .blog-toc {
    padding: 24px;
    border-radius: 22px;
  }

  .blog-faq-btn {
    gap: 14px;
    padding: 22px 46px 22px 0;
    font-size: 18px;
  }

  .blog-faq-count {
    font-size: 13px;
  }

  .blog-faq-btn .accordion-btn {
    width: 32px;
    height: 32px;
  }

  .blog-faq-answer {
    padding: 0 0 22px;
  }

  .blog-related-link-card {
    align-items: flex-start;
  }
}