:root {
  --navy: #0b193e;
  --blue: #2458b8;
  --blue-dark: #16499f;
  --blue-pale: #eef4fc;
  --coral: #f15b46;
  --ink: #182442;
  --muted: #5c667b;
  --line: #dfe5ef;
  --wash: #f7f9fc;
  --white: #fff;
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

figure,
p,
ul {
  margin-top: 0;
}

.shell {
  width: min(1260px, calc(100% - 180px));
  margin-inline: auto;
}

.narrow {
  width: min(800px, 100%);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 60px;
  line-height: 1.08;
}

h2 {
  font-size: 32px;
  line-height: 1.15;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 9px 13px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  transform: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 107px;
  border-bottom: 1px solid #d8deea;
  background: var(--white);
}

.header-inner {
  display: flex;
  width: min(1290px, calc(100% - 150px));
  min-height: 106px;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 425px;
  width: 425px;
  overflow: visible;
}

.brand img {
  width: 425px;
  max-width: none;
}

.primary-navigation {
  margin-left: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 43px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a {
  color: #27324e;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--blue);
}

.header-search {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 40px;
  place-items: center;
  color: var(--navy);
  text-decoration: none;
}

.header-search .dashicons {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  height: 488px;
  overflow: hidden;
  background: #f9fbfe;
}

.hero-grid {
  display: grid;
  height: 488px;
  grid-template-columns: 590px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.hero-copy {
  z-index: 1;
  padding-top: 52px;
}

.hero-copy h1 {
  max-width: 590px;
  margin-bottom: 0;
  font-size: 56px;
}

.accent-rule {
  width: 47px;
  height: 5px;
  margin: 11px auto 0;
  border: 0;
  background: var(--blue);
}

.accent-rule--coral {
  background: var(--coral);
}

.hero-copy .accent-rule {
  width: 90px;
  height: 7px;
  margin: 25px 0 23px;
}

.hero-copy p {
  max-width: 555px;
  margin: 0;
  color: #4f5f78;
  font-size: 17px;
  line-height: 1.62;
}

.hero-copy p + p {
  margin-top: 0;
}

.hero-art {
  width: 650px;
  height: 488px;
  margin: 0;
  overflow: hidden;
}

.hero-art img {
  width: 650px;
  max-width: none;
  transform: translateY(-58px);
}

.home-section {
  overflow: hidden;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin-bottom: 0;
}

.purpose-section {
  height: 372px;
  padding-top: 28px;
  background: var(--white);
}

.purpose-section .section-title {
  margin-bottom: 20px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.purpose-grid article {
  display: grid;
  height: 262px;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 21px 18px;
  border: 1px solid #e2e7ef;
  border-radius: 8px;
  background: var(--white);
}

.purpose-icon {
  width: 140px;
  height: 140px;
  margin-left: -28px;
  object-fit: contain;
}

.purpose-grid article > div {
  padding-top: 15px;
}

.purpose-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.16;
}

.purpose-grid p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.text-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.text-link .dashicons {
  width: 15px;
  height: 15px;
  font-size: 15px;
  vertical-align: -3px;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-section {
  height: 450px;
  padding-top: 18px;
  background: var(--white);
}

.feature-section .section-title {
  margin-bottom: 18px;
}

.feature-card {
  display: grid;
  height: 348px;
  grid-template-columns: 475px minmax(0, 1fr);
  gap: 35px;
  align-items: center;
  padding: 30px 39px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  background: #f6f9fd;
}

.feature-copy {
  padding-left: 3px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow--coral {
  color: var(--coral);
}

.feature-copy h3 {
  margin-bottom: 13px;
  font-size: 27px;
  line-height: 1.13;
}

.feature-copy > p:not(.eyebrow) {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 18px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.button .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.feature-flow {
  position: relative;
  width: 100%;
  height: 290px;
  margin: 0;
}

.feature-flow img {
  width: 75%;
  max-height: none;
  object-fit: contain;
}

.feature-flow__labels {
  position: absolute;
  inset: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
  pointer-events: none;
}

.feature-flow__label {
  position: absolute;
  display: block;
  text-align: center;
}

.feature-flow__label--source {
  top: 78%;
  left: 0;
  width: 26%;
}

.feature-flow__label--masked {
  top: 41%;
  left: 31%;
  width: 20%;
  padding: 10px 7px;
  border-radius: 7px;
  background: #dfeafa;
}

.feature-flow__label--observe,
.feature-flow__label--protect,
.feature-flow__label--rights {
  left: 76%;
  width: 24%;
  text-align: left;
}

.feature-flow__label--observe {
  top: 11%;
}

.feature-flow__label--protect {
  top: 40%;
}

.feature-flow__label--rights {
  top: 70%;
}

.latest-section {
  height: 493px;
  padding-top: 17px;
  background: var(--white);
}

.latest-section .section-title {
  margin-bottom: 10px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 27px;
}

.post-card {
  position: relative;
  display: flex;
  height: 198px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e6ef;
  border-radius: 7px;
  background: var(--white);
}

.post-card__visual {
  display: grid;
  flex: 0 0 120px;
  width: 120px;
  place-items: center;
  overflow: hidden;
}

.post-card__visual img {
  width: 130px;
  height: 124px;
  max-width: none;
  object-fit: contain;
}

.post-card__body {
  min-width: 0;
  padding: 22px 38px 17px 3px;
}

.post-card__body h2,
.post-card__body h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.18;
}

.post-card__body h2 a,
.post-card__body h3 a {
  text-decoration: none;
}

.post-card__body p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue);
  text-decoration: none;
}

.card-arrow .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.situations-section {
  height: 290px;
  padding-top: 22px;
  background: var(--white);
}

.situations-section .section-title {
  margin-bottom: 8px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 39px;
}

.situation-grid article {
  display: grid;
  height: 190px;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  padding: 17px;
  background: #f2f5fa;
}

.situation-icon {
  width: 140px;
  height: 140px;
  margin-left: -20px;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.situation-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.situation-grid p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.method-section {
  background: var(--white);
}

.method-grid {
  display: grid;
  height: 408px;
  grid-template-columns: 410px minmax(0, 1fr);
  grid-template-rows: 205px 128px;
  gap: 24px 48px;
  padding-top: 37px;
}

.method-intro h2 {
  margin-bottom: 13px;
  font-size: 28px;
  line-height: 1.15;
}

.method-intro p {
  max-width: 395px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.53;
}

.method-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.method-points article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  padding-top: 16px;
}

.method-points img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.method-points h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.method-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.scope-card,
.principles-card {
  display: flex;
  height: 128px;
  align-items: center;
  border: 1px solid #e0e5ed;
  background: var(--white);
}

.scope-card {
  gap: 18px;
  padding: 16px 20px;
}

.scope-card > img {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  object-fit: cover;
}

.scope-card > div {
  display: grid;
  gap: 3px;
}

.scope-card strong,
.principles-card strong {
  color: var(--navy);
  font-size: 15px;
}

.scope-card small,
.principles-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.scope-card .text-link {
  margin-top: 3px;
  font-size: 12px;
}

.principles-card {
  justify-content: center;
  gap: 24px;
  padding: 16px 30px;
}

.principles-card > div {
  display: grid;
  max-width: 220px;
  gap: 4px;
}

.principles-card > img {
  width: 112px;
  height: 56px;
  object-fit: contain;
}

.site-footer {
  height: 299px;
  padding-top: 26px;
  border-top: 1px solid #e1e6ee;
  background: var(--white);
  color: #58647a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 350px 150px 200px minmax(0, 1fr);
  gap: 37px;
}

.footer-brand img {
  width: 400px;
  max-width: none;
  margin-bottom: 6px;
}

.footer-brand p {
  margin-bottom: 10px;
  color: #657086;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer h2 {
  margin: 6px 0 12px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 7px;
  font-size: 13px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #e1e6ee;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #7b8497;
  font-size: 12px;
}

.section {
  padding-block: 80px;
}

.listing-hero,
.article-hero {
  padding-block: 84px;
  border-bottom: 1px solid var(--line);
  background: #f5f8fd;
}

.listing-hero h1,
.article-hero h1 {
  margin-bottom: 20px;
  font-size: 52px;
}

.listing-hero p,
.article-deck {
  color: var(--muted);
  font-size: 18px;
}

.archive-description p {
  margin-bottom: 0;
}

.listing-page .post-card {
  height: 220px;
}

.pagination {
  margin-top: 50px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) 280px;
  justify-content: space-between;
  gap: 70px;
  padding-block: 80px;
}

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

.article-page > article > .article-content {
  padding-block: 80px;
}

.article-content h2,
.article-content h3 {
  margin: 1.8em 0 0.65em;
}

.article-content h2 {
  font-size: 31px;
}

.article-content h3 {
  font-size: 23px;
}

.article-content a {
  color: var(--blue-dark);
}

.article-content li {
  margin-bottom: 0.6em;
}

.article-aside {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 24px;
  border-top: 4px solid var(--coral);
  background: #fff4f2;
}

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

.error-page {
  min-height: 65vh;
  padding-block: 130px;
  text-align: center;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 50px;
  border: 1px dashed var(--line);
  text-align: center;
}

.contact-hero .contact-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.contact-address {
  margin: 0;
  font-size: 17px;
}

.contact-address a {
  color: var(--blue-dark);
  font-weight: 700;
}

.contact-address a:hover,
.contact-address a:focus-visible {
  color: var(--navy);
}

.contact-page .contact-content {
  padding-block: 70px;
}

.contact-content .contact-note {
  margin: 1.6em 0;
  padding: 20px 24px;
  border-top: 4px solid var(--coral);
  background: #fff4f2;
}

.contact-content .contact-note p {
  margin-bottom: 0;
}

@media (min-width: 1001px) and (max-width: 1180px), (max-width: 820px) {
  .shell {
    width: min(100% - 60px, 1040px);
  }

  .header-inner {
    width: min(100% - 40px, 1080px);
  }

  .brand {
    flex-basis: 300px;
    width: 300px;
  }

  .brand img {
    width: 300px;
  }

  .site-menu {
    gap: 22px;
  }

  .hero,
  .purpose-section,
  .feature-section,
  .latest-section,
  .situations-section,
  .method-grid,
  .site-footer {
    height: auto;
  }

  .hero-grid {
    height: auto;
    min-height: 480px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  }

  .hero-art {
    width: 580px;
  }

  .hero-art img {
    width: 580px;
  }

  .purpose-section,
  .feature-section,
  .latest-section,
  .situations-section {
    padding-block: 45px;
  }

  .feature-card {
    height: auto;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .post-card,
  .listing-page .post-card,
  .situation-grid article {
    height: auto;
    min-height: 190px;
  }

  .method-grid {
    grid-template-columns: 0.7fr 1.3fr;
    grid-template-rows: auto auto;
    padding-block: 55px 28px;
  }

  .site-footer {
    min-height: 299px;
    padding-bottom: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 24px;
  }
}

/* Native V1 desktop layout at its 864px source viewport. */
@media (min-width: 821px) and (max-width: 1000px) {
  body {
    width: auto;
    font-size: 10px;
  }

  .shell {
    width: min(756px, calc(100% - 108px));
  }

  .narrow {
    width: min(480px, 100%);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 19.2px;
  }

  h3 {
    font-size: 12px;
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    width: min(778px, calc(100% - 86px));
    min-height: 63px;
    gap: 15px;
  }

  .brand {
    flex-basis: 255px;
    width: 255px;
    margin-left: -37px;
  }

  .brand img {
    width: 255px;
  }

  .primary-navigation {
    margin-left: 95px;
  }

  .site-menu {
    gap: 31px;
  }

  .site-menu a {
    font-size: 9px;
  }

  .header-search {
    display: grid;
    flex: 0 0 17px;
    width: 17px;
    height: 24px;
    place-items: center;
    margin-left: 0;
  }

  .header-search .dashicons {
    width: 14px;
    height: 14px;
    font-size: 14px;
  }

  .hero,
  .hero-grid {
    height: 293px;
  }

  .hero-grid {
    grid-template-columns: 46.8254% 51.5873%;
    gap: 1.5873%;
  }

  .hero-copy {
    padding-top: 31px;
  }

  .hero-copy h1 {
    max-width: 335px;
    font-size: 34px;
  }

  .accent-rule {
    width: 28px;
    height: 3px;
    margin-top: 7px;
  }

  .hero-copy .accent-rule {
    width: 54px;
    height: 4px;
    margin: 15px 0 14px;
  }

  .hero-copy p {
    max-width: 333px;
    font-size: 10.2px;
  }

  .hero-art {
    width: 100%;
    height: 293px;
  }

  .hero-art img {
    width: 97%;
    transform: translate(-12px, -35px);
  }

  .purpose-section {
    height: 223px;
    padding-top: 17px;
  }

  .purpose-section .section-title {
    margin-bottom: 12px;
  }

  .purpose-grid {
    gap: 17px;
  }

  .purpose-grid article {
    height: 157px;
    grid-template-columns: 63px minmax(0, 1fr);
    gap: 13px;
    padding: 13px 11px;
    border-radius: 5px;
  }

  .purpose-icon {
    width: 84px;
    max-width: none;
    height: 84px;
    margin-left: -17px;
  }

  .purpose-grid article > div {
    padding-top: 9px;
  }

  .purpose-grid h3 {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .purpose-grid p {
    margin-bottom: 8px;
    font-size: 8.4px;
  }

  .text-link {
    font-size: 8.4px;
  }

  .text-link .dashicons {
    width: 9px;
    height: 9px;
    font-size: 9px;
    vertical-align: -2px;
  }

  .feature-section {
    height: 270px;
    padding-top: 11px;
  }

  .feature-section .section-title {
    margin-bottom: 11px;
  }

  .feature-card {
    height: 209px;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 8px;
    padding: 18px 23px;
    border-radius: 5px;
  }

  .feature-copy {
    padding-left: 2px;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 7.2px;
  }

  .feature-copy h3 {
    margin-bottom: 8px;
    font-size: 16.2px;
  }

  .feature-copy > p:not(.eyebrow) {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .button {
    min-height: 27px;
    gap: 4px;
    padding: 6px 11px;
    border-radius: 3px;
    font-size: 8.4px;
  }

  .button .dashicons {
    width: 10px;
    height: 10px;
    font-size: 10px;
  }

  .feature-flow img {
    width: 75%;
    max-width: none;
    max-height: 180px;
    transform: none;
  }

  .feature-flow {
    height: 173px;
  }

  .feature-flow__labels {
    font-size: 7.2px;
  }

  .feature-flow__label--masked {
    padding: 6px 4px;
    border-radius: 4px;
  }

  .footer-brand img {
    width: 214px;
    margin-left: -30px;
  }

  .latest-section {
    height: 296px;
    padding-top: 10px;
  }

  .latest-section .section-title {
    margin-bottom: 1px;
  }

  .post-grid {
    gap: 8px 16px;
  }

  .post-card {
    height: 119px;
    border-radius: 4px;
  }

  .post-card__visual {
    flex-basis: 72px;
    width: 72px;
  }

  .post-card__visual img {
    width: 90px;
    height: 86px;
  }

  .post-card__body {
    padding: 13px 23px 10px 2px;
  }

  .post-card__body h2,
  .post-card__body h3 {
    margin-bottom: 5px;
    font-size: 10.8px;
  }

  .post-card__body p {
    font-size: 7.8px;
  }

  .card-arrow {
    right: 10px;
    bottom: 10px;
    width: 15px;
    height: 15px;
  }

  .card-arrow .dashicons {
    width: 11px;
    height: 11px;
    font-size: 11px;
  }

  .situations-section {
    height: 174px;
    padding-top: 13px;
  }

  .situations-section .section-title {
    margin-bottom: 5px;
  }

  .situation-grid {
    gap: 23px;
  }

  .situation-grid article {
    height: 114px;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .situation-icon {
    width: 106px;
    max-width: none;
    height: 106px;
    margin-left: -20px;
  }

  .situation-grid h3 {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .situation-grid p {
    margin-bottom: 6px;
    font-size: 8.4px;
  }

  .method-grid {
    height: 245px;
    grid-template-columns: 246px minmax(0, 1fr);
    grid-template-rows: 123px 77px;
    gap: 14px 29px;
    padding-top: 22px;
  }

  .method-intro h2 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .method-intro p {
    max-width: 237px;
    font-size: 9px;
  }

  .method-points {
    gap: 15px;
  }

  .method-points article {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 6px;
    padding-top: 10px;
  }

  .method-points img {
    width: 48px;
    max-width: none;
    height: 48px;
  }

  .method-points h3 {
    margin-bottom: 4px;
    font-size: 10.2px;
  }

  .method-points p {
    font-size: 7.8px;
  }

  .scope-card,
  .principles-card {
    height: 77px;
    transform: translateY(-9px);
  }

  .scope-card {
    gap: 11px;
    padding: 10px 12px;
  }

  .scope-card > img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .scope-card > div {
    gap: 2px;
  }

  .scope-card strong,
  .principles-card strong {
    font-size: 9px;
  }

  .scope-card small,
  .principles-card small,
  .scope-card .text-link {
    font-size: 7.2px;
  }

  .scope-card .text-link {
    margin-top: 2px;
  }

  .principles-card {
    gap: 14px;
    padding: 10px 18px;
  }

  .principles-card > div {
    max-width: 132px;
    gap: 2px;
  }

  .principles-card > img {
    width: 67px;
    height: 34px;
  }

  .site-footer {
    height: 179px;
    padding-top: 16px;
  }

  .footer-grid {
    grid-template-columns: 208px 96px 128px minmax(0, 1fr);
    gap: 21px;
  }

  .footer-brand img {
    width: 185px;
    margin-left: -23px;
    margin-bottom: 4px;
  }

  .footer-brand p {
    margin-bottom: 6px;
    font-size: 7.8px;
  }

  .site-footer h2 {
    margin: 4px 0 7px;
    font-size: 8.4px;
  }

  .site-footer li {
    margin-bottom: 4px;
    font-size: 7.8px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 10px;
  }

  .footer-bottom p {
    font-size: 7.2px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 76px;
  }

  .header-inner {
    min-height: 75px;
  }

  .brand {
    flex-basis: 245px;
    width: 245px;
  }

  .brand img {
    width: 245px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-search {
    display: none;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 14px 35px rgb(20 42 80 / 14%);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .site-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-menu a {
    display: block;
    padding: 10px;
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-art {
    width: 100%;
    height: 390px;
  }

  .hero-art img {
    width: 100%;
    transform: none;
  }

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

  .feature-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .shell,
  .header-inner {
    width: calc(100% - 28px);
  }

  .brand {
    flex-basis: 225px;
    width: 225px;
  }

  .brand img {
    width: 225px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 27px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy .accent-rule {
    width: 66px;
    height: 5px;
    margin: 18px 0;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-art {
    height: 320px;
    margin-top: 6px;
  }

  .purpose-section,
  .feature-section,
  .latest-section,
  .situations-section {
    padding-block: 38px;
  }

  .section-title {
    margin-bottom: 24px !important;
  }

  .purpose-grid,
  .post-grid,
  .situation-grid,
  .method-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .purpose-grid,
  .post-grid,
  .situation-grid {
    gap: 14px;
  }

  .purpose-grid article {
    height: auto;
    min-height: 180px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 14px;
  }

  .purpose-icon {
    width: 112px;
    height: 112px;
    margin-left: -18px;
  }

  .purpose-grid article > div {
    padding-top: 5px;
  }

  .purpose-grid h3 {
    font-size: 18px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .feature-copy h3 {
    font-size: 24px;
  }

  .feature-flow img {
    max-height: 230px;
  }

  .post-card,
  .listing-page .post-card {
    min-height: 176px;
  }

  .post-card__visual {
    flex-basis: 102px;
    width: 102px;
  }

  .post-card__visual img {
    width: 108px;
    height: 104px;
  }

  .post-card__body {
    padding: 18px 32px 16px 0;
  }

  .post-card__body h2,
  .post-card__body h3 {
    font-size: 17px;
  }

  .situation-grid article {
    min-height: 170px;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .situation-icon {
    width: 116px;
    height: 116px;
    margin-left: -12px;
  }

  .method-grid {
    gap: 20px;
    padding-block: 42px 24px;
  }

  .method-points {
    gap: 12px;
  }

  .method-points article {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .scope-card,
  .principles-card {
    height: auto;
    min-height: 128px;
  }

  .principles-card {
    gap: 12px;
    padding: 16px;
  }

  .principles-card > img {
    width: 74px;
    flex: 0 0 74px;
  }

  .site-footer {
    padding-top: 34px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 330px;
  }

  .footer-bottom {
    margin-top: 26px;
    padding-bottom: 18px;
  }

  .listing-hero,
  .article-hero {
    padding-block: 60px;
  }

  .listing-hero h1,
  .article-hero h1 {
    font-size: 38px;
  }

  .article-layout,
  .article-page > article > .article-content,
  .section {
    padding-block: 55px;
  }

  .contact-hero .contact-lede {
    font-size: 16px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-page .contact-content {
    padding-block: 48px;
  }

  .contact-content .contact-note {
    padding: 16px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Blog system 2026-08 — fil d'Ariane, sommaire, image de une, lectures suivantes */

.breadcrumb {
  margin-bottom: 22px;
  font-size: 14px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.breadcrumb li:not(:first-child)::before {
  content: "›";
  margin-right: 6px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--blue-dark);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.article-terms a {
  color: var(--blue-dark);
  text-decoration: none;
}

.article-terms a:hover,
.article-terms a:focus-visible {
  text-decoration: underline;
}

.listing-count {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.category-rail a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-dark);
  font-size: 14px;
  text-decoration: none;
}

.category-rail a:hover,
.category-rail a:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.article-figure {
  margin: 0 0 34px;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.article-aside-col {
  display: grid;
  align-self: start;
  gap: 24px;
}

.article-toc {
  padding: 24px;
  border-top: 4px solid var(--blue);
  background: var(--blue-pale);
}

.article-toc ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.article-toc li {
  margin-bottom: 10px;
}

.article-toc a {
  color: var(--blue-dark);
  font-size: 15px;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  text-decoration: underline;
}

.related-section {
  padding-block: 70px;
  border-top: 1px solid var(--line);
  background: var(--wash);
}

.related-section h2 {
  margin-bottom: 30px;
  font-size: 31px;
}

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

@media (max-width: 900px) {
  .article-aside-col {
    position: static;
  }

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

/* Codex editorial thumbnails in article cards, fixed 3:2 crop. */
.post-card__visual img.post-card__photo {
  width: 120px;
  height: 80px;
  max-width: none;
  object-fit: cover;
}

@media (min-width: 821px) and (max-width: 1000px) {
  .post-card__visual img.post-card__photo {
    width: 72px;
    height: 48px;
  }
}

@media (max-width: 560px) {
  .post-card__visual img.post-card__photo {
    width: 102px;
    height: 68px;
  }
}
