@font-face {
  font-family: "Nunito Rounded";
  src: url("/guides/brand/nunito-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #faf8f1;
  --paper-strong: #f3efe4;
  --surface: #ffffff;
  --surface-soft: #f5f7f2;
  --ink: #111512;
  --body: #343a36;
  --muted: #6b746d;
  --line: #dbe2dc;
  --line-strong: #c4cec6;
  --green: #16823c;
  --green-bright: #22c55e;
  --green-wash: #eaf7ee;
  --cream: #f4e8cf;
  --amber: #986719;
  --shadow: 0 18px 50px rgba(18, 31, 23, 0.08);
  --serif: "Nunito Rounded", "SF Pro Rounded", ui-rounded, sans-serif;
  --sans: "Nunito Rounded", "SF Pro Rounded", ui-rounded, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #080b09;
  --paper-strong: #0d120f;
  --surface: #121713;
  --surface-soft: #19201b;
  --ink: #f3f6f4;
  --body: #ccd4ce;
  --muted: #99a39c;
  --line: #29342c;
  --line-strong: #3a493e;
  --green: #4ade80;
  --green-bright: #4ade80;
  --green-wash: #12281a;
  --cream: #eadfc8;
  --amber: #e5bd70;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 4%, color-mix(in srgb, var(--green-wash) 78%, transparent) 0, transparent 28rem),
    var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: color-mix(in srgb, var(--green) 78%, var(--ink));
}

button,
input {
  font: inherit;
}

button,
a,
input,
summary,
[tabindex] {
  outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--green-bright) 70%, transparent);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 0.7rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: 0.55rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 750;
  text-decoration: none;
}

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

.section-shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.735rem;
  font-weight: 800;
  letter-spacing: 0.115em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--line-strong);
  padding-inline: 0.25rem;
}

.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--green) 18%, transparent);
}

:root[data-theme="dark"] .button {
  color: #07120b;
}

.button:hover {
  background: color-mix(in srgb, var(--green) 86%, var(--ink));
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(0.18rem);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
}

.site-header__inner {
  display: flex;
  width: min(1260px, calc(100% - 2rem));
  min-height: 4.6rem;
  align-items: center;
  gap: 1.25rem;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark img {
  border-radius: 0.6rem;
}

.wordmark > span > span {
  color: var(--green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.865rem;
  font-weight: 720;
  text-decoration: none;
}

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

.site-nav .nav-cta {
  padding: 0.52rem 0.88rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
}

.theme-toggle {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--green);
}

.site-footer {
  padding: 4rem max(1.25rem, calc((100% - 1180px) / 2)) 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark--footer {
  margin-bottom: 0.85rem;
}

.site-footer__top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.25rem;
}

.site-footer__top nav a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.site-footer__top a:hover {
  color: var(--green);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-top: 2.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.site-footer__legal p {
  max-width: 45rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

/* Hub */

.guides-search-band {
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.guides-search-band .guide-search { max-width: none; }

.guide-directory-home { padding-block: 3.5rem 4.5rem; }

.guide-directory-home__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.guide-directory-home__heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}

.guide-directory-home__heading a {
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.guide-index-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-bottom: 5rem;
}

.guide-index-bars article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.guide-index-bars__icon {
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  border-radius: 1.15rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.guide-index-bars h2 {
  margin: 0.35rem 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.guide-index-bars p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.guide-index-bars .button { flex: 0 0 auto; }

.hub-hero {
  padding-block: clamp(5.5rem, 11vw, 9.5rem) clamp(4.5rem, 8vw, 7rem);
}

.hub-hero h1 {
  max-width: 960px;
  margin: 1rem 0 1.4rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3.15rem, 7.5vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hub-hero h1 span {
  color: var(--green);
}

.hub-hero__dek {
  max-width: 690px;
  margin: 0;
  color: var(--body);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > a {
  flex: 0 0 auto;
  font-size: 0.88rem;
  font-weight: 780;
  text-decoration: none;
}

.featured,
.topics,
.find-guides,
.updates,
.collections,
.editorial-note {
  padding-block: 3.5rem;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.72fr);
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.featured-card__media {
  display: block;
  min-width: 0;
  border-radius: 1.65rem 0 0 1.65rem;
  overflow: hidden;
}

.featured-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.featured-card__copy {
  align-self: center;
  padding: 1.5rem 2rem;
}

.featured-card__copy h3 {
  margin: 0.75rem 0 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.15rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.featured-card__copy h3 a {
  color: inherit;
  text-decoration: none;
}

.featured-card__copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.featured-card__copy .feature-note {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.topic-nav a {
  padding: 0.55rem 0.86rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}

.topic-nav a:hover {
  border-color: var(--green);
  color: var(--green);
}

.guide-search {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  align-items: center;
  gap: 0.75rem;
  max-width: 720px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.9rem;
  background: var(--surface);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--ink) 4%, transparent);
}

.guide-search svg {
  width: 1.25rem;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.guide-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.guide-search input::placeholder {
  color: var(--muted);
}

.guide-row-list {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.guide-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.35rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.guide-row__image {
  aspect-ratio: 16 / 9;
  border-radius: 0.65rem;
  overflow: hidden;
}

.guide-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-row h3 {
  margin: 0.18rem 0 0.22rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.guide-row h3 a {
  color: var(--ink);
  text-decoration: none;
}

.guide-row p:not(.eyebrow) {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guide-row > time {
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}

.empty-state {
  padding: 2rem;
  border: 1px dashed var(--line-strong);
  border-radius: 1rem;
  color: var(--muted);
  text-align: center;
}

.update-grid,
.read-more__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.guide-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.guide-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 0.96rem 0.96rem 0 0;
  overflow: hidden;
}

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

.guide-card:hover .guide-card__image img {
  transform: scale(1.018);
}

.guide-card__body {
  padding: 1rem 1rem 1.15rem;
}

.guide-card__body h3 {
  margin: 0.4rem 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.guide-card__body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.guide-card__body > p:not(.eyebrow) {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.collection-card {
  padding: clamp(1.35rem, 2.8vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--surface);
}

.collection-card > span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
}

.collection-card h3 {
  margin: 1.1rem 0 0.55rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.collection-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.collection-card ul {
  margin: 1.25rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.collection-card li + li {
  margin-top: 0.48rem;
}

.collection-card a {
  color: var(--body);
  font-size: 0.84rem;
  font-weight: 680;
  text-decoration: none;
}

.collection-card a:hover {
  color: var(--green);
}

.editorial-note {
  margin-block: 3.5rem 6rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid color-mix(in srgb, var(--green) 32%, var(--line));
  border-radius: 1.4rem;
  background: var(--green-wash);
}

.editorial-note h2 {
  max-width: 680px;
  margin: 0.7rem 0 0.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.editorial-note > p:last-child {
  max-width: 720px;
  margin: 0;
}

/* Complete index */

.all-guides {
  padding-block: 3rem 6rem;
}

.directory-header {
  max-width: 850px;
  margin-block: 4rem 2rem;
}

.directory-header h1 {
  margin: 0.7rem 0 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.directory-header > p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: 1.12rem;
}

.guide-search--directory {
  margin-bottom: 1.3rem;
}

.directory-group {
  padding-top: 4rem;
}

.directory-group__heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.directory-group__heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.directory-group__heading span {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 999px;
  background: var(--green-wash);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

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

/* Article */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.breadcrumbs a:hover {
  color: var(--green);
}

.article-header {
  max-width: 980px;
  padding-top: clamp(3rem, 7vw, 6rem);
  text-align: center;
}

.article-header .breadcrumbs {
  justify-content: center;
  margin-bottom: 2.8rem;
}

.article-header h1 {
  max-width: 930px;
  margin: 0.85rem auto 1.25rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.85rem, 6.6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.article-dek {
  max-width: 760px;
  margin: 0 auto;
  color: var(--body);
  font-size: clamp(1.08rem, 2.1vw, 1.32rem);
  line-height: 1.55;
}

.byline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem 1rem;
  width: min(850px, 100%);
  margin: 2.4rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  text-align: left;
}

.byline > img {
  border: 2px solid var(--surface);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

.byline p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.byline strong {
  color: var(--ink);
}

.byline dl {
  display: flex;
  gap: 1.3rem;
  margin: 0;
}

.byline dl > div {
  min-width: 5.6rem;
}

.byline dt {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.byline dd {
  margin: 0.12rem 0 0;
  color: var(--body);
  font-size: 0.73rem;
  line-height: 1.35;
}

.article-hero {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: clamp(1rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow);
}

.article-hero figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.article-hero figcaption span {
  color: var(--body);
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.article-toc {
  position: sticky;
  top: 6.5rem;
  align-self: start;
  max-height: calc(100vh - 8rem);
  overflow: auto;
  padding: 1rem 0.85rem 1rem 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.article-toc > p {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

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

.article-toc li + li {
  margin-top: 0.34rem;
}

.article-toc a {
  display: block;
  padding: 0.16rem 0 0.16rem 0.7rem;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a[aria-current="location"] {
  border-left-color: var(--green);
  color: var(--green);
}

.article-body {
  min-width: 0;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  font-size: 1.035rem;
  line-height: 1.76;
}

.article-body > h2,
.article-body .article-section > h2,
.article-body .release-changes > h2,
.article-body .how-to > h2,
.article-body .comparison h2 {
  margin: 3.4rem 0 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  scroll-margin-top: 6rem;
}

.article-body > h3,
.article-body .how-to h3 {
  margin: 2.2rem 0 0.65rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.35;
}

.article-body p {
  margin: 0.85rem 0 1.25rem;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.4rem;
}

.article-body li + li {
  margin-top: 0.52rem;
}

.article-body code {
  padding: 0.14rem 0.32rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.88em;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 0.6rem 0 0.6rem 1.4rem;
  border-left: 4px solid var(--green);
  color: var(--body);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.article-body a {
  font-weight: 620;
}

.disclosure {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.9rem;
  margin-bottom: 2rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--green) 30%, var(--line));
  border-radius: 0.9rem;
  background: var(--green-wash);
}

.disclosure svg {
  width: 1.65rem;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.disclosure strong {
  color: var(--ink);
  font-size: 0.83rem;
}

.disclosure p {
  margin: 0.22rem 0 0;
  color: var(--body);
  font-size: 0.79rem;
  line-height: 1.55;
}

.bottom-line {
  margin: 0 0 3rem;
  padding: 1.65rem clamp(1.3rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 0.95rem;
  background: var(--surface);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--ink) 5%, transparent);
}

.bottom-line h2 {
  margin: 0.55rem 0 0.65rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.bottom-line p:last-child {
  margin: 0;
  font-size: 0.95rem;
}

.article-body .table-scroll {
  width: 100%;
  margin: 1.4rem 0 2.2rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

.article-body table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
  color: var(--body);
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-body th,
.article-body td {
  padding: 0.8rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.section-heading--article {
  margin-top: 3.6rem;
}

.section-heading--article h2 {
  margin-top: 0.35rem !important;
}

.section-heading--article > p {
  max-width: 14rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  text-align: right;
}

.table-app {
  display: inline-flex;
  min-width: 8.5rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 760;
}

.table-app img {
  border-radius: 0.65rem;
}

.rank-pill {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 999px;
  background: var(--green-wash);
  color: var(--green);
  font-weight: 850;
}

.ranked-reviews {
  margin-top: 3.6rem;
  scroll-margin-top: 6rem;
}

.ranked-reviews__heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.ranked-reviews__heading h2 {
  margin: 0.45rem 0 0.8rem !important;
}

.ranked-reviews__heading > p:last-child {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.app-review {
  margin-top: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.app-review + .app-review {
  margin-top: 2rem;
}

.app-review > header {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.app-review__rank {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 850;
}

.app-review header img {
  border-radius: 0.95rem;
  box-shadow: 0 7px 18px color-mix(in srgb, var(--ink) 12%, transparent);
}

.app-review header p {
  margin: 0;
  color: var(--green);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.app-review header h3 {
  margin: 0.15rem 0 0 !important;
  font-size: 1.85rem !important;
  line-height: 1.08;
}

.app-review__copy {
  margin-top: 1.45rem;
}

.app-review__copy p {
  margin: 0 0 1.1rem;
  font-size: 0.97rem;
  line-height: 1.72;
}

.app-review__copy p:last-child {
  margin-bottom: 0;
}

.app-review__highlights {
  margin-top: 1.35rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--green) 25%, var(--line));
  border-radius: 0.8rem;
  background: var(--green-wash);
}

.app-review__highlights h4 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 0.82rem;
}

.app-review__highlights ul {
  margin: 0;
  padding-left: 1.15rem;
}

.app-review__highlights li {
  font-size: 0.84rem;
  line-height: 1.55;
}

.app-review__decision {
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.app-review__decision p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.app-review__decision p + p {
  margin-top: 0.55rem;
}

.app-review__decision strong,
.app-review__meta strong {
  color: var(--ink);
}

.app-review__meta {
  margin: 1.15rem 0 0 !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem !important;
  line-height: 1.7 !important;
}

.app-review__sources {
  margin: 0.55rem 0 0 !important;
  color: var(--muted);
  font-size: 0.74rem !important;
  line-height: 1.65 !important;
}

.app-review__sources strong {
  color: var(--ink);
}

.app-review__sources a {
  color: var(--green);
  text-decoration-color: color-mix(in srgb, var(--green) 42%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.release-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2.5rem 0;
  scroll-margin-top: 6rem;
}

.release-panel > div {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--surface);
}

.release-panel strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--ink);
  font-size: 0.9rem;
}

.release-changes ol {
  padding: 0;
  counter-reset: release-item;
  list-style: none;
}

.release-changes li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: release-item;
}

.release-changes li::before {
  content: counter(release-item, decimal-leading-zero);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.release-screens {
  scroll-margin-top: 6rem;
}

.release-screens > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.release-screens figure {
  margin: 0;
}

.release-screens figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #070a08;
}

.release-screens figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.how-to {
  margin-top: 3.5rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid color-mix(in srgb, var(--green) 30%, var(--line));
  border-radius: 1rem;
  background: var(--green-wash);
  scroll-margin-top: 6rem;
}

.how-to > h2 {
  margin-top: 0.45rem !important;
}

.how-to > ol {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.how-to > ol > li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid color-mix(in srgb, var(--green) 20%, var(--line));
}

.how-to > ol > li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.how-to h3 {
  margin: 0 0 0.3rem !important;
  font-size: 1rem !important;
}

.how-to li p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.article-section {
  margin-top: 4rem;
  scroll-margin-top: 6rem;
}

.article-section > h2 {
  margin-top: 0.45rem !important;
}

.faqs details {
  border-top: 1px solid var(--line);
}

.faqs details:last-child {
  border-bottom: 1px solid var(--line);
}

.faqs summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faqs summary span {
  color: var(--green);
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.faqs details[open] summary span {
  transform: rotate(45deg);
}

.faqs details p {
  margin: -0.3rem 0 1.2rem;
  padding-right: 2.5rem;
  color: var(--muted);
  font-size: 0.89rem;
}

.sources > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.82rem;
}

.sources ol {
  padding: 0;
  list-style: none;
  counter-reset: source-item;
}

.sources li {
  position: relative;
  padding: 1rem 0 1rem 2.5rem;
  border-top: 1px solid var(--line);
  counter-increment: source-item;
}

.sources li::before {
  content: counter(source-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.05rem;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.sources li > a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
}

.sources li > span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.sources li > p {
  margin: 0.2rem 0 0;
  color: var(--body);
  font-size: 0.76rem;
  line-height: 1.5;
}

.author-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.2rem;
  margin-top: 4rem;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.author-card > img {
  border-radius: 999px;
  object-fit: cover;
}

.author-card h2 {
  margin: 0.28rem 0 0.4rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.author-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
}

.author-card .author-card__meta {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1rem;
  background: var(--ink);
  color: var(--paper);
}

.article-cta h2 {
  margin: 0.45rem 0 0.65rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.article-cta > div > p:last-child {
  max-width: 36rem;
  margin: 0;
  color: color-mix(in srgb, var(--paper) 72%, transparent);
  font-size: 0.78rem;
}

.article-cta .eyebrow {
  color: #86efac;
}

.corrections {
  margin-top: 1.5rem !important;
  color: var(--muted);
  font-size: 0.72rem !important;
  text-align: center;
}

.read-more {
  margin-top: clamp(4.5rem, 9vw, 8rem);
  padding-block: 3rem 6.5rem;
  border-top: 1px solid var(--line);
}

/* 404 */

.not-found {
  min-height: 65vh;
  padding-block: clamp(6rem, 14vw, 11rem);
}

.not-found h1 {
  max-width: 760px;
  margin: 0.8rem 0 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.not-found > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.05rem;
}

.not-found > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

@media (max-width: 1100px) {
  .update-grid,
  .read-more__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card__media {
    border-radius: 1.65rem 1.65rem 0 0;
  }

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

  .article-layout {
    grid-template-columns: 175px minmax(0, 720px);
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  .site-nav a:not([aria-current="page"]):not(.nav-cta) {
    display: none;
  }

  .article-layout {
    display: block;
  }

  .article-toc {
    position: static;
    max-height: none;
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: var(--surface);
  }

  .article-toc ol {
    columns: 2;
    column-gap: 1.5rem;
  }

  .article-toc li {
    break-inside: avoid;
  }

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

  .byline dl {
    grid-column: 1 / -1;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 1.25rem, 1180px);
  }

  .site-header__inner {
    width: calc(100% - 1rem);
    min-height: 4rem;
    gap: 0.55rem;
  }

  .wordmark {
    gap: 0.45rem;
    font-size: 1rem;
  }

  .wordmark img {
    width: 32px;
    height: 32px;
  }

  .site-nav {
    gap: 0.55rem;
  }

  .site-nav a[aria-current="page"] {
    display: none;
  }

  .site-nav .nav-cta {
    padding: 0.47rem 0.66rem;
    font-size: 0.74rem;
  }

  .theme-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hub-hero {
    padding-block: 4.5rem 3.5rem;
  }

  .hub-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .section-heading {
    display: block;
  }

  .section-heading > a {
    display: inline-block;
    margin-top: 0.7rem;
  }

  .featured,
  .topics,
  .find-guides,
  .updates,
  .collections,
  .editorial-note {
    padding-block: 2.5rem;
  }

  .guide-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .guide-row > time,
  .guide-row p:not(.eyebrow) {
    display: none;
  }

  .guide-row h3 {
    font-size: 1rem;
  }

  .collection-grid,
  .directory-grid,
  .update-grid,
  .read-more__grid {
    grid-template-columns: 1fr;
  }

  .topic-nav {
    flex-wrap: nowrap;
    margin-right: -0.65rem;
    padding-right: 0.65rem;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .topic-nav a {
    flex: 0 0 auto;
  }

  .article-header {
    padding-top: 2.8rem;
  }

  .article-header .breadcrumbs {
    margin-bottom: 2rem;
  }

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

  .layout-feature .article-header h1 {
    font-size: clamp(2.35rem, 10.7vw, 3.25rem);
    padding-inline: 1.75rem;
  }

  .layout-feature .article-header {
    padding-inline: 0;
  }

  .layout-feature .article-header > .eyebrow {
    max-width: 18rem;
    margin-inline: auto;
    text-wrap: balance;
  }

  .layout-feature .article-dek {
    padding-inline: 2.75rem;
  }

  .article-dek {
    font-size: 1rem;
  }

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

  .article-hero {
    width: 100%;
  }

  .article-hero img {
    border-radius: 0;
  }

  .article-hero figcaption {
    padding-inline: 0.65rem;
  }

  .article-layout {
    margin-top: 2.5rem;
  }

  .article-toc ol {
    columns: 1;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .release-panel {
    grid-template-columns: 1fr;
  }

  .release-screens > div:last-child {
    grid-template-columns: 1fr;
  }

  .release-screens figure img {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .release-screens figcaption {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .app-review > header {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .app-review > header > div {
    grid-column: 1 / -1;
  }

  .app-review header img {
    width: 48px;
    height: 48px;
  }

  .app-review__highlights {
    padding: 1rem;
  }

  .author-card {
    grid-template-columns: 68px 1fr;
  }

  .author-card > img {
    width: 68px;
    height: 68px;
  }

  .author-card .eyebrow,
  .author-card h2 {
    grid-column: 2;
  }

  .author-card p:not(.eyebrow) {
    grid-column: 1 / -1;
  }

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

  .article-cta .button {
    justify-self: start;
  }

  .read-more {
    width: 100%;
    padding-inline: 0.65rem;
  }

  .site-footer {
    padding-inline: 1rem;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer__top nav {
    justify-content: flex-start;
  }

  .guide-index-bars {
    grid-template-columns: 1fr;
  }

  .guide-index-bars article {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .guide-row {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

@media (max-width: 360px) {
  .site-nav .nav-cta {
    display: none;
  }

  .hub-hero h1,
  .article-header h1 {
    overflow-wrap: anywhere;
  }

  .article-body .table-scroll {
    width: 100%;
  }

  .app-review > header > div {
    min-width: 0;
  }

  .app-review header h3 {
    overflow-wrap: anywhere;
    font-size: 1.45rem !important;
  }

  .app-review__sources a {
    overflow-wrap: anywhere;
  }

  .byline dl {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid > div:first-child {
    grid-column: 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;
  }
}
