:root {
  color-scheme: light;
  --ink: #30363c;
  --muted: #66717a;
  --line: #dce3e7;
  --paper: #ffffff;
  --wash: #f5f8fa;
  --pink: #e9445d;
  --pink-action: #d3344c;
  --pink-soft: #fff0f3;
  --aqua: #007f92;
  --aqua-bright: #00cbe6;
  --aqua-soft: #e8fbfd;
  --blue: #526db8;
  --blue-soft: #eef2ff;
  --yellow: #ffcf6d;
  --radius: 1.5rem;
  --shadow: 0 1.25rem 3.75rem rgba(48, 54, 60, 0.12);
  --content: 75rem;
  --reading: 48rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-wrap: break-word;
}

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

a {
  color: var(--aqua);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--pink-action);
}

a:focus-visible,
summary:focus-visible {
  border-radius: 0.25rem;
  outline: 0.2rem solid var(--pink);
  outline-offset: 0.25rem;
}

.skip-link {
  background: var(--ink);
  color: var(--paper);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-200%);
  transition: transform 120ms ease;
  z-index: 100;
}

.skip-link:focus {
  color: var(--paper);
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  min-height: 5.5rem;
  padding: 1rem max(1.25rem, calc((100vw - var(--content)) / 2));
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  height: auto;
  width: 10rem;
}

.desktop-nav,
.desktop-nav ul {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  margin: 0;
}

.desktop-nav ul {
  list-style: none;
  padding: 0;
}

.desktop-nav a,
.mobile-nav a {
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  background: var(--pink-soft);
  color: #b5253c;
}

.desktop-nav .nav-portfolio,
.mobile-nav .nav-portfolio {
  border: 1px solid var(--line);
  margin-left: 0.35rem;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav[open] nav {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  min-width: 15rem;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  z-index: 20;
}

.mobile-nav nav a {
  width: 100%;
}

.archive-notice {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  font-size: 0.82rem;
  gap: 0.75rem;
  justify-content: center;
  letter-spacing: 0.01em;
  min-height: 2.75rem;
  padding: 0.6rem 1.25rem;
  text-align: center;
}

.archive-notice strong {
  color: var(--yellow);
}

.archive-notice a {
  color: var(--paper);
}

main {
  display: block;
}

.hero,
.section-shell,
.partner-section,
.feature-group,
.retired-action,
.closing-panel,
.article-shell,
.not-found {
  margin-inline: auto;
  max-width: var(--content);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  min-height: min(47rem, calc(100vh - 8rem));
  padding-block: clamp(4rem, 9vw, 8rem);
}

.hero--compact {
  min-height: 33rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero__copy {
  max-width: 43rem;
}

.eyebrow {
  color: var(--aqua);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero h1,
.article-hero h1,
.not-found h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.hero h1 span {
  color: var(--pink);
  display: block;
  font-weight: 760;
}

.hero__lead {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
  margin: 1.75rem 0 0;
  max-width: 37rem;
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.4rem;
  text-decoration: none;
}

.button--primary {
  background: var(--pink-action);
  color: var(--paper);
}

.button--primary:hover {
  background: #c92f48;
  color: var(--paper);
}

.button--secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.button--secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.text-link,
.card-link {
  font-weight: 750;
}

.hero-visual {
  align-items: center;
  aspect-ratio: 1 / 0.9;
  background:
    radial-gradient(circle at 76% 20%, var(--yellow) 0 0.65rem, transparent 0.7rem),
    radial-gradient(circle at 14% 75%, var(--aqua-bright) 0 1rem, transparent 1.05rem),
    linear-gradient(145deg, var(--pink-soft), var(--blue-soft));
  border-radius: 50% 50% 42% 58% / 56% 45% 55% 44%;
  display: flex;
  justify-content: center;
  padding: 12%;
}

.hero-visual__window {
  background: var(--paper);
  border: 1px solid rgba(48, 54, 60, 0.08);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  transform: rotate(2deg);
  width: 100%;
}

.hero-visual__dot {
  background: var(--line);
  border-radius: 50%;
  display: inline-block;
  height: 0.55rem;
  margin-right: 0.25rem;
  width: 0.55rem;
}

.hero-visual__chart {
  align-items: end;
  background: var(--wash);
  border-radius: 0.85rem;
  display: flex;
  gap: 7%;
  height: 10rem;
  margin-top: 1rem;
  padding: 1rem;
}

.hero-visual__chart i {
  background: linear-gradient(var(--aqua-bright), var(--blue));
  border-radius: 999px 999px 0 0;
  display: block;
  flex: 1;
}

.hero-visual__chart i:nth-child(1) {
  height: 34%;
}

.hero-visual__chart i:nth-child(2) {
  height: 55%;
}

.hero-visual__chart i:nth-child(3) {
  height: 44%;
}

.hero-visual__chart i:nth-child(4) {
  height: 74%;
}

.hero-visual__chart i:nth-child(5) {
  height: 91%;
}

.hero-visual__rows {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero-visual__rows i {
  background: var(--line);
  border-radius: 999px;
  display: block;
  height: 0.55rem;
}

.hero-visual__rows i:nth-child(2) {
  width: 72%;
}

.hero-visual__rows i:nth-child(3) {
  width: 43%;
}

.quote-band {
  background: var(--pink-soft);
  padding: clamp(4rem, 8vw, 7rem) max(1.25rem, calc((100vw - 58rem) / 2));
  text-align: center;
}

.quote-band blockquote {
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  font-weight: 320;
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin: 0;
}

.quote-band > p:last-child {
  color: var(--muted);
  font-weight: 750;
  margin: 1.5rem 0 0;
}

.split-section {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
  margin-inline: auto;
  max-width: var(--content);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 3rem);
}

.split-section h2,
.section-heading h2,
.feature-group > header h2,
.retired-action h2,
.closing-panel h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 350;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

.split-section p:not(.eyebrow),
.retired-action p:not(.eyebrow),
.closing-panel p {
  color: var(--muted);
  font-size: 1.15rem;
}

.abstract-panel {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 16%;
  position: relative;
}

.abstract-panel--aqua {
  background: var(--aqua-soft);
}

.abstract-panel span {
  background: var(--paper);
  border-radius: 0.75rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 127, 146, 0.12);
  display: block;
  height: 15%;
  margin-bottom: 7%;
}

.abstract-panel span:first-child {
  background: var(--aqua-bright);
  height: 24%;
  width: 70%;
}

.abstract-panel span:nth-child(3) {
  width: 77%;
}

.abstract-panel span:nth-child(4) {
  width: 52%;
}

.section-shell,
.partner-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
  max-width: 48rem;
}

.reason-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-grid article,
.feature-grid article,
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.reason-grid article {
  background: var(--paper);
}

.reason-grid h3,
.feature-grid h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 1.5rem 0 0.75rem;
}

.reason-grid p,
.feature-grid p,
.blog-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.reason-number {
  color: var(--pink-action);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.partner-section {
  border-top: 1px solid var(--line);
}

.partner-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.partner-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-weight: 720;
  min-height: 7rem;
  padding: 1.25rem;
}

.partner-list li:nth-child(-n + 4) {
  border-top: 1px solid var(--line);
}

.partner-list li:not(:nth-child(4n + 1)) {
  border-left: 1px solid var(--line);
}

.partner-list a {
  color: var(--ink);
}

.feature-orbit,
.contact-mark,
.support-rings,
.blog-stack {
  aspect-ratio: 1;
  position: relative;
}

.feature-orbit {
  background: var(--pink-soft);
  border-radius: 50%;
}

.feature-orbit i {
  border: 0.9rem solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: block;
  height: 34%;
  position: absolute;
  width: 34%;
}

.feature-orbit i:nth-child(1) {
  background: var(--pink);
  left: 11%;
  top: 14%;
}

.feature-orbit i:nth-child(2) {
  background: var(--aqua-bright);
  right: 10%;
  top: 32%;
}

.feature-orbit i:nth-child(3) {
  background: var(--blue);
  bottom: 8%;
  left: 27%;
}

.feature-group {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.feature-group + .feature-group {
  border-top: 1px solid var(--line);
}

.feature-group > header {
  align-items: baseline;
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-group > header > span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.feature-icon {
  align-items: center;
  background: var(--wash);
  border-radius: 50%;
  display: flex;
  height: 4.25rem;
  justify-content: center;
  width: 4.25rem;
}

.feature-icon span {
  font-size: 0.75rem;
  font-weight: 850;
}

.feature-group--pink .feature-icon {
  background: var(--pink-soft);
  color: #b5253c;
}

.feature-group--aqua .feature-icon {
  background: var(--aqua-soft);
  color: #006473;
}

.feature-group--blue .feature-icon {
  background: var(--blue-soft);
  color: #344e98;
}

.closing-panel,
.retired-action {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.closing-panel {
  text-align: center;
}

.closing-panel h2,
.retired-action h2 {
  color: var(--paper);
}

.closing-panel p,
.retired-action p:not(.eyebrow) {
  color: #d7dde1;
}

.closing-panel p {
  margin-inline: auto;
  max-width: 44rem;
}

.closing-panel .button {
  margin-top: 1rem;
}

.contact-mark {
  background: var(--aqua-soft);
  border-radius: 42% 58% 66% 34% / 42% 37% 63% 58%;
}

.contact-mark span {
  border: 0.9rem solid var(--paper);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  height: 38%;
  left: 25%;
  position: absolute;
  top: 31%;
  transform: rotate(-5deg);
  width: 50%;
}

.contact-mark span::after,
.contact-mark span::before {
  background: var(--aqua);
  content: "";
  height: 0.35rem;
  left: 18%;
  position: absolute;
  width: 64%;
}

.contact-mark span::before {
  top: 35%;
}

.contact-mark span::after {
  top: 58%;
}

.support-rings {
  background: var(--blue-soft);
  border-radius: 50%;
}

.support-rings i {
  border: 1rem solid var(--paper);
  border-radius: 50%;
  display: block;
  position: absolute;
}

.support-rings i:nth-child(1) {
  height: 70%;
  left: 15%;
  top: 15%;
  width: 70%;
}

.support-rings i:nth-child(2) {
  border-color: var(--pink);
  height: 42%;
  left: 29%;
  top: 29%;
  width: 42%;
}

.support-rings i:nth-child(3) {
  background: var(--aqua-bright);
  border: 0;
  height: 10%;
  left: 45%;
  top: 45%;
  width: 10%;
}

.blog-stack {
  background: var(--pink-soft);
  border-radius: var(--radius);
}

.blog-stack i {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: block;
  height: 58%;
  left: 20%;
  position: absolute;
  top: 21%;
  width: 60%;
}

.blog-stack i:nth-child(1) {
  transform: rotate(-11deg);
}

.blog-stack i:nth-child(2) {
  transform: rotate(8deg);
}

.blog-stack i:nth-child(3) {
  background:
    linear-gradient(var(--aqua-bright), var(--aqua-bright)) 1.25rem 1.25rem /
      42% 0.45rem no-repeat,
    linear-gradient(var(--line), var(--line)) 1.25rem 2.25rem / 70% 0.35rem
      no-repeat,
    linear-gradient(var(--line), var(--line)) 1.25rem 3rem / 54% 0.35rem
      no-repeat,
    var(--paper);
  transform: rotate(-1deg);
}

.retired-action {
  max-width: 65rem;
}

.retired-action .button-row {
  margin-top: 2rem;
}

.retired-action .text-link {
  color: var(--paper);
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--content);
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(5rem, 10vw, 9rem);
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 24rem;
}

.blog-card--1 {
  background: var(--pink-soft);
}

.blog-card--2 {
  background: var(--aqua-soft);
}

.blog-card--3 {
  background: var(--blue-soft);
}

.blog-card h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0;
}

.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card .card-link {
  margin-top: auto;
  padding-top: 2rem;
}

.article-shell {
  max-width: 72rem;
  padding-block: clamp(4rem, 9vw, 8rem);
}

.article-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.article-hero h1 {
  font-size: clamp(2.65rem, 6.5vw, 5.6rem);
  max-width: 68rem;
}

.article-hero time {
  color: var(--muted);
  display: block;
  font-weight: 700;
  margin-top: 1.75rem;
}

.article-body,
.omission-note,
.article-return {
  margin-inline: auto;
  max-width: var(--reading);
}

.article-section {
  margin: 0 0 2.5rem;
}

.article-copy,
.article-section > p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.78;
  margin: 0 0 1.35rem;
}

.article-copy--lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  line-height: 1.62;
}

.article-heading,
.article-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 3.25rem 0 1rem;
}

.article-list {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

ul.article-list {
  padding-left: 1.5rem;
}

li.article-list {
  margin-bottom: 0.65rem;
}

.article-quote {
  border-left: 0.35rem solid var(--pink);
  margin: 3rem 0;
  padding: 1rem 0 1rem 2rem;
}

.article-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin: 0;
}

.article-quote cite {
  color: var(--muted);
  display: block;
  font-style: normal;
  margin-top: 1rem;
}

.article-cite-line {
  display: block;
}

.article-stats {
  background: var(--aqua-soft);
  border-radius: var(--radius);
  margin: 3rem 0;
  padding: 2rem;
}

.article-stats h2 {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.article-stats ul {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-stats li {
  background: var(--paper);
  border-radius: 1rem;
  padding: 1.5rem;
}

.article-stat {
  display: inline;
}

span.article-stat {
  color: var(--aqua);
  font-size: 2rem;
  font-weight: 800;
}

p.article-stat {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.article-label {
  color: var(--pink-action);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 850;
  gap: 0.3rem;
  letter-spacing: 0.09em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.article-label-detail {
  display: inline;
}

.article-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3rem 0;
}

.omission-note {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 1rem;
  margin-top: 4rem;
  padding: 1.5rem;
}

.omission-note h2 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

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

.article-return {
  margin-top: 2rem;
}

.not-found {
  min-height: 52vh;
  padding-block: clamp(5rem, 12vw, 10rem);
  text-align: center;
}

.not-found h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.not-found p {
  color: var(--muted);
  font-size: 1.15rem;
  margin: 1.5rem auto 2rem;
  max-width: 36rem;
}

.site-footer {
  background: var(--ink);
  color: #d7dde1;
  padding: clamp(3rem, 7vw, 5rem) max(1.25rem, calc((100vw - var(--content)) / 2));
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.site-footer h2 {
  color: var(--paper);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.site-footer p {
  margin: 0;
  max-width: 32rem;
}

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

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

.site-footer a {
  color: var(--paper);
}

.site-footer small {
  border-top: 1px solid #555e66;
  display: block;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

@media (max-width: 62rem) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .hero-visual,
  .feature-orbit,
  .contact-mark,
  .support-rings,
  .blog-stack {
    margin-inline: auto;
    max-width: 32rem;
    width: 100%;
  }

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

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

  .partner-list li {
    border-left: 0;
    border-top: 0;
  }

  .partner-list li:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .partner-list li:nth-child(even) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 43rem) {
  .site-header {
    min-height: 4.75rem;
  }

  .site-logo img {
    width: 8.25rem;
  }

  .archive-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
    text-align: left;
  }

  .hero {
    min-height: 0;
    padding-block: 4rem;
  }

  .hero h1,
  .article-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .feature-grid,
  .blog-grid,
  .article-stats ul,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .partner-list li,
  .partner-list li:nth-child(even),
  .partner-list li:nth-child(-n + 2) {
    border-left: 0;
    border-top: 0;
  }

  .partner-list li:first-child {
    border-top: 1px solid var(--line);
  }

  .blog-card {
    min-height: 20rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .article-shell {
    padding-block: 3.5rem;
  }

  .article-quote {
    padding-left: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .skip-link,
  .site-header,
  .archive-notice,
  .site-footer,
  .article-return {
    display: none;
  }

  body {
    color: #000;
  }

  a {
    color: inherit;
  }
}
