@import url("https://fonts.cdnfonts.com/css/cooper-hewitt");

:root {
  --black: #19171f;
  --white: #ffffff;
  --violet: #753be9;
  --light-tint: #f6f6f6;
  --ink: var(--black);
  --muted: var(--black);
  --line: var(--black);
  --paper: var(--white);
  --soft: var(--white);
  --soft-2: var(--white);
  --brand: var(--violet);
  --brand-dark: var(--violet);
  --accent: var(--violet);
  --gold: var(--violet);
  --shadow: none;
  font-family: "Cooper Hewitt", "Cooper Hewitt Book", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 300;
  max-width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
li,
a,
button {
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--black);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: "Cooper Hewitt", "Cooper Hewitt Book", ui-sans-serif, system-ui, sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-prefix {
  color: var(--brand);
}

.logo-name {
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  font-size: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--white);
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  box-shadow: none;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--line);
  box-shadow: none;
}

.button.subtle {
  background: var(--white);
  color: var(--brand);
  border-color: var(--black);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero-meeting.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.15);
  opacity: .46;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, var(--black) 50%, var(--violet) 100%);
  opacity: .68;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 78px);
  padding: clamp(34px, 5.5vh, 58px) 0 clamp(32px, 5vh, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  grid-template-rows: auto auto;
  column-gap: clamp(28px, 5vw, 56px);
  row-gap: 14px;
  align-content: center;
  align-items: stretch;
}

.hero-inner > div:first-child {
  align-self: end;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .98;
  font-weight: 800;
}

h2 {
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.lead {
  color: #ffffff;
  font-size: clamp(17px, 2vw, 21px);
  max-width: 720px;
}

.hero .lead {
  margin-bottom: 0;
}

.page-hero .lead {
  color: var(--black);
  margin-bottom: 0;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero .hero-actions {
  margin-top: 0;
  padding-top: 0;
}

.hero .hero-actions-left {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}

.hero-actions-right {
  grid-column: 2;
  grid-row: 2;
}

.hero-actions-panel {
  margin-top: 0;
  padding: 14px;
  background: var(--violet);
  border: 1px solid var(--white);
  border-radius: 8px;
}

.hero-actions-panel .button {
  flex: 1 1 160px;
  border-color: var(--white);
}

.hero-actions-panel .button.secondary {
  background: var(--white);
  color: var(--black);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 14px;
}

.hero-panel-button {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}

.diagnostic {
  background: #ffffff;
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 26px);
  box-shadow: none;
}

.diagnostic h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 12px;
}

.diagnostic p,
.diagnostic li {
  font-size: 15px;
  line-height: 1.45;
}

.diagnostic strong {
  display: block;
  font-size: 14px;
  color: var(--brand);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.score-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.score-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #753be9;
  color: #ffffff;
  font-weight: 900;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.section > .wrap {
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--white);
}

.section.section.soft::before,
.section.section.mint::before {
  background: var(--light-tint);
}

.section.section.soft,
.section.section.mint {
  background: var(--light-tint);
}

.section.soft {
  background: var(--light-tint);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.section.mint {
  background: var(--light-tint);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease;
}

.page-card,
.theme-card,
.cards-dark > .card {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.card.tinted {
  background: var(--light-tint);
}

.problem-card,
.method-card,
.solution-card,
.proof-grid .card,
.resource-card,
.article-link,
.ink-card {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.problem-card p,
.problem-card h3,
.problem-card .icon,
.page-card p,
.page-card strong,
.page-card .muted,
.page-card a:not(.button),
.theme-card p,
.theme-card h2,
.theme-card h3,
.theme-card strong,
.theme-card .muted,
.theme-card .eyebrow,
.theme-card a:not(.button),
.cards-dark > .card,
.cards-dark > .card p,
.cards-dark > .card h3,
.cards-dark > .card li,
.cards-dark > .card .muted,
.cards-dark > .card .eyebrow,
.method-card p,
.method-card h3,
.method-card > span,
.solution-card p,
.solution-card h3,
.solution-card::before,
.proof-grid .card p,
.proof-grid .card h3,
.proof-grid .card strong,
.proof-grid .card::before,
.resource-card p,
.resource-card h3,
.resource-card span,
.resource-card::before,
.article-link strong,
.article-link span,
.ink-card p,
.ink-card .muted,
.ink-card h3,
.ink-card span {
  color: var(--white);
}

.problem-card .icon,
.cards-dark > .card .icon,
.solution-icon,
.method-card > span,
.solution-card::before,
.proof-grid .card::before,
.resource-card::before,
.article-link::before {
  background: var(--violet);
  color: var(--white);
}

.problem-card .icon,
.solution-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 18px;
  background: var(--violet);
  color: var(--white);
}

.problem-card .icon svg,
.solution-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cards-dark.numbered {
  counter-reset: dark-card;
}

.cards-dark.numbered > .card::before {
  counter-increment: dark-card;
  content: "0" counter(dark-card);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 18px;
  background: var(--violet);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.cards-dark > .card.accent {
  background: var(--black);
  border-color: var(--black);
}

.cards-dark > .card .button.subtle,
.theme-card .button,
.page-card .button.secondary {
  background: var(--white);
  color: var(--violet);
  border-color: var(--white);
}

.violet-card {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.proof-grid .violet-card,
.resource-card.violet-card,
.resource-card.ink-card {
  background: var(--black);
  border-color: var(--black);
}

.violet-card p,
.violet-card h3,
.violet-card span,
.violet-card strong,
.violet-card .stars {
  color: var(--white);
}

.card.accent {
  border-color: var(--white);
  background: var(--brand-dark);
  color: var(--white);
}

.card.accent p {
  color: #ffffff;
}

.card.accent .eyebrow {
  color: var(--white);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 18px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 74px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.profile {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.profile-aside {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 360px;
}

.portrait {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--black);
  background: #ffffff;
  box-shadow: none;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-pill {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.puzzle-grid > .card::before,
.posture-grid .solution-card::before,
.method-working-grid .solution-card::before,
.solutions-lever-grid .solution-card::before,
.formation-topic-grid .solution-card::before {
  content: none;
  display: none;
}

.puzzle-icon svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: none;
}

.puzzle-icon {
  width: 52px;
  height: 52px;
  background: transparent !important;
  color: var(--white);
}

.puzzle-main {
  fill: var(--white);
  stroke: var(--white);
  stroke-width: 2;
  stroke-linejoin: round;
}

.puzzle-shadow {
  display: none;
}

.puzzle-piece-b {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}

.puzzle-piece-c {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(118px, 34%) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 8px;
}

.book-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  margin: 0;
  padding: 10px;
  background: var(--white);
}

.book-cover img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.book-cover-placeholder {
  border: 1px dashed var(--black);
  border-radius: 8px;
  color: var(--violet);
  font-style: italic;
  font-weight: 800;
  text-align: center;
}

.book-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.book-card span {
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.book-card h3 {
  margin: 12px 0;
  color: var(--violet);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
}

.book-card p {
  color: var(--black);
  margin-bottom: 22px;
}

.book-card .button {
  margin-top: auto;
}

.book-card.upcoming {
  border-style: dashed;
}

.contribution-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--black);
}

.contribution-block h3 {
  margin-bottom: 8px;
}

.contribution-block p {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--black);
}

.contribution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contribution-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.quote {
  display: grid;
  gap: 16px;
}

.testimonial-person {
  display: grid;
  gap: 2px;
}

.testimonial-person strong,
.testimonial-person span {
  color: var(--black);
}

.testimonial-person span {
  font-size: 14px;
  font-weight: 650;
}

.keyword-row,
.metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.keyword-row span,
.metric-strip span {
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--light-tint);
  color: var(--black);
  font-weight: 800;
  font-style: normal;
}

.metric-strip span {
  border-color: var(--black);
  background: var(--white);
  flex: 1 1 100%;
  text-align: left;
  white-space: normal;
}

.profile-aside .metric-strip {
  display: grid;
  gap: 10px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

.profile-aside .metric-strip span {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 58px;
  min-width: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.profile > div:not(.profile-aside) {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.profile > div:not(.profile-aside) .actions {
  margin-top: auto;
  padding-top: 0;
  align-items: stretch;
}

.profile > div:not(.profile-aside) .actions .button {
  min-height: 58px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.metric-strip strong {
  color: var(--brand);
  margin-right: .18em;
}

.step-card {
  display: grid;
  align-content: start;
  gap: 14px;
  background: var(--light-tint);
}

.method-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.step-card > span,
.method-card > span {
  color: var(--brand);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.method-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 4px;
  background: var(--violet);
  color: var(--white);
  font-size: 16px;
}

.solution-matrix,
.resource-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.solution-matrix {
  counter-reset: solution;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-matrix article,
.solution-card {
  position: relative;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 26px;
}

.solution-matrix article:nth-child(even) {
  background: var(--black);
}

.solution-card::before,
.proof-grid .card::before,
.resource-card::before,
.article-link::before {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 900;
  line-height: 1;
}

.solution-card::before {
  counter-increment: solution;
  content: "0" counter(solution);
}

.proof-grid {
  counter-reset: proof;
  grid-template-columns: 1.15fr .85fr .85fr;
}

.feature-quote {
  background: var(--black);
}

.proof-grid .card::before {
  counter-increment: proof;
  content: "0" counter(proof);
}

.proof-grid .stars {
  color: var(--violet);
}

.proof-logos,
.latest-home-posts {
  margin-top: 26px;
}

.resource-grid {
  counter-reset: resource;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 28px;
}

.resource-card::before {
  counter-increment: resource;
  content: "0" counter(resource);
}

.resource-card span {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stars {
  color: var(--gold);
  letter-spacing: .12em;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-link {
  position: relative;
  display: grid;
  grid-template-columns: 44px 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-link::before {
  content: ">>";
  margin-bottom: 0;
  color: var(--white);
  letter-spacing: -0.08em;
}

.article-link span {
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.category-archive-list {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.category-archive-item {
  display: grid;
  gap: 10px;
}

.category-archive-item time {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
}

.category-archive-item time:empty {
  display: none;
}

.category-archive-item h2,
.category-archive-item h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
}

.category-archive-item a {
  color: var(--brand);
  text-decoration: none;
}

.category-archive-item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.category-archive-item p {
  max-width: 760px;
  margin: 0;
  color: var(--black);
  line-height: 1.45;
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 38px;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--black);
  border-radius: 8px;
}

.archive-pagination a:hover,
.archive-pagination .current {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.resources-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 28px;
  align-items: stretch;
}

.resources-split h3,
.newsletter-layout h3 {
  margin-bottom: 16px;
}

.resources-split > div,
.newsletter-layout > div {
  display: grid;
  grid-template-rows: auto 1fr;
}

.latest-article-grid,
.newsletter-edition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.category-entry-grid {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 12px;
}

.feature-card,
.category-entry,
.newsletter-edition {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
}

.feature-card span,
.category-entry span,
.newsletter-edition span {
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.feature-card strong,
.category-entry strong,
.newsletter-edition strong {
  color: var(--violet);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.28;
}

.category-entry strong {
  color: var(--violet);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.32;
}

.feature-card p,
.newsletter-edition p {
  margin: 0;
  color: var(--black);
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
  gap: 28px;
  align-items: stretch;
}

.hub-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hub-nav-grid a {
  color: var(--brand);
  font-size: 18px;
  line-height: 1.25;
  text-decoration: none;
}

.hub-nav-grid a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hub-nav-section {
  padding: 34px 0 18px;
}

.hub-category {
  scroll-margin-top: 104px;
}

.hub-category-head {
  max-width: 920px;
  margin-bottom: 24px;
}

.hub-category-head p:last-child {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--black);
}

.hub-article-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: hub-article;
}

.hub-article-list li {
  counter-increment: hub-article;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 0;
}

.hub-article-list li::before {
  content: counter(hub-article, decimal-leading-zero);
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.35;
}

.hub-article-list a {
  color: var(--brand);
  font-size: 19px;
  line-height: 1.22;
  text-decoration: none;
}

.hub-article-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hub-more-list {
  margin-top: 12px;
}

.hub-article-list.hub-more-list {
  counter-reset: hub-article 5;
}

.hub-more-list[hidden] {
  display: none;
}

.hub-toggle {
  margin-top: 22px;
}

.newsletter-intro-card {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
}

.newsletter-edition {
  background: var(--light-tint);
}

.solution-card,
.solution-matrix article,
.solution-matrix article:nth-child(even),
.resource-card,
.resource-card.violet-card,
.resource-card.ink-card {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.solution-card h3,
.solution-card p,
.proof-grid .card h3,
.resource-card h3,
.resource-card p,
.resource-card span {
  color: var(--black);
}

.solution-card::before {
  background: var(--violet);
  color: var(--white);
  border: 1px solid var(--violet);
}

.proof-grid .card::before,
.resource-card::before {
  content: none;
  display: none;
}

.testimonial-media {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.testimonial-fallback {
  display: grid;
  place-items: center;
  color: var(--violet);
  font-weight: 900;
}

.resource-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--black);
  border-radius: 8px;
  color: var(--violet);
  background: var(--white);
}

.resource-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card:hover .resource-icon {
  background: var(--violet);
  color: var(--white);
}

.proof-logos .logo-pill {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.proof-grid .card,
.proof-grid .violet-card,
.feature-quote {
  background: var(--light-tint);
  color: var(--black);
  border-color: var(--black);
}

.proof-grid .card h3,
.solution-card h3,
.resource-card h3 {
  color: var(--violet);
}

.resource-card .resource-icon {
  color: var(--violet);
}

.proof-grid .card p,
.proof-grid .card strong {
  color: var(--black);
}

.section:not(.soft):not(.contact-band) .card:not(.page-card):not(.theme-card),
.section:not(.soft):not(.contact-band) .cards-dark > .card,
.section:not(.soft):not(.contact-band) .solution-card,
.section:not(.soft):not(.contact-band) .method-card,
.section:not(.soft):not(.contact-band) .resource-card,
.section.mint .resource-card,
.section.mint .method-card {
  background: var(--light-tint);
  color: var(--black);
  border-color: var(--black);
}

#solutions .solution-card,
.section.mint#solutions .solution-card {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

#solutions .solution-card::before {
  content: none;
  display: none;
}

.section.soft .card:not(.page-card):not(.theme-card),
.section.soft .cards-dark > .card,
.section.soft .solution-card,
.section.soft .method-card,
.section.soft .resource-card,
.section.soft .article-link {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.section .card:not(.page-card):not(.theme-card) p,
.section .card:not(.page-card):not(.theme-card) h3,
.section .card:not(.page-card):not(.theme-card) li,
.section .card:not(.page-card):not(.theme-card) strong,
.section .card:not(.page-card):not(.theme-card) .muted,
.section .solution-card p,
.section .solution-card h3,
.section .method-card p,
.section .method-card h3,
.section .resource-card p,
.section .resource-card h3,
.section .resource-card span,
.section .article-link strong,
.section .article-link span {
  color: var(--black);
}

.cards-white > .card,
.section .cards-white > .card,
.section.soft .cards-white > .card,
.section:not(.soft):not(.contact-band) .cards-white > .card {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.cards-white > .card p,
.cards-white > .card h3,
.cards-white > .card li,
.cards-white > .card strong,
.cards-white > .card .muted,
.cards-white > .card .eyebrow,
.section .cards-white > .card p,
.section .cards-white > .card h3,
.section .cards-white > .card li,
.section .cards-white > .card strong,
.section .cards-white > .card .muted,
.section .cards-white > .card .eyebrow {
  color: var(--black);
}

.page-card,
.theme-card,
.contact-card.dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.page-card p,
.page-card strong,
.page-card .muted,
.page-card a:not(.button),
.theme-card p,
.theme-card h2,
.theme-card h3,
.theme-card strong,
.theme-card .muted,
.theme-card .eyebrow,
.theme-card a:not(.button),
.contact-card.dark,
.contact-card.dark p,
.contact-card.dark h2,
.contact-card.dark h3,
.contact-card.dark strong,
.contact-card.dark a,
.contact-card.dark .eyebrow {
  color: var(--white);
}

.home-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-resource-grid .resource-card {
  min-height: 100%;
}

.proof-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
}

.proof-viewport {
  overflow: hidden;
  transition: height .24s ease;
}

.proof-track {
  display: flex;
  align-items: stretch;
  transition: transform .28s ease;
  will-change: transform;
}

.proof-track .card {
  flex: 0 0 calc((100% - 36px) / 3);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.proof-track .testimonial-person {
  margin-top: auto;
}

.proof-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
}

.proof-arrow:hover,
.proof-arrow:focus-visible {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--white);
}

.proof-arrow:disabled {
  cursor: default;
  opacity: .35;
}

.logo-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.logo-viewport {
  overflow: hidden;
  padding: 0;
}

.logo-frieze {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 7);
  grid-template-rows: repeat(3, 100px);
  gap: 14px 12px;
  transition: transform .28s ease;
  will-change: transform;
}

.client-logo {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 12px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.06);
}

.card:hover,
.solution-card:hover,
.resource-card:hover,
.article-link:hover {
  border-color: var(--violet);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 54px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--light-tint);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .45fr);
  gap: 50px;
  align-items: end;
}

.page-hero:not(.contact-hero) h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 800;
}

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

.contact-hero h1 {
  max-width: none;
  white-space: nowrap;
  line-height: 1.12;
}

.contact-hero .lead {
  max-width: none;
  white-space: nowrap;
}

.page-card {
  align-self: end;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 24px;
  box-shadow: none;
}

.list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.list li {
  padding-left: 28px;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-band {
  color: var(--black);
  background: var(--white);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.contact-band .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-band .button.subtle {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

.form {
  display: grid;
  gap: 12px;
}

.newsletter-form,
.footer-form {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.footer-newsletter {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.footer-newsletter h3 {
  margin-bottom: 8px;
}

.newsletter-form input,
.footer-form input {
  min-height: 46px;
}

.newsletter-form .button,
.footer-form .button {
  width: 100%;
}

.newsletter-intro-card .newsletter-form .button.footer-cta {
  border-color: var(--black);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .45fr);
  gap: 50px;
  align-items: stretch;
}

.contact-section,
.contact-section::before {
  background: var(--white);
}

.contact-form-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 28px;
}

.contact-form-card {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  min-height: 0;
  background: var(--light-tint);
}

.contact-form-card .section-head {
  margin-bottom: 18px;
}

.section-head.compact {
  max-width: 760px;
}

.contact-form-card .section-head h2 {
  max-width: 680px;
  margin-bottom: 10px;
}

.contact-form-card .section-head p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
}

.contact-form-card .form {
  gap: 9px;
}

.contact-form-card .form-grid {
  gap: 9px 12px;
}

.contact-form-card label {
  gap: 0;
}

.contact-form-card label span {
  display: block;
  margin: 0 0 1px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  min-height: 36px;
  padding: 7px 10px;
  line-height: 1.15;
  font-weight: 300;
}

.contact-form-card textarea {
  min-height: 78px;
  padding-top: 8px;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.contact-card.dark {
  background: var(--black);
  color: var(--white);
}

.contact-card.dark h2,
.contact-card.dark p,
.contact-card.dark .eyebrow,
.contact-card.dark a {
  color: var(--white);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: inherit;
}

.contact-method span,
.form-note {
  font-size: 13px;
  line-height: 1.45;
}

.contact-method span {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
}

.contact-method strong {
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 2px;
  color: var(--black);
  font-weight: 500;
}

label span {
  font-weight: 500;
  line-height: 1.1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--black);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
}

select option {
  font-weight: 300;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-form-card .form-actions .button {
  min-width: 260px;
  min-height: 58px;
  padding: 14px 24px;
  font-size: clamp(16px, 1.25vw, 19px);
  font-style: italic;
  font-weight: 900;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0;
  background: var(--black);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(150px, .7fr) minmax(240px, 1fr) minmax(220px, .95fr);
  column-gap: 32px;
  row-gap: 34px;
  align-items: start;
}

.footer-grid.rich {
  grid-template-columns: minmax(250px, 1.15fr) minmax(150px, .7fr) minmax(240px, 1fr) minmax(220px, .95fr);
  align-items: start;
}

.footer-grid a {
  color: var(--white);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer-note {
  color: var(--white);
  margin: 14px 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-keywords {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 8px;
  padding: 7px 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
}

.footer-newsletter-title {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.2;
}

.site-footer .button.subtle,
.button.footer-cta,
.site-footer .footer-form .button.footer-cta,
.site-footer .footer-form button.footer-cta,
a.footer-cta {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--violet);
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 16px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.35;
}

.linkedin-icon {
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.footer-credit {
  margin: 12px 0 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.footer-credit a {
  color: var(--white);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (min-width: 901px) {
  .footer-grid.rich > div:nth-child(3),
  .footer-grid.rich > div:nth-child(4) {
    display: grid;
    align-content: start;
    gap: 12px;
  }

  .footer-grid.rich > div:nth-child(3) h3,
  .footer-grid.rich > div:nth-child(4) h3 {
    margin-bottom: 4px;
  }

  .footer-grid.rich > div:nth-child(3) .footer-newsletter-title {
    margin-bottom: 0;
  }

  .footer-grid.rich > div:nth-child(3) > .footer-note,
  .footer-grid.rich > div:nth-child(4) .footer-note {
    margin: 0;
  }

  .footer-grid.rich > div:nth-child(4) .linkedin-link {
    margin: 2px 0 2px;
  }

  .footer-grid.rich > div:nth-child(3) .footer-form {
    gap: 12px;
    margin: 2px 0 0;
  }

  .footer-grid.rich > div:nth-child(4) .footer-credit {
    margin-top: 2px;
  }
}

.article-hero .eyebrow a {
  color: var(--brand) !important;
}

.article-hero-editorial {
  position: relative;
  overflow: hidden;
  padding: 34px 0 24px;
  background: var(--light-tint);
  border-bottom: 1px solid var(--black);
}

.article-hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, var(--light-tint) 0%, var(--light-tint) 50%, rgba(117, 59, 233, .06) 78%, rgba(117, 59, 233, .13) 100%);
}

.article-hero-editorial .wrap {
  position: relative;
  z-index: 1;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 26px;
  align-items: start;
}

.article-hero-copy {
  max-width: 920px;
}

.article-toc-hero {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  padding: 20px;
}

.article-hero-aside {
  display: grid;
  gap: 12px;
}

.article-hero-editorial h1 {
  max-width: 980px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
}

.article-hero-editorial .lead {
  max-width: 820px;
  color: var(--black);
  margin-bottom: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.article-meta span,
.article-taxonomy a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 9px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 300;
}

.article-taxonomy a {
  background: var(--soft);
  font-weight: 300;
}

.article-hero-card {
  align-self: start;
}

.article-takeaways {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding-left: 18px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(300px, .3fr);
  gap: 32px;
  align-items: stretch;
}

.article-section {
  padding-top: 34px;
  overflow: visible;
}

.article-main,
.article-sidebar,
.article-after-content {
  display: grid;
  gap: 24px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: none;
  overflow: visible;
}

.article-cover {
  margin: 0;
}

.article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 52%;
  border: 1px solid var(--black);
  border-radius: 8px;
}

.article-content-card {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.entry-content {
  color: var(--black);
  font-size: 18px;
  line-height: 1.55;
}

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

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2 {
  margin: 54px 0 18px;
  color: var(--black);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  scroll-margin-top: 120px;
}

.entry-content :where(h2, h3, h4)[id] {
  scroll-margin-top: 120px;
}

.entry-content h3 {
  margin: 34px 0 12px;
  color: var(--brand);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.08;
  font-weight: 500;
}

.entry-content p,
.entry-content li {
  color: var(--black);
}

.entry-content ul,
.entry-content ol {
  display: grid;
  gap: 6px;
  padding-left: 22px;
}

.entry-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 16px;
}
.schema-faq-section strong.schema-faq-question
{
  font-size: 24px;
}
.entry-content th,
.entry-content td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
}

.entry-content th {
  background: var(--soft);
  color: var(--black);
}

.entry-content h2[id^="faq"],
.entry-content h2[id*="-faq-"],
.entry-content h2.article-editorial-title,
.article-related-block h2.article-editorial-title {
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
  color: var(--black);
  font-size: clamp(26px, 3.2vw, 40px);
  font-style: italic;
  font-weight: 800;
  line-height: .98;
}

.entry-content h2[id^="faq"] ~ h3,
.entry-content h2[id*="-faq-"] ~ h3 {
  margin: 28px 0 8px;
  padding: 0;
  border-top: 0;
  color: var(--black);
  font-size: clamp(21px, 2.2vw, 28px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.15;
}

.entry-content h2[id^="faq"] ~ p,
.entry-content h2[id*="-faq-"] ~ p {
  margin-top: 0;
}

.article-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 34px 0;
  padding: 22px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--light-tint);
  color: var(--black);
}

.article-inline-cta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 20px;
  line-height: 1.1;
}

.article-inline-cta p {
  margin: 0;
  color: var(--black);
}

.article-inline-cta-method {
  background: var(--light-tint);
  color: var(--black);
}

.article-inline-cta-method strong,
.article-inline-cta-method p {
  color: var(--black);
}

.article-inline-cta-method strong {
  color: var(--brand);
}

.article-inline-cta-method .button.secondary {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.article-toc h2,
.article-side-cta h2,
.article-side-links h2 {
  font-size: 22px;
  line-height: 1.08;
}

.toc-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.toc-list a {
  color: var(--brand-dark);
  font-weight: 800;
}

.toc-list li {
  color: var(--black);
}

.toc-list .toc-level-3 {
  padding-left: 14px;
}

.article-side-links ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.article-side-links a {
  color: var(--brand);
  font-weight: 900;
}

.article-taxonomy {
  display: grid;
  gap: 10px;
  padding: 0 2px 4px;
}

.article-taxonomy div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.article-taxonomy strong {
  margin-right: 4px;
  color: var(--black);
  font-weight: 300;
}

.author-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
}

.author-avatar {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--black);
  border-radius: 999px;
}

.author-box h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.author-box p:last-child {
  margin-bottom: 0;
}

.article-engagement {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 12px 0 0;
  border-top: 0;
}

.article-related-block {
  padding: 22px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
}

.article-related-block h2 {
  margin-bottom: 16px;
}

.article-related-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.article-related-block li {
  line-height: 1.35;
}

.article-engagement-head {
  grid-column: 1 / -1;
}

.article-engagement-head .eyebrow {
  margin-bottom: 0;
}

.article-engagement-head h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.08;
}

.article-comments-preview,
.article-share {
  min-width: 0;
  margin-top: 20px;
}

.article-comments-preview h3,
.article-share h3 {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.08;
}

.article-comment-form,
.comment-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.article-comment-form label,
.comment-form label {
  color: var(--black);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.15;
}

.article-comment-form input,
.article-comment-form textarea,
.comment-form input,
.comment-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--soft);
  color: var(--black);
  font: inherit;
}

.article-comment-form textarea,
.comment-form textarea {
  min-height: 112px;
  resize: vertical;
}

.comment-form .form-submit,
.comment-form p {
  margin: 0;
}

.article-comment-form .button,
.comment-form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-family: "Cooper Hewitt", Arial, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  justify-self: start;
  cursor: pointer;
}

.article-comment-examples {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.article-comment-example {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.article-comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  margin-top: 14px;
}

.article-comment-meta strong {
  color: var(--black);
  font-family: "Cooper Hewitt Semibold", "Cooper Hewitt", Arial, sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700 !important;
  line-height: 1.1;
}

.article-comment-meta span {
  color: var(--text);
  font-size: 14px;
}

.article-comment-example p {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.comments-area {
  margin-top: 14px;
}

.comment-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.article-comments-note {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.article-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.article-share-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--black) !important;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  line-height: 1;
}

.article-share-links svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-social-icon {
  display: block;
  width: 21px;
  height: 21px;
  background: currentColor;
  -webkit-mask: var(--simple-icon) center / contain no-repeat;
  mask: var(--simple-icon) center / contain no-repeat;
}

.linkedin-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.article-share-links a:hover .linkedin-brand-mark,
.article-share-links a:focus-visible .linkedin-brand-mark {
  background: var(--brand);
  color: var(--white);
}

.si-reddit {
  --simple-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@v16/icons/reddit.svg");
}

.si-medium {
  --simple-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@v16/icons/medium.svg");
}

.si-substack {
  --simple-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@v16/icons/substack.svg");
}

.si-x {
  --simple-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@v16/icons/x.svg");
}

.si-facebook {
  --simple-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@v16/icons/facebook.svg");
}

.si-instagram {
  --simple-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@v16/icons/instagram.svg");
}

.article-share-links a:hover {
  background: var(--white);
  color: var(--brand) !important;
  border-color: var(--brand);
  text-decoration: none;
}

.article-share-links a::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  z-index: 2;
  padding: 4px 7px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  background: var(--white);
  color: var(--brand);
  font-size: 11px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  white-space: nowrap;
}

.article-share-links a:hover::after,
.article-share-links a:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 78px 16px auto 16px;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner,
  .page-hero .wrap,
  .article-hero-grid,
  .profile,
  .article-layout,
  .article-engagement,
  .contact-band .wrap,
  .contact-layout,
  .footer-grid,
  .footer-grid.rich {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    white-space: normal;
  }

  .contact-hero .lead {
    white-space: normal;
  }

  .hero-inner {
    min-height: auto;
    padding: 70px 0 44px;
  }

  .hero .hero-actions,
  .hero-panel-button {
    margin-top: 22px;
  }

  .hero-inner > div:first-child {
    order: 1;
  }

  .hero .hero-actions-left {
    order: 2;
    grid-column: 1;
    margin-top: 0;
  }

  .hero-panel {
    order: 3;
  }

  .hero-actions-right {
    order: 4;
    grid-column: 1;
  }

  .contact-form-card,
  .contact-aside {
    height: auto;
    min-height: 0;
  }

  .contact-form-card,
  .contact-aside {
    grid-template-rows: auto;
  }

  .hero::before {
    background-position: center;
    opacity: .34;
  }

  .hero::after {
    opacity: .76;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .solution-matrix,
  .book-grid,
  .proof-grid,
  .resource-grid,
  .resources-split,
  .newsletter-layout,
  .hub-nav-grid,
  .hub-category-head,
  .hub-more-list {
    grid-template-columns: 1fr;
  }

  .latest-article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-carousel {
    grid-template-columns: 1fr;
  }

  .logo-carousel {
    grid-template-columns: 1fr;
  }

  .proof-track .card {
    flex-basis: 100%;
  }

  .proof-arrow {
    width: 100%;
  }

  .home-resource-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .article-page .article-sidebar {
    position: static;
  }

  .article-side-cta {
    min-height: 0;
  }

  .author-box {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .book-card {
    grid-template-columns: 1fr;
  }

  .book-cover {
    min-height: 0;
  }

  .book-cover img {
    max-height: 260px;
  }

  .logo-frieze {
    grid-template-rows: repeat(3, 88px);
    gap: 12px;
  }

  .client-logo {
    min-height: 0;
  }

  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 70px;
    gap: 12px;
  }

  .brand-logo {
    font-size: 28px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .section {
    padding: 62px 0;
  }

  .author-box {
    grid-template-columns: 1fr;
  }

  .author-avatar {
    width: 64px;
    height: 64px;
  }

  .article-engagement {
    gap: 18px;
  }

  .wrap,
  .hero-inner,
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .hero-actions .button,
  .actions .button,
  .contact-band .button {
    width: 100%;
  }

  .form-grid,
  .article-link,
  .article-inline-cta,
  .latest-article-grid,
  .newsletter-edition-grid,
  .hub-nav-grid,
  .hub-category-head,
  .hub-more-list,
  .author-box {
    grid-template-columns: 1fr;
  }

  .hub-article-list a {
    font-size: 20px;
  }

  .brand small,
  .nav .button {
    display: none;
  }

  .card,
  .diagnostic,
  .page-card,
  .article-content-card {
    padding: 20px;
  }

  .entry-content {
    font-size: 17px;
  }

  .article-hero-editorial {
    padding: 34px 0 24px;
  }

  .article-hero-editorial h1 {
    font-size: 34px;
  }

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

.contact-form-card .form {
  align-content: start;
  grid-auto-rows: max-content;
  gap: 14px;
}

.contact-form-card .form-grid {
  align-items: start;
  gap: 14px;
}

.contact-form-card .form label,
.contact-form-card label {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-weight: 300;
}

.contact-form-card .form label span,
.contact-form-card label span {
  display: block;
  margin: 0 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}

.contact-form-card .form input,
.contact-form-card .form select,
.contact-form-card .form textarea {
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 8px 12px;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 300;
}

.contact-form-card .form textarea {
  height: 138px;
  min-height: 138px;
  padding-top: 10px;
}

.contact-form-card .form select,
.contact-form-card .form select option,
.contact-form-card .form textarea {
  font-weight: 300;
}

.article-section.section,
.article-page .article-section {
  overflow: visible;
}

.article-page .article-layout {
  align-items: start;
}

.article-page .article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  margin-top: 0;
  z-index: 2;
  display: grid;
  gap: 24px;
  max-height: none;
  overflow: visible;
}

.diagnostic-open {
  overflow: hidden;
}

.diagnostic-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.diagnostic-modal.open {
  display: flex;
}

.diagnostic-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 31, .62);
}

.diagnostic-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(760px, calc(100dvh - 48px));
  overflow-y: auto;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(25, 23, 31, .24);
}

.diagnostic-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.diagnostic-progress {
  height: 8px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.diagnostic-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand);
  transition: width .2s ease;
}

.diagnostic-step {
  padding: clamp(28px, 5vw, 44px);
}

.diagnostic-step h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
}

.diagnostic-step > p {
  max-width: 620px;
}

.diagnostic-options {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.diagnostic-option {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--soft);
  color: var(--black);
  font: inherit;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
}

.diagnostic-option:hover,
.diagnostic-option:focus-visible {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.diagnostic-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--black);
}

.diagnostic-nav span {
  font-weight: 800;
}

.diagnostic-nav .button.secondary {
  min-width: 122px;
  min-height: 46px;
  padding: 10px 18px;
  border-color: var(--black);
  background: var(--white);
  color: var(--brand);
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  justify-content: center;
}

.diagnostic-nav .button[disabled] {
  opacity: .4;
  cursor: not-allowed;
}

.diagnostic-result-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 24px 0 26px;
}

.diagnostic-context-block,
.diagnostic-actions-block {
  min-width: 0;
}

.diagnostic-context-block h3,
.diagnostic-actions-block h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 22px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.05;
}

.diagnostic-context-line {
  display: grid;
  gap: 3px;
  margin-bottom: 13px;
  padding-left: 16px;
  border-left: 3px solid var(--brand);
}

.diagnostic-context-line strong {
  display: block;
  color: var(--black);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.diagnostic-context-line span {
  color: var(--black);
  font-size: 15px;
  line-height: 1.3;
}

.diagnostic-actions-block {
  display: grid;
  gap: 13px;
}

.diagnostic-action-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.diagnostic-action-line p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  line-height: 1.35;
}

.diagnostic-final {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.diagnostic-final p {
  margin: 0;
}

.diagnostic-final .button {
  width: fit-content;
}

@media (max-width: 620px) {
  .diagnostic-modal {
    padding: 12px;
    align-items: end;
  }

  .diagnostic-dialog {
    max-height: calc(100dvh - 24px);
  }

  .diagnostic-final .button,
  .diagnostic-nav .button {
    width: 100%;
  }

  .diagnostic-result-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .diagnostic-nav {
    align-items: stretch;
    flex-direction: column-reverse;
  }
}

/* Color consolidation: titles and surtitles stay black outside page headers and final CTA bands. */
main .section:not(.contact-band) :where(.eyebrow, h1, h2, h3),
main .section:not(.contact-band) :where(.feature-card strong, .category-entry strong, .newsletter-edition strong),
main .section:not(.contact-band) :where(.feature-card span, .category-entry span, .newsletter-edition span),
main .section:not(.contact-band) :where(.resource-card span, .book-card span, .article-link span) {
  color: var(--black);
}

main .section:not(.contact-band) :where(.cards-dark > .card h3, .cards-dark > .card .eyebrow, .cards-dark > .card p, .cards-dark > .card span),
main .section:not(.contact-band) :where(.contact-card.dark h2, .contact-card.dark h3, .contact-card.dark .eyebrow, .contact-card.dark p) {
  color: var(--white);
}

main :where(.hero, .page-hero, .article-hero, .contact-band) :where(.eyebrow, h1, h2, h3) {
  color: inherit;
}

main .page-hero :where(.eyebrow) {
  color: var(--brand);
}

main .contact-band :where(.eyebrow, h2, h3, p) {
  color: var(--black);
}

main .hero :where(.eyebrow, h1, h2, h3, p),
main .page-card :where(.eyebrow, h1, h2, h3, p),
main .article-hero :where(.eyebrow, h1, h2, h3, p) {
  color: inherit;
}

main :where(.entry-content, .section, .article-after-content) p a,
main :where(.entry-content, .section, .article-after-content) li a,
main :where(.entry-content, .section, .article-after-content) .muted a {
  color: var(--brand);
  text-decoration: none;
}

/* Editorial links: linked article/resource titles stay violet, while labels remain black. */
main .section :where(a.feature-card, a.category-entry, a.newsletter-edition) strong,
main .section :where(a.resource-card) h3,
main .section :where(.article-link) strong,
main .section :where(.article-list a) strong,
main .section :where(.book-card a:not(.button)),
main .section :where(.resource-card a:not(.button)) {
  color: var(--brand) !important;
  text-decoration: none;
}

main .section :where(a.feature-card, a.category-entry, a.newsletter-edition) span {
  color: var(--black) !important;
}

main #articles :where(a.feature-card strong, a.category-entry strong),
main #newsletter :where(a.newsletter-edition strong),
main #livres :where(.book-card h3) {
  color: var(--brand) !important;
  text-decoration: none;
}

main #articles :where(a.feature-card:hover strong, a.category-entry:hover strong),
main #newsletter :where(a.newsletter-edition:hover strong),
main #livres :where(.book-card:hover h3) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-page :where(.entry-content a, .article-after-content a, .article-side-links a, .article-toc a, .author-box a):not(.button) {
  color: var(--brand) !important;
  text-decoration: none;
}

.article-page :where(.article-taxonomy a) {
  color: var(--brand) !important;
  text-decoration: none;
}

main :where(.entry-content, .section, .article-after-content) p a:hover,
main :where(.entry-content, .section, .article-after-content) li a:hover,
main :where(.entry-content, .section, .article-after-content) .muted a:hover,
main .section :where(a.feature-card, a.category-entry, a.newsletter-edition):hover strong,
main .section :where(a.resource-card):hover h3,
main .section :where(.article-link):hover strong,
main .section :where(.article-list a):hover strong,
main .section :where(.book-card a:not(.button)):hover,
main .section :where(.resource-card a:not(.button)):hover,
.article-page :where(.entry-content a, .article-after-content a, .article-side-links a, .article-toc a, .author-box a):not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Explicit color exceptions that must override the global typography rules. */
main .contact-band .eyebrow {
  color: var(--brand) !important;
}

main .hero .eyebrow {
  color: var(--white) !important;
}

.article-page .article-share-links a {
  color: var(--black) !important;
  text-decoration: none !important;
}

.article-page .article-share-links a:hover,
.article-page .article-share-links a:focus-visible {
  color: var(--brand) !important;
  text-decoration: none !important;
}

main .contact-band :where(h2, h3, p) {
  color: var(--black);
}

/* ===== Imported from theme.css ===== */

.nav-links a[aria-current="page"],
.nav-links a:hover {
color: var(--brand);
}

.nav ul li {
list-style: none;
}

.nav #menu-menu-principal {
margin: 0;
  padding: 0;
}

.decouvrez-articles-hide {
display: none;
}

.decouvrez-articles h2,
.entry-content h2 {
font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
}

.decouvrez-articles {
margin-top: 30px;
}

.consultant-hero h1 {
line-height: 1.08;
}

.resources-split.allblogs {
display: block;
}

.allblogs .latest-article-grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}

.entry-content h2 strong {
font-weight: 500;
}

.entry-content h2[id^="faq"] strong, 
.entry-content h2[id*="-faq-"] strong, 
.entry-content h2.article-editorial-title strong, 
.article-related-block h2.article-editorial-title strong {
font-weight: 800;
}





.diagnostic-actions {
display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 22px;
}

.diagnostic-actions li {
padding-left: 4px;
  color: var(--black);
}

.category-archive-item h2, .category-archive-item h3 {
margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
}

.nav-links .page-numbers {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--black);
  border-radius: 8px;
  font-weight: 500;
  line-height: 21px;
}

.nav-links span.page-numbers.current {
color: var(--white) !important;
  background: var(--brand);
  border-color: var(--brand) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--black);
  border-radius: 8px;
}

.blogpagination {
display: block;
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

/* Mobile only FAQ accordion */
@media (max-width: 768px) {
.schema-faq.wp-block-yoast-faq-block .schema-faq-section {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.schema-faq.wp-block-yoast-faq-block .schema-faq-question {
display: block;
    position: relative;
    cursor: pointer;
    padding-right: 30px;
    font-size: 16px;
    line-height: 1.4;
}

/* Remove nested strong spacing issues */
  .schema-faq.wp-block-yoast-faq-block .schema-faq-question strong {
font-weight: 600;
}

/* Plus / Minus icon */
  .schema-faq.wp-block-yoast-faq-block .schema-faq-question::after {
content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.schema-faq.wp-block-yoast-faq-block .schema-faq-section.active .schema-faq-question::after {
content: "−";
}

/* Hidden by default on mobile */
  .schema-faq.wp-block-yoast-faq-block .schema-faq-answer {
display: none;
    padding-top: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* Show active answer */
  .schema-faq.wp-block-yoast-faq-block .schema-faq-section.active .schema-faq-answer {
display: block;
}

}


/* Popup wrapper */
/* BODY LOCK */
body.popup-open {
overflow: hidden;
}

/* POPUP WRAPPER */
.custom-popup {
position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

/* ACTIVE */
.custom-popup.active {
display: block;
}

/* OVERLAY */
.custom-popup-overlay {
position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(3px);
}

/* MODAL */
.custom-popup-modal {
position: relative;
    width: 90%;
    max-width: 650px;
    margin: 60px auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
    animation: popupFade .25s ease;
}

/* LARGE VERSION */
.custom-popup-modal.large-popup {
max-width: 1150px;
}

/* CONTENT */
.custom-popup-content {
padding: 40px;
}

/* CLOSE BUTTON */
.custom-popup-close {
position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
}

/* ANIMATION */
@keyframes popupFade {
from {
        transform: translateY(20px);
        opacity: 0;
}

to {
transform: translateY(0);
        opacity: 1;
}

}



/* MOBILE */
@media(max-width:767px) {
.custom-popup-modal {
        width: calc(100% - 20px);
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
}

.custom-popup-content {
padding: 25px;
}

.large-popup .calendly-inline-widget {
height: 100vh !important;
        min-height: 100vh;
}

}
input.formkit-input::placeholder {
opacity: 1 !important;
    color: #000 !important;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.solution-matrix,.resource-grid {
  counter-reset: solution;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.comment-form-cookies-consent {
  text-align: left;
  display: grid !important;
  grid-template-columns: auto 1fr;
  vertical-align: top;
  align-items: center;
  gap: 20px;
}
a.button.footer-cta.resorucebtn.open-popup {
    border: 1px solid #000;
        width: 160px;
}
.comment-form label {
  display: block;
  margin-bottom: 5px;
}
input#wp-comment-cookies-consent:focus {
    outline: none;
}
#rememberme {
  display: inline-block;
  height: 20px !important;
  width: 20px !important;
  vertical-align: middle;
}
#loginform label {
  display: inline-block !important;
}
.button.footer-cta.discoonect {
  display: block;
  width: 160px;
}