@font-face {
  font-family: "DM Sans";
  src: url("./fonts/dm-sans-latin-300-normal-C46oWILc.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/dm-sans-latin-400-normal-CW0RaeGs.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/dm-sans-latin-500-normal-B9HHJjqV.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/dm-sans-latin-600-normal-Aqo67rzb.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("./fonts/playfair-display-latin-500-normal-DIxvyhka.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("./fonts/playfair-display-latin-500-italic-BFrGFGAj.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("./fonts/playfair-display-latin-600-normal-CZLGqjJe.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --cream: #f4f1ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #1e2420;
  --muted: #646b64;
  --sage: #6f7c61;
  --sage-light: #e7ece2;
  --rust: #9d594c;
  --sand: #e8ded0;
  --line: rgba(30, 36, 32, 0.13);
  --soft-line: rgba(30, 36, 32, 0.075);
  --page: 1180px;
  --reading-progress: 0%;
}

* {
  box-sizing: border-box;
}

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

html::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  width: var(--reading-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--rust));
  pointer-events: none;
}

body,
html[data-device="desktop"] body,
html[data-device="tablet"] body,
html[data-device="mobile"] body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: rgba(30, 36, 32, 0.32);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--sage);
  text-decoration-color: currentColor;
}

.container,
html[data-device="desktop"] .container,
html[data-device="tablet"] .container,
html[data-device="mobile"] .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.card,
.section,
.header-card {
  position: relative;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.header-card {
  min-height: 100svh;
  padding: 28px max(24px, calc((100vw - var(--page)) / 2));
  background:
    linear-gradient(116deg, rgba(231, 236, 226, 0.72), rgba(255, 253, 248, 0) 46%),
    var(--paper);
}

.header-top {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, var(--page));
  margin: 0 auto;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.chip,
.chip.green,
html[data-device="mobile"] .chip,
html[data-device="tablet"] .chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: #50584f;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.075em;
}

.chip:first-child {
  border-color: rgba(111, 124, 97, 0.55);
  background: var(--sage-light);
  color: #40503d;
}

.chip-stack,
html[data-device="mobile"] .chip-stack {
  display: none;
}

.header-row,
html[data-device="desktop"] .header-row,
html[data-device="tablet"] .header-row,
html[data-device="mobile"] .header-row {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.3fr);
  grid-template-areas: "visual copy";
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  width: min(100%, var(--page));
  min-height: calc(100svh - 105px);
  margin: 0 auto;
  padding: clamp(45px, 7vw, 82px) 0;
}

.main {
  grid-area: copy;
  min-width: 0;
}

h1,
html[data-device="desktop"] h1,
html[data-device="tablet"] h1,
html[data-device="mobile"] h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 br {
  display: none;
}

h1 .subtitle {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.035em;
}

.hero-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-fragment {
  margin: 0;
  padding: 17px 18px;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  color: #3f4740;
  font-size: 16px;
  line-height: 1.58;
  backdrop-filter: blur(8px);
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.hero-fragment:first-child {
  grid-column: 1 / -1;
  padding: 0 0 19px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 500;
  line-height: 1.46;
}

.hero-fragment:hover:not(:first-child) {
  transform: translateY(-3px);
  border-color: rgba(111, 124, 97, 0.38);
  background: rgba(255, 255, 255, 0.86);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn,
.btn.light,
html[data-device="mobile"] .btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.btn:hover,
.btn.light:hover {
  transform: translateY(-2px);
  border-color: var(--sage);
  background: var(--sage-light);
  color: var(--ink);
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  grid-area: visual;
  width: min(100%, 420px);
  aspect-ratio: 0.87;
  justify-self: center;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 5% 8%;
  border: 1px solid rgba(111, 124, 97, 0.22);
  border-radius: 44% 56% 46% 54% / 55% 42% 58% 45%;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 32px 80px rgba(45, 54, 45, 0.1);
  transform: translateZ(-10px) rotate(-4deg);
}

.hero-visual svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-visual .avatar,
html[data-device="desktop"] .hero-visual .avatar,
html[data-device="tablet"] .hero-visual .avatar,
html[data-device="mobile"] .hero-visual .avatar {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 7%;
  width: 148px;
  height: 174px;
  overflow: hidden;
  margin: 0;
  border: 6px solid var(--paper);
  border-radius: 25px;
  background: #eceee8;
  box-shadow: 0 20px 48px rgba(30, 36, 32, 0.16);
  transform: translateZ(28px) rotate(1.5deg);
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.hv-sheet {
  fill: rgba(255, 253, 248, 0.82);
  stroke: #bfc7b8;
  stroke-width: 1.2;
}

.hv-copy {
  fill: none;
  stroke: #aeb7a6;
  stroke-width: 1.15;
}

.hv-route {
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 9;
  animation: hv-route 15s linear infinite;
}

.hv-route.rust {
  stroke: var(--rust);
  stroke-dasharray: 3 10;
  animation-duration: 19s;
  animation-direction: reverse;
}

.hv-node {
  fill: var(--paper);
  stroke: var(--sage);
  stroke-width: 1.6;
  transform-box: fill-box;
  transform-origin: center;
  animation: hv-pulse 5s ease-in-out infinite;
}

.hv-node.rust {
  stroke: var(--rust);
  animation-delay: -2s;
}

.hv-scan {
  stroke: rgba(157, 89, 76, 0.6);
  stroke-width: 1;
  animation: hv-scan 7s ease-in-out infinite;
}

.hv-sheet-group {
  transform-origin: 200px 240px;
  animation: hv-sheet 10s ease-in-out infinite;
}

@keyframes hv-route {
  to { stroke-dashoffset: -150; }
}

@keyframes hv-pulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.5); opacity: 1; }
}

@keyframes hv-scan {
  0%, 100% { transform: translateY(-64px); opacity: 0; }
  18%, 75% { opacity: 1; }
  85% { transform: translateY(210px); opacity: 0; }
}

@keyframes hv-sheet {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50% { transform: translate(3px, -4px) rotate(-0.2deg); }
}

.editorial-motion {
  display: none;
}

.section {
  padding: clamp(78px, 10vw, 132px) max(24px, calc((100vw - var(--page)) / 2));
}

.section > h2,
.section > p,
.section > ul,
.section > .grid,
.section > .timeline,
.section > .manifest-grid,
.section > .pub-list {
  width: min(100%, var(--page));
  margin-right: auto;
  margin-left: auto;
}

h2 {
  margin-top: 0;
  margin-bottom: 42px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.8vw, 57px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 21px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sage) 0 34px, var(--rust) 34px 54px);
}

p,
li {
  color: #3c443d;
}

.container > section:nth-of-type(2) {
  background: var(--white);
}

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

.manifest-card {
  grid-column: span 4;
  min-height: 240px;
  margin: 0;
  padding: 26px 27px;
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  background: #f7f7f3;
  color: #303831;
  font-size: 18px;
  line-height: 1.68;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.manifest-card:first-child {
  grid-column: span 7;
  background: var(--sage-light);
}

.manifest-card:nth-child(2) {
  grid-column: span 5;
  background: #f2ece4;
}

.manifest-card:last-child {
  grid-column: 5 / span 8;
  min-height: 180px;
}

.manifest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 124, 97, 0.36);
  box-shadow: 0 20px 48px rgba(43, 51, 43, 0.08);
}

.container > section:nth-of-type(3) {
  background: var(--sage-light);
}

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

.tile {
  grid-column: span 4;
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(30, 36, 32, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  transition: transform 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.tile:nth-child(4),
.tile:nth-child(6) {
  grid-column: span 3;
}

.tile:nth-child(5) {
  grid-column: span 6;
}

.tile:nth-child(9) {
  grid-column: span 8;
}

.tile:hover {
  transform: translateY(-5px) rotate(-0.25deg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(43, 51, 43, 0.09);
}

.label,
.tl-year {
  color: #56634f;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
}

.label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 9px 1px 0;
  border-radius: 50%;
  background: var(--rust);
}

.value {
  margin-top: 13px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.28;
}

.container > section:nth-of-type(4) {
  overflow: hidden;
  background: var(--paper);
}

.timeline-shell {
  position: relative;
  width: min(100%, var(--page));
  margin: 0 auto;
}

.timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 33vw);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sage) rgba(111, 124, 97, 0.14);
  scrollbar-width: thin;
}

.timeline::before {
  display: none;
}

.tl-item {
  position: relative;
  min-height: 420px;
  margin: 0;
  padding: 27px;
  border: 1px solid var(--soft-line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(39, 46, 39, 0.05);
  scroll-snap-align: start;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tl-item:first-child {
  background: var(--sage-light);
}

.tl-item:last-child {
  background: #f1ebe3;
}

.tl-item:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 124, 97, 0.36);
  box-shadow: 0 22px 54px rgba(39, 46, 39, 0.1);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 9px 1px 0;
  border: 0;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: none;
}

.tl-year {
  display: inline;
}

.tl-title {
  margin: 17px 0 14px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.22;
}

.tl-title.has-thumb {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 14px;
  align-items: start;
}

.tl-thumb {
  width: 100px;
  height: 66px;
  object-fit: cover;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  background: #eceee8;
  filter: saturate(0.86) contrast(0.98);
}

.tl-item p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.66;
}

.linkline {
  font-size: 14px !important;
}

.timeline-controls {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-bottom: 16px;
}

.timeline-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.timeline-controls button:hover {
  transform: translateY(-2px);
  border-color: var(--sage);
  background: var(--sage-light);
}

.timeline-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(76px, 9vw, 116px) max(24px, calc((100vw - var(--page)) / 2));
  background: var(--ink);
}

.contact-band .section {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.contact-band .section:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.085);
}

.contact-band h2 {
  margin-bottom: 27px;
  color: var(--paper);
  font-size: clamp(25px, 2.6vw, 36px);
}

.contact-band h2::after {
  height: 2px;
  margin-top: 15px;
}

.contact-band p,
.contact-band a,
.contact-band strong {
  color: rgba(255, 253, 248, 0.86);
  font-size: 16px;
}

.container > section:nth-of-type(8) {
  background: #ecece7;
}

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

.pub-item,
.pub-item:nth-child(odd),
.pub-item:nth-child(even) {
  display: grid;
  grid-template-rows: 188px auto;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--soft-line);
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pub-item:hover {
  transform: translateY(-7px);
  border-color: rgba(111, 124, 97, 0.38);
  box-shadow: 0 22px 54px rgba(39, 46, 39, 0.12);
}

.pub-thumb {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 188px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  background: #e4e6e0;
  filter: saturate(0.82) contrast(0.98);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 260ms ease;
}

.pub-item:hover .pub-thumb {
  transform: scale(1.025);
  filter: saturate(1) contrast(1);
}

.pub-title {
  grid-column: 1;
  grid-row: 2;
  padding: 21px 22px 23px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.38;
}

.pub-item:hover .pub-title {
  text-decoration: none;
}

.spacer {
  display: none;
}

.section {
  opacity: 0.985;
  transform: translateY(7px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.2,.7,.2,1);
}

.section.is-visible,
.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  body,
  html[data-device] body {
    font-size: 17px;
  }

  .header-row,
  html[data-device="desktop"] .header-row,
  html[data-device="tablet"] .header-row,
  html[data-device="mobile"] .header-row {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.25fr);
    gap: 42px;
  }

  .hero-fragment {
    grid-column: 1 / -1;
  }

  .manifest-card,
  .manifest-card:first-child,
  .manifest-card:nth-child(2),
  .manifest-card:last-child {
    grid-column: span 6;
  }

  .tile,
  .tile:nth-child(4),
  .tile:nth-child(5),
  .tile:nth-child(6),
  .tile:nth-child(9) {
    grid-column: span 6;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  body,
  html[data-device="mobile"] body {
    font-size: 16px;
  }

  .header-card {
    min-height: auto;
    padding: 18px 16px 54px;
  }

  .header-top,
  html[data-device="mobile"] .header-top {
    display: flex;
    gap: 6px;
    padding-bottom: 18px;
  }

  .chip,
  .chip.green,
  html[data-device="mobile"] .chip {
    min-height: 26px;
    padding: 5px 8px 4px;
    font-size: 9px;
  }

  .header-row,
  html[data-device="mobile"] .header-row {
    grid-template-columns: 98px minmax(0, 1fr);
    grid-template-areas: "visual copy";
    gap: 17px;
    min-height: auto;
    padding: 34px 0 0;
  }

  .hero-visual {
    width: 98px;
    aspect-ratio: 0.78;
    align-self: start;
  }

  .hero-visual::before,
  .hero-visual svg {
    display: none;
  }

  .hero-visual .avatar,
  html[data-device="mobile"] .hero-visual .avatar {
    position: static;
    width: 98px;
    height: 124px;
    border-width: 4px;
    border-radius: 17px;
    transform: none;
  }

  h1,
  html[data-device="mobile"] h1 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: clamp(35px, 10vw, 46px);
  }

  h1 .subtitle {
    margin-top: 10px;
    font-size: 14px;
  }

  .hero-story,
  .cta {
    grid-column: 1 / -1;
  }

  .main {
    display: contents;
  }

  .main h1 {
    align-self: center;
  }

  .hero-story {
    display: block;
    margin-top: 25px;
  }

  .hero-fragment {
    margin-bottom: 9px;
    font-size: 16px;
  }

  .hero-fragment:first-child {
    font-size: 20px;
  }

  .cta {
    margin-top: 16px;
  }

  .section {
    padding: 70px 16px;
  }

  h2 {
    margin-bottom: 30px;
    font-size: 35px;
  }

  .manifest-grid,
  .grid,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .manifest-card,
  .manifest-card:first-child,
  .manifest-card:nth-child(2),
  .manifest-card:last-child,
  .tile,
  .tile:nth-child(4),
  .tile:nth-child(5),
  .tile:nth-child(6),
  .tile:nth-child(9) {
    grid-column: 1;
    min-height: auto;
  }

  .timeline {
    grid-auto-columns: minmax(285px, 86vw);
  }

  .tl-item {
    min-height: 0;
  }

  .contact-band {
    padding: 70px 16px;
  }

  .contact-band .section {
    padding: 25px 22px;
  }

  .pub-list {
    grid-template-columns: 1fr;
  }

  .pub-item,
  .pub-item:nth-child(odd),
  .pub-item:nth-child(even) {
    grid-template-rows: 180px auto;
  }

  .pub-thumb {
    height: 180px;
  }
}

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

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