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

:root {
  color-scheme: light;
  --paper: #f3eddf;
  --paper-bright: #fffaf0;
  --paper-deep: #e5ddcc;
  --ink: #14211c;
  --muted: #606961;
  --green: #075943;
  --green-deep: #073b2f;
  --green-black: #06271f;
  --mint: #b9dfc3;
  --lime: #d8e48c;
  --red: #c74b39;
  --red-dark: #9f3527;
  --line: rgba(20, 33, 28, .16);
  --line-strong: rgba(20, 33, 28, .28);
  --display-bn: "Noto Serif Bengali", "Kohinoor Bangla", "Bangla MN", serif;
  --body-bn: "Noto Sans Bengali", "Kohinoor Bangla", "Bangla Sangam MN", sans-serif;
  --display-en: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body-en: "Avenir Next", Avenir, "Gill Sans", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --shadow: 0 24px 70px rgba(6, 39, 31, .13);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] {
  scroll-margin-top: 108px;
}

body {
  min-width: 280px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 2%, rgba(216, 228, 140, .36), transparent 24rem),
    linear-gradient(rgba(20, 33, 28, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 28, .045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 72px 72px, 72px 72px, auto;
  font-family: var(--body-bn);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.english-page {
  font-family: var(--body-en);
}

.english-page .brand-copy strong,
.english-page .hero-title,
.english-page .section-title,
.english-page .language-card h3,
.english-page .fact-card h3,
.english-page .step-copy h3,
.english-page .callout h3,
.english-page .boundary strong,
.english-page .release-note h2,
.english-page .footer-lockup strong {
  font-family: var(--display-en);
}

.english-page [lang="bn"] {
  font-family: var(--body-bn);
}

.english-page .language-card[lang="bn"] h3,
.english-page .fact-card h3[lang="bn"],
.english-page .callout h3[lang="bn"],
.english-page .boundary strong[lang="bn"],
.english-page .step-copy h3[lang="bn"],
.english-page .cell-bangla[lang="bn"] {
  font-family: var(--display-bn);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

::selection {
  color: var(--paper-bright);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 15px;
  color: var(--paper-bright);
  background: var(--green-black);
  border-radius: 7px;
  font-weight: 800;
  transform: translateY(-180%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 237, 223, .92);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 11px 11px 11px 3px;
  object-fit: cover;
  box-shadow: 0 7px 16px rgba(20, 33, 28, .17);
  transform: rotate(-3deg);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--display-bn);
  font-size: 1.02rem;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--body-en);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mini-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: .76rem;
  font-weight: 800;
}

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

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

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: max(-4vw, -36px);
  bottom: -1.02em;
  z-index: -1;
  content: "অ";
  color: rgba(7, 89, 67, .07);
  font-family: var(--display-bn);
  font-size: clamp(18rem, 42vw, 38rem);
  font-weight: 800;
  line-height: 1;
}

.hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(240px, .4fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-block: clamp(80px, 10vw, 132px);
}

.hero-index {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-block: 3px;
  border-right: 1px solid var(--line-strong);
  color: var(--red);
  font-family: var(--body-en);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--green);
  font-family: var(--body-en);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 29px;
  height: 2px;
  content: "";
  background: var(--red);
}

.hero-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--display-bn);
  font-size: clamp(3.5rem, 8vw, 7.3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.hero-title em {
  color: var(--green);
  font-style: italic;
  font-weight: inherit;
}

body:not(.english-page) .hero-title {
  line-height: 1.13;
}

body:not(.english-page) .hero-title em {
  font-style: normal;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.hero-alt {
  max-width: 660px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--body-bn);
  font-size: .91rem;
  line-height: 1.65;
}

.hero-aside {
  align-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px 22px 22px 22px;
  background: rgba(255, 250, 240, .68);
  box-shadow: var(--shadow);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(7, 89, 67, .25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(185, 223, 195, .32);
  font-family: var(--body-en);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

.hero-aside dl {
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 24px 0 0;
}

.hero-aside dt,
.hero-aside dd {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.hero-aside dt {
  color: var(--muted);
  font-size: .72rem;
}

.hero-aside dd {
  margin: 0;
  font-family: var(--body-en);
  font-size: .72rem;
  font-weight: 800;
  text-align: right;
}

.page-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
  padding-block: clamp(76px, 10vw, 132px);
}

.contents {
  position: sticky;
  top: 112px;
  padding-top: 17px;
  border-top: 3px solid var(--red);
}

.contents strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-family: var(--body-en);
  font-size: .67rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contents ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.contents li {
  counter-increment: toc;
}

.contents a {
  display: grid;
  grid-template-columns: 28px 1fr;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.contents a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--red);
  font-family: var(--body-en);
  font-size: .62rem;
  font-weight: 850;
}

.article {
  min-width: 0;
}

.content-section + .content-section {
  margin-top: clamp(74px, 9vw, 112px);
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--red);
  font-family: var(--body-en);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--display-bn);
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.section-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.language-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 12px 14px 0 rgba(20, 33, 28, .055);
}

.language-card {
  min-width: 0;
  padding: clamp(25px, 4vw, 39px);
  background: rgba(255, 250, 240, .82);
}

.language-card[lang="en"] {
  font-family: var(--body-en);
}

.language-card[lang="bn"] .language-label {
  font-family: var(--body-bn);
  letter-spacing: normal;
}

.language-label {
  display: block;
  margin-bottom: 17px;
  color: var(--green);
  font-family: var(--body-en);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.language-card h3 {
  margin: 0 0 14px;
  font-family: var(--display-bn);
  font-size: 1.42rem;
  line-height: 1.3;
}

.language-card[lang="en"] h3 {
  font-family: var(--display-en);
}

.language-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.language-card p + p,
.language-card ul + p,
.language-card ol + p {
  margin-top: 15px;
}

.language-card ul,
.language-card ol {
  margin: 14px 0 0;
  padding-left: 1.35em;
  color: var(--muted);
  font-size: .9rem;
}

.language-card li + li {
  margin-top: 9px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.fact-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 4px 19px 19px 19px;
  background: rgba(255, 250, 240, .7);
}

.fact-card:nth-child(2n) {
  border-radius: 19px 4px 19px 19px;
}

.fact-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--green);
  font-family: var(--body-en);
  font-size: .7rem;
  font-weight: 900;
}

.fact-card h3 {
  margin: 0;
  font-family: var(--display-bn);
  font-size: 1.18rem;
  line-height: 1.35;
}

.fact-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.fact-card p[lang="en"] {
  font-family: var(--body-en);
}

.steps {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border-top: 1px solid var(--line-strong);
}

.steps > li {
  min-height: 118px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(0, .86fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: steps;
}

.steps > li::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--red);
  font-family: var(--display-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.step-copy h3 {
  margin: 0;
  font-family: var(--display-bn);
  font-size: 1.28rem;
  line-height: 1.35;
}

.step-copy p,
.step-alt {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.step-alt {
  margin-top: 0;
  font-family: var(--body-bn);
  line-height: 1.6;
}

.callout {
  position: relative;
  margin-top: 34px;
  padding: clamp(27px, 5vw, 45px);
  overflow: hidden;
  border-radius: 5px 28px 28px 28px;
  color: var(--paper-bright);
  background: var(--green-deep);
  box-shadow: 18px 21px 0 var(--red);
}

.callout::after {
  position: absolute;
  right: -20px;
  bottom: -74px;
  content: "✓";
  color: rgba(255, 255, 255, .07);
  font-family: var(--body-en);
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
}

.callout h3 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
  font-family: var(--display-bn);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.25;
}

.callout p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 250, 240, .72);
  font-size: .9rem;
}

.callout p[lang="en"] {
  font-family: var(--body-en);
}

.boundary {
  margin-top: 32px;
  padding: 28px;
  border: 2px solid var(--red);
  background: rgba(255, 250, 240, .66);
}

.boundary strong {
  display: block;
  color: var(--red-dark);
  font-family: var(--display-bn);
  font-size: 1.25rem;
}

.boundary p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.boundary p[lang="en"] {
  font-family: var(--body-en);
}

.path {
  display: inline-block;
  max-width: 100%;
  padding: .15em .42em;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--green-deep);
  background: var(--paper-bright);
  font-family: var(--mono);
  font-size: .86em;
}

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

.ref-search {
  max-width: 660px;
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.ref-search-label {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-family: var(--body-en);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ref-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--mono);
  font-size: .95rem;
}

.ref-search-input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.ref-search-status {
  min-height: 1.2em;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.ref-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .82);
  box-shadow: 12px 14px 0 rgba(20, 33, 28, .055);
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.ref-table th,
.ref-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.ref-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--green);
  background: var(--paper-deep);
  font-family: var(--body-en);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ref-table tbody tr:last-child td {
  border-bottom: 0;
}

.ref-table tbody tr:nth-child(even) {
  background: rgba(20, 33, 28, .022);
}

.cell-bangla {
  width: 1%;
  min-width: 74px;
  font-family: var(--display-bn);
  font-size: 1.5rem;
  line-height: 1.2;
  white-space: nowrap;
}

.cell-secondary {
  color: var(--muted);
  font-size: 1.25rem;
}

.cell-keys {
  width: 99%;
  line-height: 2.1;
}

.cell-name {
  color: var(--muted);
  font-size: .82rem;
}

.cell-name span[lang="bn"] {
  font-family: var(--body-bn);
}

.key {
  display: inline-block;
  margin-right: 5px;
  padding: .2em .5em;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 5px;
  color: var(--green-deep);
  background: var(--paper-bright);
  font-family: var(--mono);
  font-size: .84rem;
  font-weight: 700;
}

.key-alt {
  color: var(--muted);
  background: transparent;
  font-weight: 500;
}

.ref-table-digits .cell-bangla {
  font-size: 1.3rem;
}

@media (max-width: 720px) {
  .ref-table th,
  .ref-table td {
    padding: 9px 12px;
  }

  .cell-bangla {
    min-width: 58px;
    font-size: 1.3rem;
  }
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 4px 15px 15px 15px;
  font-size: .82rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.button:hover {
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 11px 25px rgba(20, 33, 28, .12);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--green);
  color: var(--paper-bright);
  background: var(--green);
}

.button-primary:hover {
  color: var(--paper-bright);
  background: var(--green-deep);
}

.release-note {
  margin-top: clamp(76px, 10vw, 126px);
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid var(--line);
  color: var(--paper-bright);
  background: var(--ink);
}

.release-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .5fr);
  align-items: end;
  gap: 36px;
}

.release-note h2 {
  margin: 0;
  font-family: var(--display-bn);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.15;
}

.release-note p {
  max-width: 660px;
  margin: 17px 0 0;
  color: rgba(255, 250, 240, .67);
  font-size: .88rem;
}

.release-note p[lang="en"] {
  font-family: var(--body-en);
}

.release-note .button {
  border-color: var(--lime);
  color: var(--green-black);
  background: var(--lime);
}

.release-note .button:hover {
  color: var(--green-black);
  background: var(--paper-bright);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-lockup strong {
  display: block;
  font-family: var(--display-bn);
  font-size: 1.15rem;
}

.footer-lockup p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: var(--body-en);
  font-size: .7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hero-aside {
    grid-column: 2;
    width: min(100%, 520px);
    justify-self: start;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .contents {
    position: static;
  }

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

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

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

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 15px;
  }

  .mini-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 17px;
    overflow-x: auto;
    padding-bottom: 3px;
    white-space: nowrap;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 64px 76px;
  }

  .hero-index {
    width: 100%;
    align-self: auto;
    flex-direction: row;
    padding: 0 0 11px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
    writing-mode: horizontal-tb;
  }

  .hero-aside {
    grid-column: 1;
  }

  .hero-title {
    font-size: clamp(3.15rem, 16vw, 5.5rem);
  }

  .contents ol,
  .language-pair,
  .fact-grid,
  .release-note-grid {
    grid-template-columns: 1fr;
  }

  .steps > li {
    grid-template-columns: 55px minmax(0, 1fr);
  }

  .step-alt {
    grid-column: 2;
  }

  .callout {
    margin-right: 10px;
    box-shadow: 10px 12px 0 var(--red);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 37px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .contents ol {
    grid-template-columns: 1fr;
  }

  .language-card,
  .fact-card,
  .boundary {
    padding: 22px;
  }

  .steps > li {
    grid-template-columns: 1fr;
  }

  .step-alt {
    grid-column: 1;
  }

  .button {
    width: 100%;
  }
}

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

  *, *::before, *::after {
    transition-duration: .01ms !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  body::before,
  .site-header,
  .contents,
  .action-row,
  .site-footer {
    display: none;
  }

  .hero-grid,
  .page-layout {
    display: block;
    padding-block: 36px;
  }

  .hero-index,
  .hero-aside {
    margin-top: 24px;
  }

  .language-pair,
  .fact-card,
  .boundary {
    break-inside: avoid;
  }
}
