@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ibm-plex-sans-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ibm-plex-sans-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Serif';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ibm-plex-serif-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-medium.woff2') format('woff2');
}

:root {
  --ink: #13242c;
  --ink-soft: #4b5c65;
  --canvas: #f4f7f8;
  --paper: #fff;
  --line: #d9e0e3;
  --line-deep: #bcc7cc;
  --brand: #0b82a8;
  --brand-deep: #096d8e;
  --brand-wash: #e2f1f6;
  --positive: #18a24b;
  --positive-deep: #12873e;
  --positive-wash: #e4f4ea;
  --danger: #d33f2c;
  --danger-wash: #fbe9e6;
  --gold: #e9a400;
  --frame: 1440px;
  --rail-gap: clamp(1rem, 2vw, 1.75rem);
  --edge: clamp(1rem, 3vw, 2.25rem);
  --content-section-space: clamp(1.5rem, 4vw, 2.75rem);
  --curve: 12px;
  --shadow-float: 0 18px 45px rgb(19 36 44 / 14%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-rail-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

em {
  color: var(--brand);
  font-style: normal;
}

:focus-visible {
  outline: 3px solid rgb(11 130 168 / 38%);
  outline-offset: 3px;
}

.page-frame {
  width: min(100% - (2 * var(--edge)), var(--frame));
  margin-inline: auto;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--paper);
  color: var(--ink);
}

.site-mast {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
}

.site-mast__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.site-identity {
  flex: 0 0 auto;
  margin-right: auto;
}

.site-identity__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.site-identity__image {
  width: auto;
  max-width: min(190px, 38vw);
  max-height: 46px;
}

.site-identity__name {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mast-nav {
  min-width: 0;
}

.mast-nav__list,
.mast-nav__list ul,
.language-pick__list,
.section-nav__list,
.section-nav__list ul,
.foot-nav__columns,
.foot-nav__columns ul,
.social-links,
.reading-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mast-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 0.75rem);
}

.mast-nav__list > li {
  position: relative;
}

.mast-nav__list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.mast-nav__list .menu-item-placeholder {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.7rem;
  font-weight: 600;
}

.mast-nav__list a:hover,
.mast-nav__list .current-menu-item > a,
.mast-nav__list .current-menu-ancestor > a {
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.mast-nav__list .sub-menu {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms;
}

.mast-nav__list li:hover > .sub-menu,
.mast-nav__list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-pick {
  flex: 0 0 auto;
}

.language-pick__list {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
}

.language-pick__link {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 34px;
  padding-inline: 0.55rem;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  font-weight: 500;
  text-decoration: none;
}

.language-pick__link:hover,
.language-pick__link.is-current {
  background: var(--paper);
  color: var(--brand-deep);
  box-shadow: 0 1px 4px rgb(19 36 44 / 10%);
}

.rail-opener {
  display: none;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.rail-opener__glyph {
  display: grid;
  gap: 4px;
  width: 19px;
}

.rail-opener__glyph i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
}

.reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--rail-gap);
  align-items: start;
  padding-block: clamp(1.25rem, 3vw, 2.5rem) clamp(3rem, 7vw, 6rem);
}

.reading-column {
  min-width: 0;
}

.section-rail,
.reading-rail {
  min-width: 0;
}

.section-rail__toolbar {
  display: none;
}

.section-nav,
.rail-panel {
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
}

.section-nav {
  padding: 0.65rem;
}

.section-nav__list a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.section-nav__list .menu-item-placeholder {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.section-nav__list a:hover,
.section-nav__list .current-menu-item > a,
.section-nav__list .current-menu-ancestor > a {
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.section-nav__list .sub-menu {
  padding-left: 0.65rem;
  border-left: 1px solid var(--line);
  margin-left: 0.7rem;
}

.section-nav__list .sub-menu a {
  min-height: 36px;
  font-size: 0.86rem;
  font-weight: 400;
}

.reading-rail {
  display: grid;
  gap: 1rem;
}

.rail-panel {
  padding: 1rem;
}

.rail-panel__title {
  padding-bottom: 0.7rem;
  margin: 0 0 0.85rem;
  border-bottom: 1px solid var(--line);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

.offer-stack {
  display: grid;
  gap: 0.75rem;
}

.offer-chip {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--paper), var(--positive-wash));
}

.offer-chip__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.offer-chip__logo {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0.3rem;
  border-radius: 8px;
  background: var(--paper);
}

.offer-chip__image {
  max-height: 38px;
  object-fit: contain;
}

.offer-chip__name,
.offer-chip p {
  margin: 0;
}

.offer-chip__name {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.25;
}

.offer-chip p {
  margin-top: 0.65rem;
  color: var(--positive-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-chip__cta,
.action-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  margin-top: 0.75rem;
  border-radius: 8px;
  background: var(--positive);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 150ms ease;
}

.offer-chip__cta {
  display: flex;
}

.offer-chip__cta:hover,
.action-link:hover {
  background: var(--positive-deep);
}

.reading-links {
  display: grid;
}

.reading-links li + li {
  border-top: 1px solid var(--line);
}

.reading-links a {
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem 0;
  line-height: 1.38;
  text-decoration: none;
}

.reading-links a span {
  font-size: 0.9rem;
  font-weight: 600;
}

.story-card__date {
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
}

.reading-links a:hover span {
  color: var(--brand-deep);
}

.content-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}

.content-links a {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition:
    border-color 150ms ease,
    color 150ms ease;
}

.content-links a:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.post-related {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line-deep);
  margin-top: var(--content-section-space);
}

.entry-content .post-related > h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.page-intro {
  padding-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid var(--line-deep);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.page-intro__featured-media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--curve);
  background: var(--brand-wash);
}

.page-intro__featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro h1,
.not-found h1 {
  margin: 0;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.9375rem, 1.46875rem + 2.35vw, 2.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-intro h1 em,
:is(h2, h3, h4, h5, h6) em {
  color: var(--brand);
  font-style: normal;
}

.page-intro--archive h1 {
  font-size: clamp(1.9375rem, 1.46875rem + 2.35vw, 2.875rem);
}

.page-intro__lead {
  max-width: 760px;
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
}

.page-intro__lead > :first-child {
  margin-top: 0;
}

.page-intro__lead > :last-child {
  margin-bottom: 0;
}

.crumb-trail {
  margin-block: clamp(0.5rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.5rem);
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.4;
}

.crumb-trail ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.crumb-trail li:not(:last-child)::after {
  content: '/';
  margin-left: 0.45rem;
  color: var(--line-deep);
}

.crumb-trail a {
  text-underline-offset: 0.2em;
}

.crumb-trail a:hover {
  color: var(--brand-deep);
}

.metric-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.metric-ribbon__unit {
  display: grid;
  flex: 1 1 150px;
  align-content: center;
  min-height: 92px;
  padding: 1rem;
  background: var(--paper);
}

.metric-ribbon__value {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.metric-ribbon__label {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.metric-ribbon__unit > :only-child {
  margin-block: 0;
}

.review-hero {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
  box-shadow: 0 1px 2px rgb(19 36 44 / 4%);
}

.review-hero__media {
  display: grid;
  place-items: center;
  min-height: 11rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(155deg, var(--ink), #203942);
}

.review-hero__logo {
  width: 100%;
  max-width: 12rem;
  max-height: 7rem;
  object-fit: contain;
}

.review-hero__logo-fallback {
  max-width: 12rem;
  color: var(--paper);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

.review-hero__summary {
  min-width: 0;
  padding: clamp(1.125rem, 3vw, 1.75rem);
}

.review-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.review-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--positive-wash);
  color: var(--positive-deep);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
}

.review-hero__badge::before {
  color: var(--positive);
  content: '★';
}

.review-hero__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1;
}

.review-hero__rating > span {
  margin-right: 0.15rem;
  color: var(--gold);
}

.review-hero__rating small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.review-hero__description {
  max-width: 62ch;
  margin-top: 0.875rem;
  font-size: 1rem;
}

.review-hero__offer {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  margin-top: 1.125rem;
  border: 1px solid #cae5d4;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--positive-wash), #f1faf4);
}

.review-hero__bonus-group {
  display: grid;
  gap: 0.25rem;
}

.review-hero__bonus-label,
.review-hero__promo-label,
.review-hero__details-label {
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.review-hero__bonus {
  color: var(--ink);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
}

.review-hero__bonus em {
  color: var(--brand);
}

.review-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-hero__actions > * {
  flex-grow: 1;
}

.review-hero__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-hero__platforms > * {
  flex: 1 1 calc(50% - 0.5rem);
}

.review-hero__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.625rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line-deep);
  border-radius: 9px;
  background: var(--paper);
  color: var(--brand-deep);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.review-hero__button--primary {
  border-color: var(--positive);
  background: var(--positive);
  color: var(--paper);
}

.review-hero__button:is(:hover, :focus-visible) {
  border-color: var(--brand);
  background: var(--paper);
  color: var(--brand-deep);
}

.review-hero__button--primary:is(:hover, :focus-visible) {
  border-color: var(--positive-deep);
  background: var(--positive-deep);
  color: var(--paper);
}

.review-hero__button-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.review-hero__promo {
  position: relative;
  display: grid;
  gap: 0.35rem;
}

.review-hero__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px dashed var(--line-deep);
  border-radius: 8px;
  background: rgb(255 255 255 / 74%);
  color: var(--brand-deep);
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background-color 140ms ease;
}

.review-hero__copy code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.review-hero__copy:is(:hover, :focus-visible) {
  border-color: var(--brand);
  background: var(--paper);
}

.review-hero__copy.is-copied {
  border-color: var(--positive);
  background: var(--positive-wash);
  color: var(--positive-deep);
}

.review-hero__details {
  display: grid;
  gap: 1rem;
  padding: clamp(1.125rem, 3vw, 1.5rem);
  border-top: 1px solid var(--line);
  background: #fbfcfc;
}

.review-hero__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 8.5rem), 1fr));
  gap: 0.625rem;
  margin: 0;
}

.review-hero__info-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
}

.review-hero__info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-deep);
}

.review-hero__info-item dt,
.review-hero__info-item dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.review-hero__info-item dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.35;
}

.review-hero__info-item dd {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.review-hero__payments {
  display: grid;
  gap: 0.55rem;
}

.review-hero__payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.review-hero__payment {
  display: grid;
  place-items: center;
  min-width: 3.25rem;
  height: 2.4rem;
  padding: 0.3rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.review-hero__payment-logo {
  width: auto;
  max-width: 3.4rem;
  max-height: 1.65rem;
  object-fit: contain;
}

.review-hero__proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-hero__points {
  display: grid;
  gap: 0.3rem;
  padding: 0;
  margin: 0.5rem 0 0;
  list-style: none;
}

.review-hero__points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.review-hero__points li::before {
  position: absolute;
  left: 0;
  color: var(--positive-deep);
  font-weight: 600;
  content: '+';
}

.review-hero__points--cons li::before {
  color: var(--danger);
  content: '−';
}

@media (min-width: 740px) {
  .review-hero {
    grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
  }

  .review-hero__details {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1000px) {
  .review-hero__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-hero__info,
  .review-hero__proscons {
    grid-column: 1 / -1;
  }
}

.toc-nav {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.toc-panel {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
}

.toc-panel[open] {
  border-color: var(--line-deep);
}

.toc-panel__toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.125rem;
  color: var(--brand-deep);
  list-style: none;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.toc-panel__toggle::-webkit-details-marker {
  display: none;
}

.toc-panel__toggle:is(:hover, :focus-visible) {
  background: var(--brand-wash);
}

.toc-panel__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.toc-panel__icon-svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.toc-panel__title {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
}

.toc-panel__marker {
  width: 0.625rem;
  height: 0.625rem;
  margin-right: 0.25rem;
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  transform: rotate(45deg) translate(-0.125rem, -0.125rem);
  transition: transform 150ms ease;
}

.toc-panel[open] .toc-panel__marker {
  transform: rotate(225deg) translate(-0.125rem, -0.125rem);
}

.toc-panel__content {
  padding: 0.375rem 0 0.5rem;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--brand);
}

.toc-panel__list {
  counter-reset: toc-h2;
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc-panel__item {
  counter-increment: toc-h2;
}

.toc-panel__row,
.toc-panel__subrow {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.625rem 1.125rem 0.625rem calc(1.125rem - 3px);
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.45;
  text-decoration: none;
  transition: background-color 140ms ease;
}

.toc-panel__row::before,
.toc-panel__subrow::before {
  color: var(--brand-deep);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
}

.toc-panel__row::before {
  content: counter(toc-h2, decimal-leading-zero);
}

.toc-panel__row:is(:hover, :focus-visible),
.toc-panel__subrow:is(:hover, :focus-visible) {
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.toc-panel__row:focus-visible,
.toc-panel__subrow:focus-visible {
  outline-offset: -3px;
}

.toc-panel__sublist {
  counter-reset: toc-h3;
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc-panel__subitem {
  counter-increment: toc-h3;
}

.toc-panel__subrow {
  padding-left: 1.75rem;
}

.toc-panel__subrow::before {
  content: counter(toc-h2, decimal-leading-zero) '.'
    counter(toc-h3, decimal-leading-zero);
}

.entry-content :is(h2, h3)[id] {
  scroll-margin-top: 6rem;
}

.entry-content {
  font-size: clamp(1rem, 1.3vw, 1.075rem);
}

.date-stamp,
.editorial-stamp {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.date-stamp,
.editorial-stamp__date {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.35rem;
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
}

.date-stamp {
  padding: 0.8rem 1rem;
}

.date-stamp span,
.editorial-stamp__date span {
  color: var(--ink-soft);
}

.date-stamp time,
.editorial-stamp__date time {
  color: var(--ink);
  font-weight: 500;
}

.editorial-stamp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
}

.editorial-stamp__person {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.editorial-stamp__photo {
  flex: 0 0 52px;
  overflow: hidden;
  width: 52px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--brand-wash);
}

.editorial-stamp__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-stamp__identity {
  display: grid;
  min-width: 0;
  line-height: 1.3;
}

.editorial-stamp__identity strong {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.05rem;
}

.editorial-stamp__identity > span {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.editorial-stamp__person:hover strong {
  color: var(--brand-deep);
}

.editorial-stamp__summary {
  flex: 1 1 240px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.editorial-stamp__date {
  flex: 0 1 auto;
  margin: 0;
}

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

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

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 2em 0 0.65em;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.entry-content h2 {
  font-size: clamp(1.4375rem, 1.3125rem + 0.5vw, 1.6875rem);
}

.entry-content h3 {
  font-size: clamp(1.25rem, 1.1875rem + 0.25vw, 1.4375rem);
}

.entry-content h4 {
  font-size: clamp(1.125rem, 1.0625rem + 0.2vw, 1.25rem);
}

.entry-content h5 {
  font-size: clamp(1.0625rem, 1.025rem + 0.1vw, 1.125rem);
}

.entry-content h6 {
  font-size: 1rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  margin-block: 1em;
}

.entry-content a:not([class]) {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgb(11 130 168 / 38%);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.17em;
  transition:
    color 140ms ease,
    text-decoration-color 140ms ease;
}

.entry-content a:not([class]):hover {
  color: var(--brand);
  text-decoration-color: currentcolor;
}

.entry-content blockquote {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--brand);
  border-radius: 0 10px 10px 0;
  background: var(--brand-wash);
}

.entry-content :is(ul, ol):not([class]) {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.entry-content :is(ul, ol):not([class]) > li {
  position: relative;
  min-width: 0;
  padding-inline-start: 1.8rem;
}

.entry-content ul:not([class]) > li::before {
  position: absolute;
  top: 0.5lh;
  inset-inline-start: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-wash);
  content: '';
  transform: translateY(-50%);
}

.entry-content ol:not([class]) {
  counter-reset: content-list;
}

.entry-content ol:not([class]) > li {
  counter-increment: content-list;
}

.entry-content ol:not([class]) > li::before {
  position: absolute;
  top: 0.225em;
  inset-inline-start: 0;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 5px;
  background: var(--brand-deep);
  color: var(--paper);
  content: counter(content-list);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.67rem;
  font-weight: 500;
  line-height: 1;
}

.entry-content :is(ul, ol):not([class]) :is(ul, ol):not([class]) {
  margin-block: 0.55rem 0;
}

.content-table-scroll {
  display: grid;
  max-width: 100%;
  margin-block: 1.5rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--line-deep) var(--brand-wash);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.content-table-scroll::-webkit-scrollbar {
  height: 6px;
}

.content-table-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--brand-wash);
}

.content-table-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--line-deep);
}

.content-table-frame {
  overflow: hidden;
  min-width: 100%;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
}

.entry-content .content-table__table {
  min-width: 100%;
  margin: 0;
  border: 0;
  border-spacing: 0;
  border-collapse: separate;
  color: var(--ink);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.entry-content .content-table__table caption {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--brand-wash);
  color: var(--brand-deep);
  font-weight: 600;
  text-align: start;
}

.entry-content .content-table__table :is(th, td) {
  padding: 0.75rem 1rem;
  border: 0;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: middle;
}

.entry-content .content-table__table :is(th, td):last-child {
  border-inline-end: 0;
}

.entry-content .content-table__table tr:last-child > td {
  border-bottom: 0;
}

.entry-content .content-table__table th {
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  white-space: nowrap;
}

.entry-content .content-table__table tbody tr:nth-child(even) td {
  background: #f8fafb;
}

.entry-content .content-table__table :is(img, svg) {
  margin-inline: auto;
}

.content-section {
  clear: both;
  padding-block: var(--content-section-space);
  margin-block: var(--content-section-space);
  border-block: 1px solid var(--line);
}

.entry-content > .content-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.entry-content > .content-section:not(:has(~ :not(script))) {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

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

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

.content-label {
  display: inline-block;
  width: fit-content;
  color: var(--brand-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.entry-content :is(.content-label, .content-tag) {
  margin-block: 0;
}

.entry-content :is(.content-label, .content-tag):not(:first-child) {
  margin-top: 1rem;
}

.entry-content .content-label:not(:last-child) {
  margin-bottom: 0.625rem;
}

.content-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.entry-content .content-tag:not(:last-child) {
  margin-bottom: 1.25rem;
}

.entry-content :is(.content-label, .content-tag) + :is(h2, h3, h4, h5, h6) {
  margin-top: 0;
}

.content-clear {
  display: block;
  clear: both;
  height: 0;
}

.content-spacer {
  clear: both;
  display: block;
  padding-block: var(--content-section-space);
}

.content-spacer::after {
  display: block;
  border-top: 1px solid var(--line);
  content: '';
}

.picinfo {
  overflow: hidden;
  margin-block: 1.5rem;
}

.picinfo_media {
  display: grid;
  place-items: center;
  max-width: 100%;
  margin-bottom: 1rem;
}

.picinfo_media :is(img, picture, figure) {
  max-width: 100%;
  margin: 0 auto;
}

.picinfo_content {
  min-width: 0;
}

.picinfo_content > :first-child {
  margin-top: 0;
}

.picinfo_content > :last-child {
  margin-bottom: 0;
}

.content-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-block: 1.5rem;
}

.content-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.625rem;
  padding: 0.65rem 1.125rem;
  border: 1px solid var(--line-deep);
  border-radius: 9px;
  background: var(--paper);
  color: var(--brand-deep);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.content-button--primary {
  border-color: var(--positive);
  background: var(--positive);
  color: var(--paper);
}

.content-button--secondary:is(:hover, :focus-visible) {
  border-color: var(--brand);
  background: var(--paper);
  color: var(--brand-deep);
}

.content-button--primary:is(:hover, :focus-visible) {
  border-color: var(--positive-deep);
  background: var(--positive-deep);
  color: var(--paper);
}

.entry-content .content-spacer:has(+ .content-section),
.entry-content .content-section + .content-spacer {
  display: none;
}

.entry-content :has(+ .content-section),
.entry-content > :not(.content-section):has(+ .content-spacer) {
  margin-bottom: 0;
}

.entry-content .content-section + :not(.content-spacer),
.entry-content .content-spacer + :not(.content-section) {
  margin-top: 0;
}

.entry-content
  :is(.content-section, .content-spacer)
  + :is(.content-label, .content-tag) {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 0.875rem;
  margin-block: 1.5rem;
}

.card-grid__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.card-grid__item--link {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.card-grid__item--link:is(:hover, :focus-visible) {
  border-color: var(--brand);
  box-shadow: 0 6px 18px rgb(11 130 168 / 10%);
}

.card-grid__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.75rem;
  border-radius: 9px;
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.card-grid__icon-svg {
  display: block;
  width: 20px;
  height: 20px;
}

.entry-content .card-grid__title {
  margin: 0;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.entry-content .card-grid__description {
  margin: 0.3125rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84375rem;
  line-height: 1.45;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 0.875rem;
  margin-block: 1.5rem;
}

.pros-cons__panel {
  --pros-cons-accent: var(--positive-deep);
  --pros-cons-wash: var(--positive-wash);
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--pros-cons-accent);
  border-radius: var(--curve);
  background: var(--paper);
}

.pros-cons__panel--cons {
  --pros-cons-accent: var(--danger);
  --pros-cons-wash: var(--danger-wash);
}

.entry-content .pros-cons__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.pros-cons__title::before {
  display: grid;
  place-items: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  background: var(--pros-cons-wash);
  color: var(--pros-cons-accent);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  content: '+';
}

.pros-cons__panel--cons .pros-cons__title::before {
  content: '−';
}

.entry-content .pros-cons__list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pros-cons__item {
  position: relative;
  min-width: 0;
  padding-left: 1.75rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.pros-cons__item::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--pros-cons-accent);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  content: '✓';
}

.pros-cons__panel--cons .pros-cons__item::before {
  content: '×';
}

.pros-cons__content > :first-child {
  margin-top: 0;
}

.pros-cons__content > :last-child {
  margin-bottom: 0;
}

.toplist {
  container-name: toplist;
  container-type: inline-size;
  display: grid;
  gap: 1rem;
  margin-block: 1.5rem;
}

.toplist-card {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
  box-shadow: 0 1px 2px rgb(19 36 44 / 4%);
}

.toplist-card__brand {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 9rem;
  padding: 1.25rem;
  background: linear-gradient(155deg, var(--ink), #203942);
}

.toplist-card__logo {
  display: block;
  width: 100%;
  max-width: 8rem;
  height: auto;
  max-height: 5.5rem;
  object-fit: contain;
}

.toplist-card__logo-fallback {
  color: var(--paper);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.2rem, 4cqi, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.toplist-card__info {
  min-width: 0;
  padding: 1.125rem;
}

.toplist-card__heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem 1rem;
}

.toplist-card__name {
  color: var(--ink);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.125rem, 3.5cqi, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.toplist-card__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1;
}

.toplist-card__rating > span {
  margin-right: 0.2rem;
  color: var(--gold);
}

.toplist-card__rating strong {
  font-size: 1rem;
}

.toplist-card__rating small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.toplist-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  padding: 0.3rem 0.7rem;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: var(--positive-wash);
  color: var(--positive-deep);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
}

.toplist-card__label::before {
  color: var(--positive);
  content: '★';
}

.toplist-card__proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
  margin-top: 0.75rem;
}

.entry-content .toplist-card__points {
  display: grid;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toplist-card__points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.toplist-card__points li::before {
  position: absolute;
  left: 0;
  color: var(--positive-deep);
  font-weight: 600;
  content: '+';
}

.toplist-card__points--cons li::before {
  color: var(--danger);
  content: '−';
}

.toplist-card__offer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.125rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--brand-wash), #eef7fa);
}

.toplist-card__bonus-label,
.toplist-card__promo-label {
  color: var(--brand-deep);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.toplist-card__bonus {
  margin-top: 0.3rem;
  color: var(--ink);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}

.toplist-card__bonus em {
  color: var(--brand);
  font-style: normal;
}

.toplist-card__actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 7rem), 1fr));
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.toplist-card__platforms {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.toplist-card__button,
.toplist-card__platforms a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.625rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line-deep);
  border-radius: 9px;
  background: var(--paper);
  color: var(--brand-deep);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.toplist-card__platforms a {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 0.5rem;
}

.toplist-card__button--primary {
  border-color: var(--positive);
  background: var(--positive);
  color: var(--paper);
}

.toplist-card__button:is(:hover, :focus-visible),
.toplist-card__platforms a:is(:hover, :focus-visible) {
  border-color: var(--brand);
  background: var(--paper);
  color: var(--brand-deep);
}

.toplist-card__button--primary:is(:hover, :focus-visible) {
  border-color: var(--positive-deep);
  background: var(--positive-deep);
  color: var(--paper);
}

.toplist-card__button-icon,
.toplist-card__platform-icon,
.toplist-card__copy-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.toplist-card__platform-icon {
  fill: currentcolor;
}

.toplist-card__promo {
  position: relative;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.875rem;
}

.toplist-card__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px dashed var(--line-deep);
  border-radius: 8px;
  background: rgb(255 255 255 / 72%);
  color: var(--brand-deep);
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background-color 140ms ease;
}

.toplist-card__copy code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.toplist-card__copy:is(:hover, :focus-visible) {
  border-color: var(--brand);
  background: var(--paper);
}

.toplist-card__copy.is-copied {
  border-color: var(--positive);
  background: var(--positive-wash);
  color: var(--positive-deep);
}

@container toplist (min-width: 760px) {
  .toplist-card {
    grid-template-columns: minmax(9rem, 11rem) minmax(0, 1fr) minmax(
        13.5rem,
        15rem
      );
  }

  .toplist-card__info {
    border-left: 1px solid var(--line);
  }

  .toplist-card__offer {
    grid-column: auto;
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

@container toplist (max-width: 479px) {
  .toplist-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .toplist-card__brand {
    min-height: 7.5rem;
  }

  .toplist-card__info,
  .toplist-card__offer {
    grid-column: 1;
  }

  .toplist-card__proscons {
    grid-template-columns: minmax(0, 1fr);
  }
}

.qa-list {
  display: grid;
  gap: 0.75rem;
  margin-block: 1.5rem;
}

.qa-list__item {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.qa-list__question {
  margin: 0 !important;
  font-family: inherit !important;
  font-size: 1rem !important;
}

.qa-list__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 60px;
  padding: 0.9rem 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.qa-list__toggle:hover {
  background: var(--brand-wash);
}

.qa-list__mark {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-deep);
  border-radius: 50%;
}

.qa-list__mark::before,
.qa-list__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-deep);
  content: '';
  transform: translate(-50%, -50%);
}

.qa-list__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 150ms ease;
}

.qa-list__toggle[aria-expanded='true'] .qa-list__mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.qa-list__answer {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.qa-list__answer[hidden] {
  display: none;
}

.qa-list__answer > :first-child {
  margin-top: 1rem;
}

.qa-list__answer > :last-child {
  margin-bottom: 0;
}

.card-stream {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
}

.story-card__media {
  display: block;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--brand-wash);
}

.story-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.story-card:hover .story-card__image {
  transform: scale(1.025);
}

.story-card__copy {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.story-card h2 {
  margin: 0.4rem 0 0;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.story-card h2 a {
  text-decoration: none;
}

.story-card h2 a:hover {
  color: var(--brand-deep);
}

.story-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.navigation.pagination {
  margin-top: 2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 600;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.empty-state,
.not-found {
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
}

.not-found {
  margin-block: clamp(2rem, 6vw, 5rem);
}

.not-found p {
  max-width: 58ch;
}

.site-foot {
  margin-top: auto;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: #cfd8dc;
}

.site-foot__body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-block: clamp(2rem, 3vw, 2.5rem);
}

.site-foot__body > * {
  flex: 1 1 220px;
  min-width: 0;
}

.site-foot__body > .social-links {
  flex: 0 1 auto;
}

.site-foot__about {
  display: grid;
  gap: 1rem;
}

.site-foot__logo-image {
  width: auto;
  max-width: 200px;
  max-height: 54px;
}

.site-foot__description {
  max-width: 46ch;
  color: #cfd8dc;
  font-size: 0.92rem;
}

.site-foot__description > :first-child,
.site-foot__description > :last-child {
  margin-block: 0;
}

.site-foot a {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #4a5a63;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition:
    border-color 140ms ease,
    color 140ms ease,
    background-color 140ms ease;
}

.social-links a:is(:hover, :focus-visible) {
  border-color: var(--brand);
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.social-links__icon {
  display: block;
  width: 22px;
  height: 22px;
}

.foot-nav__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.foot-nav__columns > li > :is(a, .menu-item-placeholder) {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.foot-nav__columns .sub-menu {
  display: grid;
  gap: 0.55rem;
}

.foot-nav__columns .sub-menu :is(a, .menu-item-placeholder) {
  color: #cfd8dc;
  font-size: 0.9rem;
  text-decoration: none;
}

.foot-nav__columns a {
  transition: color 140ms ease;
}

.foot-nav__columns > li > a:is(:hover, :focus-visible),
.foot-nav__columns .sub-menu a:is(:hover, :focus-visible) {
  color: #fff;
}

.site-foot__legal {
  padding-block: 1rem;
  border-top: 1px solid #4a5a63;
  color: #8b99a0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
}

.site-foot__legal .page-frame > :first-child,
.site-foot__legal .page-frame > :last-child {
  margin-block: 0;
}

.author-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.author-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: var(--paper);
}

.author-tile__link {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  height: 100%;
  text-decoration: none;
}

.author-tile__link--without-photo {
  grid-template-columns: minmax(0, 1fr);
}

.author-tile__portrait {
  align-self: center;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--brand-wash);
}

.author-tile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-tile__copy {
  align-self: center;
  padding: 0.875rem 1rem;
}

.author-tile h2 {
  margin: 0;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.author-tile__bio {
  margin: 0.45rem 0 0;
}

.author-tile__bio {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.84rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.author-tile__link:hover h2 {
  color: var(--brand-deep);
}

.author-profile {
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-deep);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.author-profile__head {
  display: grid;
  grid-template-columns: clamp(120px, 20vw, 190px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 2.5rem);
}

.author-profile--without-photo .author-profile__head {
  grid-template-columns: minmax(0, 1fr);
}

.author-profile__portrait {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--brand-wash);
}

.author-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-profile h1 {
  margin: 0;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.9375rem, 1.46875rem + 2.35vw, 2.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.author-profile__intro {
  max-width: 62ch;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.author-profile__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  transition:
    border-color 140ms ease,
    color 140ms ease,
    background-color 140ms ease;
}

.author-profile__social:is(:hover, :focus-visible) {
  border-color: var(--brand);
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.author-profile__bio {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.author-materials > h2 {
  margin: 0 0 1rem;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.author-materials {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line-deep);
}

.cookie-note {
  position: fixed;
  z-index: 80;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), 680px);
  padding: 1rem;
  border: 1px solid var(--line-deep);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow-float);
}

.cookie-note[hidden] {
  display: none;
}

.cookie-note__text {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.cookie-note__text > :first-child,
.cookie-note__text > :last-child {
  margin-block: 0;
}

.cookie-note__actions {
  display: flex;
  gap: 0.45rem;
}

.cookie-note button {
  min-height: 42px;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line-deep);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.cookie-note__accept {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

.cookie-note__accept:hover {
  background: var(--brand-deep) !important;
}

.rail-shade {
  display: none;
}

.aligncenter {
  margin-inline: auto;
}

@media (min-width: 740px) {
  .picinfo--float .picinfo_media {
    max-width: 45%;
    margin-bottom: 1rem;
  }

  .picinfo--float.picinfo--start .picinfo_media {
    float: inline-start;
    margin-inline-end: 1.5em;
  }

  .picinfo--float.picinfo--end .picinfo_media {
    float: inline-end;
    margin-inline-start: 1.5em;
  }

  .picinfo--row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .picinfo--row .picinfo_media {
    margin-bottom: 0;
  }

  .picinfo--row.picinfo--end .picinfo_media {
    order: 2;
  }

  img:is(.alignleft, .alignright) {
    max-width: 45%;
    margin-top: 0;
  }
  img.alignleft {
    float: inline-start;
    margin-inline-end: 1.5em;
  }
  img.alignright {
    float: inline-end;
    margin-inline-start: 1.5em;
  }

  :is(.alignleft, .alignright) + :not(.content-section) {
    margin-top: 0 !important;
  }

  :not(.spacer):has(+ :is(.alignleft, .alignright) + h2) {
    margin-bottom: 1.5rem !important;
  }
}

@media (min-width: 1200px) {
  .site-foot__body {
    flex-wrap: nowrap;
  }

  .reading-grid--with-menu {
    grid-template-columns: 224px minmax(0, 1fr);
  }

  .reading-grid--with-related {
    grid-template-columns: minmax(0, 1fr) 284px;
  }

  .reading-grid--with-menu.reading-grid--with-related {
    grid-template-columns: 224px minmax(0, 1fr) 284px;
  }

  .section-rail,
  .reading-rail {
    position: sticky;
    top: 24px;
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
}

@media (max-width: 1199px) {
  .rail-opener {
    display: grid;
  }

  .section-rail {
    position: fixed;
    z-index: 70;
    top: 0;
    left: 0;
    width: min(340px, calc(100vw - 2.5rem));
    height: 100dvh;
    max-height: 100dvh;
    padding: 0.75rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--canvas);
    box-shadow: var(--shadow-float);
    transform: translateX(-105%);
    transition: transform 190ms ease;
  }

  .section-rail__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    padding: 0 0.25rem 0.65rem;
  }

  .section-rail__close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--paper);
    color: var(--ink);
    font-size: 1.5rem;
    cursor: pointer;
  }

  body.is-rail-open .section-rail {
    transform: translateX(0);
  }

  .rail-shade {
    position: fixed;
    z-index: 65;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgb(19 36 44 / 48%);
    cursor: default;
  }

  .rail-shade[hidden] {
    display: none;
  }

  .reading-grid--with-related {
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .reading-rail {
    position: sticky;
    top: 20px;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 739px) {
  .mast-nav {
    display: none;
  }
}

@media (max-width: 899px) {
  .site-mast__row {
    min-height: 66px;
  }

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

  .reading-rail {
    position: static;
    max-height: none;
    overflow: visible;
  }

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

  .author-directory {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-note {
    grid-template-columns: minmax(0, 1fr);
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: auto;
  }
}

@media (max-width: 520px) {
  :root {
    --edge: 0.85rem;
  }

  .site-identity__image {
    max-width: 135px;
  }

  .language-pick__link {
    min-width: 34px;
    min-height: 32px;
    padding-inline: 0.4rem;
  }

  .metric-ribbon {
    align-items: stretch;
  }

  .metric-ribbon__unit {
    flex-basis: calc(50% - 1px);
  }

  .cookie-note__actions {
    flex-wrap: wrap;
  }

  .cookie-note button {
    flex: 1 1 auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
