/*
 * HIGH-FIDELITY TECHNICAL MANUAL
 * Inspired by makingsoftware.com, stripe.com/docs, Dieter Rams
 * Precise, monochromatic, dense with clarity
 */

/* ═══════════════════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Typography */
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;
  --font-sans: 'Inter', 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Color Palette - Monochromatic with Technical Accent */
  --color-paper: #FAFAFA;
  --color-white: #FFFFFF;
  --color-ink: #111111;
  --color-ink-muted: #555555;
  --color-ink-light: #888888;
  --color-border: #111111;
  --color-border-light: #E0E0E0;
  --color-surface: #F5F5F5;

  /* Accent: Electric Blue - used ONLY for links and active states */
  --color-accent: #0055FF;
  --color-accent-hover: #0044CC;

  /* Grid */
  --grid-gap: 1px;
  --content-max: 1200px;
  --content-narrow: 720px;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Border */
  --border: 1px solid var(--color-border);
  --border-light: 1px solid var(--color-border-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DARK MODE - Catppuccin Mocha
   ═══════════════════════════════════════════════════════════════════════════ */

[data-theme="dark"] {
  --color-paper: #1e1e2e;
  --color-white: #cdd6f4;
  --color-ink: #cdd6f4;
  --color-ink-muted: #a6adc8;
  --color-ink-light: #6c7086;
  --color-border: #45475a;
  --color-border-light: #313244;
  --color-surface: #181825;
  --color-accent: #89b4fa;
  --color-accent-hover: #b4befe;
}

[data-theme="dark"] ::selection {
  background-color: var(--color-accent);
  color: var(--color-surface);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-paper);
  min-height: 100vh;
}

::selection {
  background-color: var(--color-ink);
  color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 1.5rem;
  font-weight: 400;
}

h2 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-light);
}

h3 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--color-surface);
  padding: 0.125em 0.375em;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CODE BLOCKS - Terminal Window Style
   ═══════════════════════════════════════════════════════════════════════════ */

pre {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.6;
  background: var(--color-surface);
  border: var(--border);
  padding: var(--space-md);
  overflow-x: auto;
  position: relative;
}

pre::before {
  content: '$ _';
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-ink-light);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-light);
}

pre code {
  background: none;
  padding: 0;
  font-size: inherit;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAYOUT: BENTO GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
  max-width: var(--content-max);
  margin: 0 auto;
  background: var(--color-border);
  border: var(--border);
  border-top: none;
  border-bottom: none;
  overflow: hidden;
}

.bento__cell {
  background: var(--color-paper);
  padding: var(--space-lg);
}

.bento__cell--span-3 { grid-column: span 3; }
.bento__cell--span-4 { grid-column: span 4; }
.bento__cell--span-5 { grid-column: span 5; }
.bento__cell--span-6 { grid-column: span 6; }
.bento__cell--span-7 { grid-column: span 7; }
.bento__cell--span-8 { grid-column: span 8; }
.bento__cell--span-9 { grid-column: span 9; }
.bento__cell--span-12 { grid-column: span 12; }

.bento__cell--row-2 { grid-row: span 2; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  border-bottom: var(--border);
  background: var(--color-paper);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
}

.nav__logo {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo:hover {
  color: var(--color-ink);
  text-decoration: none;
}

.nav__logo::before {
  content: '> ';
  color: var(--color-ink-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 44px;
  height: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  padding: 0;
  margin-left: var(--space-sm);
}

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

.theme-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.theme-toggle__track {
  position: absolute;
  inset: 2px;
  border-radius: 8px;
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--color-ink);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle__icon {
  width: 10px;
  height: 10px;
  fill: var(--color-paper);
  transition: opacity 0.15s ease;
}

.theme-toggle__icon--moon {
  display: block;
}

.theme-toggle__icon--sun {
  display: none;
}

[data-theme="dark"] .theme-toggle {
  background: var(--color-surface);
}

[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(22px);
  background: var(--color-accent);
}

[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon--sun {
  display: block;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-ink-muted);
  text-decoration: none;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid transparent;
  transition: all 0.15s ease;
}

.nav__link:hover {
  color: var(--color-ink);
  text-decoration: none;
}

.nav__link--active {
  color: var(--color-ink);
  border-bottom-color: var(--color-ink);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */

main {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-lg);
}

.container--narrow {
  max-width: var(--content-narrow);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROFILE PHOTO - DITHERED / HALFTONE EFFECT
   ═══════════════════════════════════════════════════════════════════════════ */

.portrait {
  position: relative;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  overflow: hidden;
  border: var(--border);
  margin: auto;
}

.portrait--circle {
  border-radius: 50%;
}

.portrait__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait--dithered .portrait__image {
  filter: grayscale(100%) contrast(1.4) brightness(1.05) saturate(0);
}

.portrait--halftone {
  background:
    radial-gradient(circle, var(--color-ink) 1px, transparent 1px);
  background-size: 3px 3px;
}

.portrait--halftone .portrait__image {
  filter: grayscale(100%) contrast(1.5) brightness(1.2);
  opacity: 0.9;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INTRODUCTION CELL
   ═══════════════════════════════════════════════════════════════════════════ */

.intro-cell {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.7;
}

.intro-cell__greeting {
  display: block;
  color: var(--color-ink-light);
  margin-bottom: var(--space-xs);
  font-size: 0.75rem;
}

.cursor {
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background: var(--color-ink-light);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.intro-cell__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.intro-cell__role {
  color: var(--color-ink-muted);
  display: block;
  margin-bottom: var(--space-sm);
}

.intro-cell__bio {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.intro-cell__location {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-ink-light);
  margin-top: var(--space-md);
  padding: var(--space-xs) 0;
  border-top: var(--border-light);
}

.intro-cell__location::before {
  content: '[ ';
}

.intro-cell__location::after {
  content: ' ]';
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION CELL (Vertical List)
   ═══════════════════════════════════════════════════════════════════════════ */

.nav-vertical {
  list-style: none;
}

.nav-vertical__item {
  border-bottom: var(--border-light);
}

.nav-vertical__item:last-child {
  border-bottom: none;
}

.nav-vertical__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-ink);
  text-decoration: none;
  transition: all 0.15s ease;
}

.nav-vertical__link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-vertical__link::after {
  content: '>';
  color: var(--color-ink-light);
  transition: transform 0.15s ease;
}

.nav-vertical__link:hover::after {
  transform: translateX(4px);
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE CARD COMPONENT (File Card Style)
   ═══════════════════════════════════════════════════════════════════════════ */

.file-card {
  display: block;
  padding: var(--space-md);
  background: var(--color-paper);
  border: var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
}

.file-card:hover {
  background: var(--color-surface);
  text-decoration: none;
}

.file-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.file-card__meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.file-card__title {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--space-xs);
}

.file-card__excerpt {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-sm);
}

.file-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.file-card__tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25em 0.5em;
  background: var(--color-surface);
  border: var(--border-light);
  color: var(--color-ink-muted);
}

.file-card__arrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-ink-light);
  transition: transform 0.15s ease;
}

.file-card:hover .file-card__arrow {
  transform: translateX(4px);
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   WORK ITEM CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.work-item {
  padding: var(--space-md) 0;
  border-bottom: var(--border-light);
}

.work-item:first-child {
  padding-top: 0;
}

.work-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.work-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.work-item__title {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
}

.work-item__title a {
  color: inherit;
}

.work-item__title a:hover {
  color: var(--color-accent);
}

.work-item__date {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-ink-light);
  white-space: nowrap;
}

.work-item__org {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-xs);
}

.work-item__description {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.work-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: var(--space-sm);
}

.work-item__link::after {
  content: '>';
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════════════════ */

.section-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border);
}

.section-header__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-light);
}

.section-header__title::before {
  content: '// ';
}

.section-header__count {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--color-ink-light);
}

.section-header__count::before {
  content: '[';
}

.section-header__count::after {
  content: ']';
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT LIST
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-list {
  list-style: none;
}

.contact-list__item {
  padding: var(--space-xs) 0;
  border-bottom: var(--border-light);
}

.contact-list__item:last-child {
  border-bottom: none;
}

.contact-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-ink);
  text-decoration: none;
}

.contact-list__link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-list__label {
  color: var(--color-ink-light);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  border-top: var(--border);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.footer__text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-ink-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE CONTENT STYLES (for non-bento pages)
   ═══════════════════════════════════════════════════════════════════════════ */

.page-content {
  padding: var(--space-xl) var(--space-lg);
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.page-content h1 {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border);
}

.page-content h1::before {
  content: '# ';
  color: var(--color-ink-light);
}

.section {
  margin-bottom: var(--space-xl);
}

.section__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-light);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-light);
}

.section__title::before {
  content: '// ';
}

.publication {
  padding: var(--space-md) 0;
  border-bottom: var(--border-light);
}

.publication:first-child {
  padding-top: 0;
}

.publication:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.publication__title {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.publication__authors {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-xs);
}

.publication__venue {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-ink-light);
}

.publication__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: var(--space-sm);
}

.publication__link svg {
  width: 12px;
  height: 12px;
}

.card {
  padding: var(--space-md) 0;
  border-bottom: var(--border-light);
}

.card:first-child {
  padding-top: 0;
}

.card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
  flex-wrap: wrap;
}

.card__title {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
}

.card__title a {
  color: inherit;
}

.card__title a:hover {
  color: var(--color-accent);
}

.card__meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-ink-light);
}

.card__org {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-xs);
}

.card__description {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.intro.research-intro {
  padding: var(--space-md) 0;
  margin-bottom: var(--space-lg);
  border-bottom: var(--border);
}

.intro.research-intro p {
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.floating-nav {
  position: fixed;
  left: calc((100vw - var(--content-narrow)) / 2 - 160px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.floating-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.floating-nav__link {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-ink-light);
  text-decoration: none;
  padding: var(--space-xs) 0;
  transition: color 0.15s ease;
}

.floating-nav__link:hover {
  color: var(--color-ink);
  text-decoration: none;
}

.floating-nav__link--active {
  color: var(--color-ink);
  font-weight: 500;
}

.floating-nav__link--active::before {
  content: '→ ';
}

.page-content--with-nav {
  scroll-behavior: smooth;
}

/* Hide floating nav on smaller screens */
@media (max-width: 1100px) {
  .floating-nav {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

.mono { font-family: var(--font-mono); }
.text-muted { color: var(--color-ink-muted); }
.text-light { color: var(--color-ink-light); }
.text-sm { font-size: 0.8125rem; }
.text-xs { font-size: 0.6875rem; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento__cell--span-3,
  .bento__cell--span-4 { grid-column: span 3; }
  .bento__cell--span-5,
  .bento__cell--span-6 { grid-column: span 6; }
  .bento__cell--span-7,
  .bento__cell--span-8,
  .bento__cell--span-9,
  .bento__cell--span-12 { grid-column: span 6; }
}

@media (max-width: 600px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
  }

  html, body {
    overflow-x: hidden;
  }

  .bento {
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
  }

  .bento__cell--span-3,
  .bento__cell--span-4,
  .bento__cell--span-5,
  .bento__cell--span-6,
  .bento__cell--span-7,
  .bento__cell--span-8,
  .bento__cell--span-9,
  .bento__cell--span-12 {
    grid-column: span 1;
  }

  .bento__cell--row-2 {
    grid-row: span 1;
  }

  .nav {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
  }

  .nav__links {
    gap: var(--space-md);
  }

  .portrait {
    max-width: 150px;
    margin: 0 auto;
  }

  .file-card__header {
    flex-direction: column;
  }

  .work-item__header,
  .card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-list[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

@media print {
  .header, .footer {
    display: none;
  }

  .bento {
    display: block;
    border: none;
    background: none;
  }

  .bento__cell {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding: 1rem 0;
  }

  a {
    color: inherit;
    text-decoration: underline;
  }
}
