:root {
  --by-bg: #fbf7f1;
  --by-raised: #f4ede2;
  --by-deep: #ece2d3;
  --by-ink: #2a2520;
  --by-muted: #5d534a;
  --by-accent: #5c6f3f;
  --by-accent-deep: #46552f;
  --by-moss: #dfe3cf;
  --by-dark: #2e3325;
  --by-on-dark: #f5efe3;
  --by-on-dark-muted: #d9d1c1;
  --by-line: #d9cbb6;
  --by-r: 22px;
  --by-r-sm: 14px;
  --by-wrap: 1120px;
  --by-narrow: 720px;
  --by-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --by-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --by-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

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

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

body {
  margin: 0;
  background: var(--by-bg);
  color: var(--by-ink);
  font-family: var(--by-sans);
  font-size: 18px;
  line-height: 1.8;
}

h1, h2, h3 {
  font-family: var(--by-serif);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--by-ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.15rem, 5.6vw, 3.6rem); line-height: 1.12; }

h2 { font-size: clamp(1.55rem, 3.3vw, 2.25rem); line-height: 1.22; }

h3 { font-size: 1.24rem; line-height: 1.35; }

p { margin: 0 0 1.1em; }

a {
  color: var(--by-accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--by-ink); }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--by-accent);
  outline-offset: 2px;
  border-radius: 6px;
}

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

table { border-collapse: collapse; width: 100%; }

ul, ol { padding-left: 1.2em; margin: 0 0 1.1em; }

.by-skip {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--by-dark);
  color: var(--by-on-dark);
  padding: 10px 16px;
  border-radius: var(--by-r-sm);
  z-index: 50;
}

.by-skip:focus { top: 12px; }

.by-wrap {
  width: 100%;
  max-width: var(--by-wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.by-wrap--narrow { max-width: calc(var(--by-narrow) + 40px); }

.by-head {
  background: var(--by-bg);
  padding-top: 14px;
  padding-bottom: 6px;
}

.by-head__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
}

.by-head__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--by-ink);
  text-decoration: none;
  font-family: var(--by-serif);
  font-size: 1.35rem;
  font-weight: 600;
  min-height: 44px;
}

.by-head__mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.by-head__place {
  display: block;
  font-family: var(--by-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--by-muted);
  line-height: 1.2;
}

.by-head__nav {
  display: flex;
  gap: 4px 18px;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 4px;
}

.by-head__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  white-space: nowrap;
  color: var(--by-ink);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
}

.by-head__nav a:hover, .by-head__nav a[aria-current="page"] { border-bottom-color: var(--by-accent); }

.by-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border: 2px solid var(--by-accent);
  border-radius: var(--by-r-sm);
  background: var(--by-accent);
  color: var(--by-on-dark);
  font-family: var(--by-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.by-btn:hover {
  background: var(--by-accent-deep);
  border-color: var(--by-accent-deep);
  color: var(--by-on-dark);
}

.by-btn--line { background: transparent; color: var(--by-accent-deep); }

.by-btn--line:hover { background: var(--by-moss); color: var(--by-ink); }

.by-btn--light {
  background: var(--by-on-dark);
  border-color: var(--by-on-dark);
  color: var(--by-dark);
}

.by-btn--light:hover {
  background: var(--by-moss);
  border-color: var(--by-moss);
  color: var(--by-dark);
}

.by-crumbs {
  font-size: 0.9rem;
  color: var(--by-muted);
  padding-top: 8px;
}

.by-crumbs a {
  display: inline-block;
  padding: 12px 0;
  min-height: 44px;
}

.by-stamp {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 0.9rem;
  color: var(--by-muted);
  margin: 0 0 1.2em;
}

.by-stamp strong { color: var(--by-ink); font-weight: 600; }

.by-lead {
  font-size: 1.14rem;
  line-height: 1.75;
  max-width: 44em;
}

.by-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.by-hero { padding-top: 40px; padding-bottom: 64px; }

.by-hero__text {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.by-hero__text .by-lead { margin-left: auto; margin-right: auto; }

.by-hero__text .by-actions { justify-content: center; }

.by-hero__shot {
  margin-top: 44px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1060px;
}

.by-flow { padding-top: 72px; padding-bottom: 72px; }

.by-flow--tight { padding-top: 36px; padding-bottom: 88px; }

.by-flow--paper { background: var(--by-raised); border-radius: 40px 40px 0 0; }

.by-flow__head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 36px;
}

.by-flow__body {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.by-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.by-pair__big {
  background: var(--by-moss);
  border-radius: var(--by-r);
  padding: 28px 26px 16px;
}

.by-pair__small { padding: 8px 4px; }

.by-pair__small h3 { color: var(--by-accent-deep); }

.by-figure { margin: 34px 0; }

.by-figure img { border-radius: var(--by-r); width: 100%; }

.by-figure--tall {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.by-figure__cap {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--by-muted);
  margin-top: 10px;
}

.by-tablebox {
  overflow-x: auto;
  border-radius: var(--by-r);
  background: var(--by-bg);
  border: 1px solid var(--by-line);
  margin-top: 8px;
}

.by-table {
  min-width: 640px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.by-table caption {
  text-align: left;
  font-family: var(--by-serif);
  font-size: 1.12rem;
  font-weight: 600;
  padding: 18px 20px 10px;
  color: var(--by-ink);
}

.by-table th, .by-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 20px;
}

.by-table thead th {
  background: var(--by-deep);
  font-size: 0.86rem;
  font-weight: 600;
}

.by-table tbody tr:nth-child(even) { background: var(--by-raised); }

.by-table tbody th { font-weight: 600; }

.by-table__note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--by-muted);
  margin-top: 12px;
}

.by-slips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.by-slips li {
  background: var(--by-bg);
  border-radius: var(--by-r);
  padding: 20px 24px;
}

.by-slips b {
  display: block;
  font-family: var(--by-serif);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.by-myths {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.by-myth {
  border-radius: var(--by-r);
  background: var(--by-raised);
  padding: 22px 24px 8px;
}

.by-myth__said {
  font-family: var(--by-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--by-muted);
}

.by-myth__true { margin-bottom: 0.6em; }

.by-myth__src { font-size: 0.88rem; }

.by-grounds {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  counter-reset: by-ground;
  list-style: none;
  padding: 0;
}

.by-grounds li {
  position: relative;
  padding-left: 54px;
  counter-increment: by-ground;
}

.by-grounds li::before {
  content: counter(by-ground);
  position: absolute;
  left: 0;
  top: 2px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--by-moss);
  color: var(--by-accent-deep);
  font-family: var(--by-serif);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.by-cta {
  background: var(--by-dark);
  color: var(--by-on-dark);
  border-radius: 36px;
  padding: 54px 28px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.by-cta h2 {
  color: var(--by-on-dark);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.by-cta p {
  color: var(--by-on-dark-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.by-cta a:not(.by-btn) { color: var(--by-on-dark); }

.by-sources {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--by-muted);
  padding-left: 1.1em;
}

.by-sources li { margin-bottom: 6px; }

.by-sources a { display: inline-block; padding: 6px 0; }

.by-cover {
  background: var(--by-dark);
  color: var(--by-on-dark);
  border-radius: 0 0 48px 48px;
  padding-top: 90px;
  padding-bottom: 96px;
}

.by-cover h1 {
  color: var(--by-on-dark);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  max-width: 900px;
}

.by-cover .by-stamp, .by-cover .by-stamp strong { color: var(--by-on-dark-muted); }

.by-cover__line {
  font-size: 1.2rem;
  color: var(--by-on-dark-muted);
  max-width: 34em;
}

.by-cover .by-crumbs, .by-cover .by-crumbs a { color: var(--by-on-dark-muted); }

.by-corpus { padding-top: 64px; padding-bottom: 40px; }

.by-corpus h2 { margin-top: 1.6em; }

.by-toc {
  background: var(--by-raised);
  border-radius: var(--by-r);
  padding: 20px 26px;
  margin-bottom: 24px;
}

.by-toc ol { margin: 0; }

.by-toc a { display: inline-block; padding: 8px 0; }

.by-terms {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px 34px;
  margin: 0;
}

.by-terms div { padding: 14px 0; }

.by-terms dt {
  font-family: var(--by-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--by-accent-deep);
}

.by-terms dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.by-nots { list-style: none; padding: 0; }

.by-nots li { padding: 12px 0 12px 34px; position: relative; }

.by-nots li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 27px;
  width: 16px;
  height: 2px;
  background: var(--by-accent);
}

.by-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.by-steps::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--by-line);
}

.by-step {
  position: relative;
  padding-left: 74px;
  padding-bottom: 40px;
}

.by-step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--by-accent);
  color: var(--by-on-dark);
  font-family: var(--by-serif);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.by-step h2 { padding-top: 4px; }

.by-step__aside {
  background: var(--by-raised);
  border-radius: var(--by-r-sm);
  padding: 16px 20px;
  font-size: 0.96rem;
}

.by-worked {
  background: var(--by-dark);
  color: var(--by-on-dark);
  border-radius: var(--by-r);
  padding: 22px 24px;
  font-family: var(--by-mono);
  font-size: 0.86rem;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre;
  margin: 0 0 1.2em;
}

.by-mini { list-style: decimal; padding-left: 1.3em; }

.by-mini li { margin-bottom: 10px; }

.by-compare { padding-top: 20px; padding-bottom: 50px; }

.by-compare .by-table { min-width: 760px; font-size: 1rem; }

.by-verdicts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding-top: 30px;
}

.by-verdict { border-left: 4px solid var(--by-accent); padding: 4px 0 4px 22px; }

.by-scheme {
  background: var(--by-raised);
  border-radius: var(--by-r);
  padding: 22px;
  margin: 26px 0;
}

.by-scheme svg {
  width: 100%;
  height: auto;
  display: block;
}

.by-scheme__cap {
  font-size: 0.88rem;
  color: var(--by-muted);
  margin: 12px 0 0;
}

.by-time {
  list-style: none;
  padding: 0;
  margin: 0;
}

.by-time li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px 26px;
  padding: 16px 0;
}

.by-time time {
  font-family: var(--by-mono);
  font-size: 0.9rem;
  color: var(--by-accent-deep);
  font-weight: 600;
}

.by-stripe { padding-top: 64px; padding-bottom: 64px; }

.by-stripe--raised { background: var(--by-raised); }

.by-stripe--moss { background: var(--by-moss); }

.by-stripe__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}

.by-places {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.by-places li {
  background: var(--by-bg);
  border-radius: var(--by-r-sm);
  padding: 14px 20px;
}

.by-places strong { font-family: var(--by-serif); font-size: 1.08rem; }

.by-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.by-gallery figure { margin: 0; }

.by-gallery img { border-radius: var(--by-r-sm); width: 100%; }

.by-zig {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 52px;
}

.by-zig__media { min-width: 0; }

.by-zig__text { min-width: 0; }

.by-zig__media img {
  border-radius: var(--by-r);
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.by-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.by-numbers div {
  background: var(--by-raised);
  border-radius: var(--by-r-sm);
  padding: 16px 18px;
}

.by-numbers dt {
  font-size: 0.86rem;
  color: var(--by-muted);
  line-height: 1.4;
}

.by-numbers dd {
  margin: 4px 0 0;
  font-family: var(--by-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.by-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.by-split__fixed { min-width: 0; }

.by-split__flow { min-width: 0; }

.by-split__panel {
  background: var(--by-moss);
  border-radius: var(--by-r);
  padding: 30px 28px;
}

.by-split__panel h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }

.by-answer {
  background: var(--by-bg);
  border-radius: var(--by-r-sm);
  padding: 16px 20px;
  font-size: 1.02rem;
}

.by-split__flow section { padding-bottom: 34px; }

.by-convert {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 1.2em;
}

.by-convert div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 12px 18px;
  background: var(--by-raised);
  border-radius: var(--by-r-sm);
}

.by-convert dt { font-size: 0.95rem; }

.by-convert dd {
  margin: 0;
  font-family: var(--by-mono);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--by-accent-deep);
}

.by-offset {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.by-offset__cell { min-width: 0; }

.by-offset__cell--card {
  background: var(--by-raised);
  border-radius: var(--by-r);
  padding: 30px 28px 14px;
}

.by-deck {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-top: 30px;
  padding-bottom: 50px;
}

.by-card {
  background: var(--by-raised);
  border-radius: var(--by-r);
  padding: 26px 24px 12px;
  min-width: 0;
}

.by-card--wide { background: var(--by-moss); }

.by-card--plain {
  background: transparent;
  padding-left: 4px;
  padding-right: 4px;
}

.by-card img {
  border-radius: var(--by-r-sm);
  margin-bottom: 14px;
  width: 100%;
}

.by-bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.by-tile {
  background: var(--by-raised);
  border-radius: var(--by-r);
  padding: 24px 24px 10px;
  min-width: 0;
}

.by-tile--hero { background: var(--by-moss); }

.by-tile--dark { background: var(--by-dark); color: var(--by-on-dark); }

.by-tile--dark h2, .by-tile--dark h3 { color: var(--by-on-dark); }

.by-tile--dark .by-convert div { background: #3a4030; }

.by-tile--dark .by-convert dd { color: var(--by-moss); }

.by-tile img {
  border-radius: var(--by-r-sm);
  width: 100%;
  margin-bottom: 12px;
}

.by-legal { padding-top: 20px; padding-bottom: 60px; }

.by-legal h2 { font-size: 1.4rem; margin-top: 1.4em; }

.by-legal .by-tablebox { margin-bottom: 1.2em; }

.by-legal .by-table { min-width: 560px; }

.by-lost {
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
}

.by-lost__code {
  font-family: var(--by-serif);
  font-size: clamp(4rem, 16vw, 8rem);
  line-height: 1;
  color: var(--by-accent);
  margin: 0 0 12px;
}

.by-foot { padding-top: 20px; padding-bottom: 30px; }

.by-foot__card {
  background: var(--by-deep);
  border-radius: 32px;
  padding: 30px 26px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.by-foot__who { font-size: 0.96rem; line-height: 1.65; }

.by-foot__who strong { font-family: var(--by-serif); font-size: 1.2rem; }

.by-foot__who a {
  display: inline-block;
  padding: 12px 0;
  min-height: 44px;
}

.by-foot__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
}

.by-foot__legal a {
  display: inline-block;
  padding: 12px 0;
  min-height: 44px;
  font-size: 0.94rem;
}

.by-foot__base {
  font-size: 0.85rem;
  color: var(--by-muted);
  margin: 0;
}

.by-consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  background: var(--by-dark);
  color: var(--by-on-dark);
  border-radius: 26px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px #2a25202e;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.by-consent[hidden] { display: none; }

.by-consent__title {
  font-family: var(--by-serif);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.by-consent__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--by-on-dark-muted);
  margin: 0 0 14px;
}

.by-consent__text a { color: var(--by-on-dark); }

.by-consent__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.by-consent__row .by-btn { flex: 1 1 auto; }

.by-js .by-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.by-js .by-reveal.is-in { opacity: 1; transform: none; }

@media (min-width: 560px) {
  .by-consent__row .by-btn { flex: 0 0 auto; }

  .by-numbers { grid-template-columns: repeat(4, minmax(0, 1fr)); }

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

@media (min-width: 760px) {
  .by-head__nav {
    width: auto;
    overflow: visible;
    padding-bottom: 0;
  }

  .by-pair { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: start; }

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

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

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

  .by-time li { grid-template-columns: 150px minmax(0, 1fr); }

  .by-stripe__cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; }

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

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

  .by-foot__card { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); padding: 34px 40px 20px; }

  .by-foot__base { grid-column: 1 / -1; }

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

  .by-tile--span { grid-column: 1 / -1; }
}

@media (min-width: 960px) {
  .by-zig { grid-template-columns: minmax(0, 1fr) 420px; gap: 60px; }

  .by-zig--flip .by-zig__media { order: -1; }

  .by-offset { grid-template-columns: repeat(12, minmax(0, 1fr)); }

  .by-offset__cell--a { grid-column: 2 / 10; }

  .by-offset__cell--b { grid-column: 1 / 8; }

  .by-offset__cell--c { grid-column: 5 / 13; }

  .by-offset__cell--d { grid-column: 3 / 12; }

  .by-offset__cell--e { grid-column: 7 / 13; }

  .by-deck { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .by-card--wide { grid-column: span 2; }

  .by-bento { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .by-tile--hero { grid-column: span 2; grid-row: span 2; }

  .by-tile--span { grid-column: 1 / -1; }

  .by-tile--wide { grid-column: span 2; }
}

@media (min-width: 1000px) {
  .by-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }

  .by-split__fixed {
    position: sticky;
    top: 20px;
    align-self: start;
  }
}

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

  .by-js .by-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .by-btn { transition: none; }
}
