@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("/assets/sora-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #060714;
  --bg-soft: #0a0b1e;
  --surface: #101126;
  --surface-2: #16132f;
  --surface-3: #20164a;
  --line: #32275a;
  --line-bright: #6141a4;
  --text: #fbf9ff;
  --muted: #bcb8cf;
  --muted-2: #918ba9;
  --gold: #ffcc32;
  --gold-2: #ff9f1c;
  --violet: #a660ff;
  --violet-2: #6d3be5;
  --danger: #ff7c91;
  --success: #80e1b2;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 87% 3%, rgba(109, 59, 229, .19), transparent 31rem),
    radial-gradient(circle at 6% 27%, rgba(93, 41, 161, .13), transparent 27rem),
    linear-gradient(180deg, #070817 0%, #060714 62%, #090716 100%);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

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

a {
  color: var(--gold);
  text-underline-offset: .18em;
}

a:hover {
  color: #ffe179;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #090713;
  background: var(--gold);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(86, 68, 139, .45);
  background: rgba(6, 7, 20, .88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255, 204, 50, .18);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.brand-mark::before {
  top: 4px;
}

.brand-mark::after {
  bottom: 4px;
}

.brand-mark span {
  width: 12px;
  height: 12px;
  border: 3px solid var(--gold);
  border-radius: 4px 9px 4px 9px;
  transform: rotate(45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.primary-nav a {
  color: #ded9ec;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

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

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

.mobile-nav > summary {
  display: inline-flex;
  min-width: 46px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(26, 20, 58, .92);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
  list-style: none;
}

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

.mobile-nav > summary span:first-child {
  position: relative;
  width: 17px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.mobile-nav > summary span:first-child::after {
  position: absolute;
  top: 4px;
  left: 0;
  width: 17px;
  border-top: 2px solid var(--gold);
  content: "";
}

.mobile-nav[open] > summary {
  border-color: var(--line-bright);
  background: rgba(43, 28, 91, .96);
}

.mobile-nav > nav {
  position: absolute;
  z-index: 110;
  top: calc(100% + 13px);
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  background: rgba(9, 9, 25, .99);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.mobile-nav > nav > a {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 10px;
  color: #e9e4f2;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
}

.mobile-nav > nav > a:hover,
.mobile-nav > nav > a[aria-current="page"] {
  color: var(--gold);
  background: rgba(84, 48, 154, .35);
}

.mobile-language-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 7px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.mobile-language-links a {
  padding: 8px 5px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.mobile-language-links a:hover {
  color: var(--gold);
  background: rgba(84, 48, 154, .35);
}

.mobile-menu-cta {
  margin-top: 7px;
  color: #120d1c !important;
  background: linear-gradient(135deg, #ffe05e, var(--gold) 50%, var(--gold-2));
  text-align: center;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  color: #120d1c;
  background: linear-gradient(135deg, #ffe05e, var(--gold) 50%, var(--gold-2));
  box-shadow: 0 10px 28px rgba(255, 171, 24, .21);
  font-weight: 800;
  text-decoration: none;
}

.header-cta:hover,
.button:hover {
  color: #120d1c;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line-bright);
  color: var(--text);
  background: linear-gradient(135deg, rgba(112, 60, 218, .54), rgba(41, 27, 83, .88));
  box-shadow: none;
}

.button-secondary:hover {
  color: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  color: var(--muted-2);
  font-size: .84rem;
}

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

.breadcrumb span[aria-hidden="true"] {
  color: #5f5971;
}

.article-hero {
  position: relative;
  overflow: clip;
  padding: 72px 0 52px;
  border-bottom: 1px solid rgba(76, 59, 125, .36);
}

.article-hero::after {
  position: absolute;
  z-index: -1;
  top: 24px;
  right: -110px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(165, 96, 255, .12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 90px rgba(100, 51, 210, .11),
    0 0 120px rgba(102, 52, 210, .08);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .7fr);
  align-items: start;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #c891ff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 12px var(--violet);
  content: "";
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.16;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.55rem, 5.3vw, 5.25rem);
  letter-spacing: -.055em;
}

.hero-lede {
  max-width: 770px;
  margin: 22px 0 0;
  color: #cbc7d9;
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.68;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 18px;
  margin-top: 28px;
  color: var(--muted-2);
  font-size: .86rem;
}

.byline a {
  color: #e9e4f4;
  font-weight: 800;
  text-decoration: none;
}

.fact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(40, 23, 85, .94), rgba(15, 15, 38, .97)),
    var(--surface);
  box-shadow: var(--shadow);
}

.fact-card-title {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.fact-row {
  display: grid;
  grid-template-columns: minmax(90px, .8fr) minmax(0, 1.15fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(97, 76, 151, .36);
}

.fact-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.fact-row dt {
  color: var(--muted-2);
  font-size: .82rem;
  font-weight: 700;
}

.fact-row dd {
  margin: 0;
  color: #f1edf8;
  font-size: .88rem;
  font-weight: 700;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(128, 225, 178, .5);
  content: "";
}

.disclosure {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: .76rem;
  line-height: 1.55;
}

.article-shell {
  display: grid;
  grid-template-columns: 246px minmax(0, 760px);
  justify-content: center;
  gap: 72px;
  padding-top: 62px;
  padding-bottom: 100px;
}

.toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 20px 0;
}

.toc-title {
  margin-bottom: 14px;
  color: var(--text);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.toc nav {
  display: grid;
  gap: 4px;
}

.toc a {
  padding: 7px 12px;
  border-left: 2px solid rgba(99, 77, 153, .42);
  color: var(--muted-2);
  font-size: .84rem;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  border-color: var(--violet);
  color: var(--text);
  background: rgba(79, 46, 139, .15);
}

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

.article-cover {
  overflow: hidden;
  margin: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0b0a20;
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.article-cover figcaption {
  padding: 10px 15px 12px;
  border-top: 1px solid rgba(79, 60, 127, .5);
  color: var(--muted-2);
  font-size: .74rem;
}

.answer-box {
  margin: 0 0 44px;
  padding: 24px 26px;
  border: 1px solid rgba(123, 83, 200, .65);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(73, 40, 135, .32), rgba(16, 16, 41, .72));
  color: #eae6f2;
  font-size: 1.04rem;
}

.answer-box strong {
  color: var(--gold);
}

.article-content h2 {
  margin: 62px 0 20px;
  scroll-margin-top: 110px;
  font-size: clamp(1.72rem, 3.5vw, 2.55rem);
  letter-spacing: -.035em;
}

.article-content h3 {
  margin: 38px 0 12px;
  scroll-margin-top: 110px;
  font-size: 1.24rem;
  letter-spacing: -.015em;
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content p {
  margin: 0 0 20px;
}

.article-content strong {
  color: #f7f4fb;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px;
  padding-left: 23px;
}

.article-content li {
  margin: 8px 0;
  padding-left: 5px;
}

.article-content li::marker {
  color: var(--gold);
  font-weight: 800;
}

.note {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(62, 35, 111, .25);
  color: #d2cde0;
}

.note strong {
  color: #e6c9ff;
}

.note-caution {
  border-color: var(--gold);
  background: rgba(112, 72, 16, .2);
}

.note-caution strong {
  color: var(--gold);
}

.note-danger {
  border-color: var(--danger);
  background: rgba(118, 32, 60, .16);
}

.note-danger strong {
  color: #ffb3c0;
}

.code-panel {
  display: grid;
  margin: 30px 0;
  padding: 25px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 95% 0, rgba(166, 96, 255, .18), transparent 13rem),
    #111128;
  gap: 18px;
}

.code-label {
  color: #a9a3ba;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.code-value {
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 8vw, 3.7rem);
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1;
}

.code-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.table-wrap {
  overflow-x: auto;
  margin: 26px 0 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 14, 35, .76);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 17px;
  border-bottom: 1px solid rgba(80, 62, 129, .4);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

th {
  color: #f2edf9;
  background: rgba(55, 33, 101, .34);
  font-size: .78rem;
  letter-spacing: .04em;
}

tbody tr:last-child td,
tbody tr:last-child th {
  border-bottom: 0;
}

td strong {
  color: #fff;
}

.comparison-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 27px 0 34px;
}

.mini-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(29, 22, 62, .92), rgba(14, 14, 34, .96));
}

.mini-card h3 {
  margin: 0 0 9px;
  font-size: 1rem;
}

.mini-card p {
  margin: 0;
  font-size: .9rem;
}

.verdict {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid rgba(255, 201, 50, .44);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 181, 34, .1), transparent 14rem),
    linear-gradient(145deg, rgba(36, 25, 74, .92), rgba(15, 15, 35, .96));
}

.verdict-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.verdict h2,
.verdict h3 {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 15, 37, .82);
}

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 19px;
  color: #f1edf7;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: .94rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--gold);
  font-size: 1.35rem;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 19px 18px;
  color: var(--muted);
}

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

.source-list li {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(76, 61, 119, .6);
  border-radius: var(--radius-sm);
  background: rgba(16, 16, 38, .68);
}

.source-list a {
  font-weight: 800;
}

.source-meta {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: .78rem;
}

.author-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 54px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(18, 17, 43, .84);
}

.author-avatar {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 20px;
  color: var(--gold);
  background: linear-gradient(145deg, #382276, #1b1539);
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.author-card h2,
.author-card h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.author-card p {
  margin: 0;
  font-size: .85rem;
}

.related {
  padding: 70px 0 84px;
  border-top: 1px solid rgba(73, 57, 117, .42);
  background: rgba(10, 10, 25, .56);
}

.section-heading {
  margin: 0 0 26px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

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

.related-card {
  display: block;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  background: linear-gradient(145deg, rgba(32, 23, 67, .9), rgba(13, 13, 32, .96));
  text-decoration: none;
}

.related-card:hover {
  border-color: var(--line-bright);
  color: #fff;
  transform: translateY(-2px);
}

.related-label {
  color: var(--violet);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
}

.related-card p {
  margin: 0;
  color: var(--muted-2);
  font-size: .84rem;
}

.site-footer {
  border-top: 1px solid rgba(81, 63, 128, .48);
  background: #070713;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(150px, .55fr));
  gap: 48px;
  padding: 54px 0 38px;
}

.footer-intro {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: .84rem;
}

.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 17px;
}

.language-links a {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}

.language-links a:hover {
  color: var(--gold);
}

.footer-title {
  margin-bottom: 12px;
  color: #f0ecf7;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-size: .84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(72, 58, 111, .42);
  color: #918ba2;
  font-size: .76rem;
}

.text-page .article-hero {
  padding-bottom: 40px;
}

.text-page h1 {
  max-width: 840px;
  font-size: clamp(2.45rem, 5vw, 4.5rem);
}

.text-page .article-shell {
  grid-template-columns: minmax(0, 800px);
  padding-top: 48px;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .primary-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .fact-card {
    max-width: 620px;
  }

  .article-shell {
    grid-template-columns: minmax(0, 760px);
    gap: 0;
  }

  .toc {
    position: static;
    margin-bottom: 34px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 15, 37, .72);
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  .brand {
    font-size: .78rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    display: none;
  }

  .article-hero {
    padding: 46px 0 38px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .article-shell {
    padding-top: 38px;
    padding-bottom: 70px;
  }

  .toc nav {
    grid-template-columns: 1fr;
  }

  .article-content h2 {
    margin-top: 48px;
  }

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

  .fact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    letter-spacing: .08em;
  }

  .brand-label-long {
    display: none;
  }

  .article-hero::after {
    display: none;
  }

  .answer-box,
  .code-panel,
  .verdict,
  .fact-card {
    padding: 20px;
  }

  .code-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

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

  .footer-grid > :first-child {
    grid-column: auto;
  }
}

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