/* ============================================================
   BROWSECOMMENTS — shared site styles
   - Inter 500/600/700/800 only (matches video)
   - Headlines weight 800 + line-height 1.3 (matches video Headline.tsx)
   - No italic. Min body 17px. Secondary text never lighter than #2C2C2A.
   - Click-outside-to-close on overlays. Burger from LEFT.
   ============================================================ */

:root {
  --paper:        #F3F1EC;
  --paper-2:      #EAE6DD;
  --card:         #FFFFFF;
  --ink:          #111111;
  --ink-2:        #2C2C2A;
  --rule:         #1A1A18;
  --rule-soft:    #C9C5BA;
  --teal:         #0B9B8A;
  --teal-deep:    #086F62;
  --red:          #E24B4A;
  --red-deep:     #B53A39;
  --highlight:    #F5E9C9;

  --f: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Sizes */
  --t-body:        17px;
  --t-comment:     17px;
  --t-meta:        14px;
  --t-source:      16px;
  --t-user:        15px;
  --t-likes:       14px;

  --t-headline-md: clamp(22px, 4.6vw, 30px);
  --t-headline-sm: clamp(19px, 3.8vw, 24px);   /* long */
  --t-headline-lg: clamp(25px, 5.4vw, 34px);   /* short */
  --t-masthead:    clamp(28px, 6vw, 40px);
  --t-brand:       18px;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-7: 32px; --s-8: 44px; --s-9: 64px;
  --b-1: 1px; --b-2: 2px;
  --r-sm: 2px;

  --shadow-card: 0 1px 0 rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-pop:  0 16px 40px rgba(17,17,17,0.22), 0 2px 6px rgba(17,17,17,0.08);

  --header-chrome: 50px;

  --max-w: 1100px;
  --content-w: calc(var(--max-w) - 2 * var(--s-4));   /* matches .shell content area */
}
@media (min-width: 768px) {
  :root {
    --t-comment: 18px;
    --t-source: 17px;
    --t-user: 16px;
    --t-likes: 15px;
    --t-meta: 15px;
    --header-chrome: 56px;
    --content-w: calc(var(--max-w) - 2 * var(--s-5));
  }
}
@media (min-width: 1024px) {
  :root {
    --t-brand: 22px;
    --header-chrome: 64px;
    --content-w: calc(var(--max-w) - 2 * var(--s-6));
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f);
  font-size: var(--t-body);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
::selection { background: var(--highlight); color: var(--ink); }

/* ============================================================
   Sticky header
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--b-2) solid var(--rule);
}
.header__chrome {
  height: var(--header-chrome);
  display: flex; align-items: center; gap: var(--s-3);
  padding: 0 var(--s-3);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: var(--paper);
}
@media (min-width: 1024px) { .header__chrome { padding: 0 var(--s-6); gap: var(--s-4); } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  letter-spacing: -0.025em;
  white-space: nowrap;
  margin: 0 auto;
}
.brand__name {
  font-family: var(--f);
  font-weight: 800;
  font-size: var(--t-brand);
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}
.brand__dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--s-5);
    margin-left: auto;
    align-self: stretch;
  }
  .header__nav > a,
  .header__more-trigger {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    padding: 6px 0;
    border-bottom: 3px solid transparent;
    transition: border-color 0.15s, color 0.15s;
    background: transparent;
    cursor: pointer;
    font-family: var(--f);
  }
  .header__nav > a:hover,
  .header__more.is-open .header__more-trigger,
  .header__more:focus-within .header__more-trigger { border-bottom-color: var(--teal); }
  .header__nav > a.is-active { border-bottom-color: var(--ink); }
  .brand { margin: 0; }

  .header__more {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
  }
  .header__more-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
  }
  .header__more-trigger::after {
    content: "";
    display: inline-block;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    margin-left: 4px;
    transform: translateY(1px);
    transition: transform 0.15s;
  }
  .header__more.is-open .header__more-trigger::after,
  .header__more:focus-within .header__more-trigger::after { transform: translateY(1px) rotate(180deg); }

  .header__more-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 280px;
    background: var(--paper);
    border: var(--b-2) solid var(--ink);
    box-shadow: var(--shadow-pop);
    display: none;
    flex-direction: column;
    z-index: 60;
  }
  .header__more-menu::before {
    content: "";
    position: absolute;
    top: -10px; left: 0; right: 0;
    height: 10px;
  }
  .header__more.is-open .header__more-menu,
  .header__more:focus-within .header__more-menu { display: flex; }
  .header__more-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    border-bottom: var(--b-1) solid var(--rule-soft);
    transition: background 0.15s, color 0.15s;
    letter-spacing: -0.01em;
  }
  .header__more-menu a:last-child { border-bottom: 0; }
  .header__more-menu a:hover { background: var(--ink); color: var(--paper); }
  .header__more-all {
    background: var(--paper);
    font-weight: 800 !important;
    border-top: var(--b-2) solid var(--ink) !important;
  }
}

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: var(--b-2) solid var(--ink);
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
}
@media (min-width: 1024px) { .icon-btn { width: 44px; height: 44px; } }
.icon-btn:hover { background: var(--ink); color: var(--paper); }
.icon-btn svg { width: 22px; height: 22px; stroke-width: 2.4; }

/* ============================================================
   Layout shell
   ============================================================ */

.shell {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-5) var(--s-4) var(--s-6);
}
@media (min-width: 768px) { .shell { padding: var(--s-6) var(--s-5) var(--s-7); } }
@media (min-width: 1024px) { .shell { padding: var(--s-7) var(--s-6) var(--s-7); } }

/* ============================================================
   Masthead
   ============================================================ */

.masthead {
  padding: var(--s-3) 0 var(--s-5);
  border-bottom: var(--b-2) solid var(--ink);
  margin-bottom: var(--s-6);
}
.masthead__eyebrow {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 var(--s-3);
}
.masthead__title {
  font-family: var(--f);
  font-weight: 800;
  font-size: var(--t-masthead);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.masthead__title .accent { color: var(--teal); }
.masthead__sub {
  margin: var(--s-3) 0 0;
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.5;
}

/* ============================================================
   Keep-reading divider — used on /h/{id} deep-link pages
   ============================================================ */

.keep-reading {
  margin: var(--s-7) 0 var(--s-6);
  padding-top: var(--s-5);
  border-top: var(--b-2) solid var(--ink);
}
.keep-reading__eyebrow {
  font-family: var(--f);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   Category directory — /categories page
   ============================================================ */

.cat-list {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
@media (min-width: 768px) { .cat-list { gap: var(--s-6); } }

.cat-list__card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--card);
  border: var(--b-2) solid var(--rule);
  box-shadow: var(--shadow-card);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cat-list__card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.cat-list__card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.cat-list__banner {
  position: relative;
  aspect-ratio: 4 / 1;
  overflow: hidden;
  border-bottom: var(--b-2) solid var(--rule);
}
@media (min-width: 768px)  { .cat-list__banner { aspect-ratio: 6 / 1; } }
.cat-list__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-list__chip {
  position: absolute;
  left: var(--s-3);
  bottom: var(--s-3);
  background: var(--ink);
  color: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: 6px 10px;
  font-family: var(--f);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 768px) {
  .cat-list__chip {
    left: var(--s-4);
    bottom: var(--s-4);
    padding: 8px 14px;
    font-size: 14px;
  }
}

.cat-list__body { padding: var(--s-5); }
@media (min-width: 1024px) { .cat-list__body { padding: var(--s-6); } }

.cat-list__title {
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(22px, 4.5vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.cat-list__desc {
  font-family: var(--f);
  font-weight: 500;
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.cat-list__link {
  font-family: var(--f);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.15s, border-color 0.15s;
}
.cat-list__card:hover .cat-list__link {
  color: var(--teal-deep);
  border-bottom-color: var(--teal-deep);
}

/* ============================================================
   Category hero — used on /c/{slug} pages
   ============================================================ */

.cat-hero {
  position: relative;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  border: var(--b-2) solid var(--rule);
  margin-bottom: var(--s-6);
  background: var(--paper-2);
}
.cat-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-hero__label {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  background: var(--ink);
  color: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: 10px 16px;
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(18px, 3.4vw, 28px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 768px) {
  .cat-hero__label {
    left: var(--s-5);
    bottom: var(--s-5);
    padding: 12px 20px;
  }
}

/* ============================================================
   Feed + cards
   ============================================================ */

.feed {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: var(--s-5);
}
@media (min-width: 768px) { .feed { gap: var(--s-6); } }

.card {
  position: relative;
  background: var(--card);
  border: var(--b-2) solid var(--rule);
  box-shadow: var(--shadow-card);
}
.card__layout { display: grid; grid-template-columns: 1fr; }

.card__banner {
  position: relative;
  height: 64px;
  overflow: hidden;
  border-bottom: var(--b-2) solid var(--rule);
}
.card__banner img { width: 100%; height: 100%; object-fit: cover; }
.card__banner-label {
  position: absolute;
  left: var(--s-3); bottom: var(--s-3);
  color: var(--paper);
  background: var(--ink);
  /* border removed — it was black-on-black and added nothing */
  padding: 6px 12px;
  font-family: var(--f);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 1024px) {
  .card__layout { grid-template-columns: 30% 1fr; }
  .card__banner {
    height: auto;
    min-height: 100%;
    border-bottom: 0;
    border-right: var(--b-2) solid var(--rule);
  }
  .card__banner-label {
    left: var(--s-4); bottom: var(--s-4);
    padding: 8px 14px;
    font-size: 16px;
  }
}

.card__body { padding: var(--s-4); }
@media (min-width: 768px) { .card__body { padding: var(--s-5); } }
@media (min-width: 1024px) { .card__body { padding: var(--s-6); } }

.card__headline {
  font-family: var(--f);
  font-weight: 800;
  font-size: var(--t-headline-md);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--s-2);
  text-wrap: balance;
}
.card__headline.is-short { font-size: var(--t-headline-lg); }
.card__headline.is-long  { font-size: var(--t-headline-sm); }

/* Source row: source pill + small share button */
.source-row {
  display: flex;
  align-items: stretch;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}
.source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  background: var(--paper);
  border: var(--b-1) solid var(--rule-soft);   /* softened from 2px black */
  padding: 0 10px;
  color: var(--ink);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
  letter-spacing: -0.01em;
  height: 36px;
  box-sizing: border-box;
  max-width: 100%;
}
.source:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.source-share {
  background: var(--paper);
  border: var(--b-1) solid var(--rule-soft);   /* softened from 2px black */
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
  flex-shrink: 0;
}
.source-share:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.source-share:active { transform: translateY(0); }
.source-share svg { width: 14px; height: 14px; stroke-width: 2.4; }
.source__fav {
  width: 18px; height: 18px;
  background: var(--card);
  border: var(--b-1) solid var(--rule-soft);   /* softened from 2px black */
  font-family: var(--f);
  font-weight: 800;
  font-size: 10px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.source:hover .source__fav { background: var(--paper); border-color: var(--rule-soft); }
.source__name { font-weight: 700; }
.source__arrow { font-size: 14px; font-weight: 800; margin-left: 2px; }

/* Comments */
.comments {
  display: flex; flex-direction: column;
  gap: var(--s-3);
  list-style: none; padding: 0; margin: 0;
}
.comment {
  background: var(--paper);
  border: var(--b-1) solid var(--rule-soft);   /* matches the softened in-card elements */
  padding: var(--s-4);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--s-3);
}
@media (min-width: 1024px) {
  .comment { grid-template-columns: 48px 1fr; padding: var(--s-5); gap: var(--s-4); }
}
.comment__avatar {
  width: 40px; height: 40px;
  border: var(--b-1) solid var(--rule-soft);   /* softened from 2px black */
  background: var(--card);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.03em;
  box-sizing: border-box;
  overflow: hidden;
}
@media (min-width: 1024px) { .comment__avatar { width: 48px; height: 48px; font-size: 18px; } }
img.comment__avatar, .comment__avatar--img {
  padding: 0;
  object-fit: cover;
  display: block;
  background: var(--paper);
}
.comment__head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.comment__user {
  font-family: var(--f);
  font-weight: 700;
  font-size: var(--t-user);
  color: var(--ink);
  letter-spacing: -0.015em;
}
.comment__text {
  font-family: var(--f);
  font-size: var(--t-comment);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  text-wrap: pretty;
}
.comment__likes {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: var(--b-1) solid var(--rule-soft);   /* softened from 2px black */
  padding: 0 10px;
  color: var(--ink);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  height: 36px;
  box-sizing: border-box;
  letter-spacing: -0.01em;
}
.comment__likes:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.comment__likes.is-liked {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.comment__likes svg { width: 14px; height: 14px; }
.comment__likes.is-liked svg { fill: #fff; stroke: #fff; }

/* Flying hearts */
.heart-fx {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}
.heart-fx span {
  position: absolute;
  display: inline-block;
  font-size: 26px;
  color: var(--red);
  filter: drop-shadow(0 2px 6px rgba(226,75,74,0.5));
  animation: flyup 1.3s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
  will-change: transform, opacity;
}
@keyframes flyup {
  0%   { transform: translate(0, 0) scale(0.8) rotate(var(--rot, 0deg)); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translate(var(--dx, 0px), var(--dy, -160px)) scale(1.5) rotate(var(--rot, 0deg)); opacity: 0; }
}
@keyframes pop { 0%{transform:scale(1)} 40%{transform:scale(1.3)} 100%{transform:scale(1)} }
.is-popping { animation: pop 0.32s ease; display: inline-block; }

/* ============================================================
   Article — long-form pages (About, TOS, Privacy, Contact intro)
   ============================================================ */

.article {
  /* White card on cream paper, no border */
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: var(--s-6) var(--s-5);
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 768px) { .article { padding: var(--s-8) var(--s-7); } }
@media (min-width: 1024px) { .article { padding: var(--s-9) var(--s-8); } }

.article__eyebrow {
  font-family: var(--f);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 var(--s-3);
}
.article__title {
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(30px, 6.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 var(--s-5);
  text-wrap: balance;
}
.article__title .accent { color: var(--teal); }
.article__lede {
  font-family: var(--f);
  font-size: clamp(19px, 2.6vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 var(--s-6);
  padding-bottom: var(--s-5);
  border-bottom: var(--b-2) solid var(--ink);
}
.article__body {
  font-family: var(--f);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
}
@media (min-width: 768px) { .article__body { font-size: 19px; } }
.article__body p {
  margin: 0 0 var(--s-5);
}
.article__body p:last-child { margin-bottom: 0; }
.article__body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  word-break: break-word;
}
.article__body a:hover { color: var(--teal-deep); }
.article__body h2 {
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin: var(--s-7) 0 var(--s-3);
}
.article__body h2:first-child { margin-top: 0; }
.article__body ul {
  margin: 0 0 var(--s-5);
  padding-left: 22px;
}
.article__body ul li {
  margin-bottom: var(--s-2);
  line-height: 1.55;
}
.article__body ul li:last-child { margin-bottom: 0; }
.article__body strong { font-weight: 800; }
.article__updated {
  display: inline-block;
  margin: 0 0 var(--s-6);
  font-family: var(--f);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: 6px 12px;
  line-height: 1;
}
.article__signature {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: var(--b-1) solid var(--rule-soft);
  font-family: var(--f);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ============================================================
   Forms (Contact, Submit Headline, etc.)
   ============================================================ */

.form {
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: var(--b-1) solid var(--rule-soft);
}
.field { display: block; margin-bottom: var(--s-4); }
.field__label {
  display: block;
  font-family: var(--f);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.field__hint {
  display: block;
  font-family: var(--f);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.4;
}
.field__input,
.field__textarea {
  width: 100%;
  background: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: 12px 14px;
  font-family: var(--f);
  font-size: var(--t-body);
  font-weight: 500;
  color: var(--ink);
  box-sizing: border-box;
  min-height: 48px;
  line-height: 1.4;
  border-radius: 0;
}
.field__textarea { resize: vertical; font-size: var(--t-body); }
.field__input:focus,
.field__textarea:focus { outline: none; border-color: var(--teal); }
.field__counter {
  display: block;
  text-align: right;
  margin-top: 6px;
  font-family: var(--f);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-2);
}
.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__actions {
  margin-top: var(--s-5);
  display: flex;
  justify-content: flex-end;
  gap: var(--s-3);
  flex-wrap: wrap;
}

/* Alert banner — shown on form pages when the URL carries ?e=<error> */
.alert {
  background: var(--paper);
  color: var(--ink);
  border: var(--b-2) solid var(--red);
  border-left-width: 6px;
  padding: var(--s-4);
  margin: var(--s-5) 0;
  font-family: var(--f);
  font-weight: 600;
  font-size: var(--t-body);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* Submit page — toggle switch + two mutually-exclusive panels */
.submit-switch {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-5);
}
@media (min-width: 520px) {
  .submit-switch { flex-direction: row; }
}
.submit-switch__option {
  flex: 1;
  min-width: 0;
  background: var(--paper);
  border: var(--b-2) solid var(--ink);
  color: var(--ink);
  font-family: var(--f);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 16px;
  min-height: 52px;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.15s, color 0.15s, transform 0.12s, box-shadow 0.12s;
  box-sizing: border-box;
}
.submit-switch__option:hover { background: var(--ink); color: var(--paper); }
.submit-switch__option.is-active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
}
.submit-switch__option.is-active:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }

[hidden] { display: none !important; }

.submit-block {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: var(--b-1) solid var(--rule-soft);
}
.submit-block__title {
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
  color: var(--ink);
  line-height: 1.15;
}
.submit-block__desc {
  font-family: var(--f);
  font-weight: 500;
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 var(--s-5);
}
.submit-block .form {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* ============================================================
   Follow Us strip
   ============================================================ */

.follow {
  background: var(--paper);
  border-top: var(--b-2) solid var(--rule);
  padding: var(--s-6) var(--s-4);
}
@media (min-width: 768px) { .follow { padding: var(--s-7) var(--s-6); } }
.follow__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
@media (min-width: 768px) {
  .follow__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--s-6);
    flex-wrap: wrap;
  }
}
.follow__heading {
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(20px, 4vw, 24px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}
.follow__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.follow__list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: var(--b-2) solid var(--ink);
  padding: 0 14px;
  height: 44px;
  box-sizing: border-box;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--f);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}
.follow__list a:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.follow__list svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   Footer
   ============================================================ */

.foot {
  border-top: var(--b-2) solid var(--rule);
  padding: var(--s-7) var(--s-4);
  background: var(--paper);
}
@media (min-width: 768px) { .foot { padding: var(--s-9) var(--s-6); } }
.foot__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) { .foot__inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot__brand .brand__name { font-size: clamp(22px, 5vw, 28px); }
.foot__tag {
  font-family: var(--f);
  font-weight: 600;
  font-size: var(--t-body);
  color: var(--ink-2);
  margin-top: var(--s-3);
  max-width: 360px;
  line-height: 1.45;
}
.foot h4 {
  font-family: var(--f);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--s-3);
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { padding: 6px 0; }
.foot a {
  color: var(--ink); text-decoration: none;
  font-size: var(--t-body);
  font-weight: 600;
}
.foot a:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.foot__bottom {
  max-width: var(--content-w);
  margin: var(--s-6) auto 0;
  padding-top: var(--s-4);
  border-top: var(--b-1) solid var(--rule-soft);
  font-family: var(--f);
  font-size: var(--t-meta);
  font-weight: 600;
  color: var(--ink-2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   Search overlay (click backdrop to close)
   ============================================================ */

.overlay-bg {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.55);
  z-index: 100;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: var(--s-4);
}
@media (min-width: 768px) { .overlay-bg { padding: var(--s-7); } }
.overlay-bg.is-open { display: flex; }
.overlay {
  background: var(--paper);
  border: var(--b-2) solid var(--ink);
  width: 100%;
  max-width: 720px;
  padding: var(--s-5);
  box-shadow: var(--shadow-pop);
  animation: slideup 0.18s ease;
}
@media (min-width: 768px) { .overlay { padding: var(--s-6); } }
.overlay__head {
  display: flex; align-items: center; gap: var(--s-3);
  border-bottom: var(--b-2) solid var(--ink);
  padding-bottom: var(--s-3);
}
.overlay__input {
  flex: 1;
  border: 0; outline: 0;
  background: transparent;
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(20px, 4.6vw, 28px);
  letter-spacing: -0.025em;
  color: var(--ink);
  min-width: 0;
}
.overlay__input::placeholder { color: var(--ink-2); font-weight: 700; letter-spacing: -0.02em; }
.overlay__close {
  background: transparent; border: var(--b-2) solid var(--ink);
  padding: 9px 14px;
  font-family: var(--f);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  min-height: 42px;
  flex-shrink: 0;
}
.overlay__close:hover { background: var(--ink); color: var(--paper); }
.overlay__submit {
  background: var(--ink);
  color: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: 0;
  min-width: 48px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.overlay__submit:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-1px); }
.overlay__submit:active { transform: translateY(0); }
.overlay__submit svg { width: 18px; height: 18px; }
.overlay__hints { margin-top: var(--s-4); }
.overlay__hint-text { font-weight: 600; color: var(--ink-2); font-size: var(--t-body); margin: 0 0 var(--s-3); }
.overlay__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.overlay__chips button {
  background: transparent;
  border: var(--b-2) solid var(--ink);
  font-family: var(--f);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 8px 12px;
  color: var(--ink);
  min-height: 40px;
}
.overlay__chips button:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   Burger menu — slides from LEFT
   ============================================================ */

.menu-bg {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.55);
  z-index: 101;
  display: none;
  justify-content: flex-start;
}
.menu-bg.is-open { display: flex; }
.menu {
  background: var(--paper);
  width: 100%;
  max-width: 420px;
  border-right: var(--b-2) solid var(--ink);
  display: flex; flex-direction: column;
  padding: var(--s-5) var(--s-4) var(--s-9);
  overflow-y: auto;
  animation: slideinL 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 768px) { .menu { padding: var(--s-6); } }
@keyframes slideinL { from { transform: translateX(-20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.menu__head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: var(--b-2) solid var(--ink);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-5);
}
.menu__title {
  font-family: var(--f);
  font-weight: 800;
  font-size: clamp(22px, 5.5vw, 28px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.menu__section { margin-bottom: var(--s-6); }
.menu__section h4 {
  font-family: var(--f);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 var(--s-2);
}
.menu__section ul { list-style: none; padding: 0; margin: 0; }
.menu__section a {
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none;
  padding: var(--s-3) 0;
  border-bottom: var(--b-1) solid var(--rule-soft);
  color: var(--ink);
  font-family: var(--f);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  min-height: 44px;
}
.menu__section a:hover { color: var(--teal-deep); }
.menu__section a span { font-weight: 700; font-size: 17px; color: var(--ink); }

/* ============================================================
   Modal
   ============================================================ */

.modal-bg {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.55);
  display: none;
  z-index: 200;
  align-items: flex-end; justify-content: center;
  padding: 0;
}
@media (min-width: 768px) { .modal-bg { align-items: center; padding: var(--s-5); } }
.modal-bg.is-open { display: flex; }
.modal {
  background: var(--card);
  border: var(--b-2) solid var(--ink);
  width: 100%;
  max-width: 560px;
  padding: var(--s-6);
  box-shadow: var(--shadow-pop);
  animation: slideup 0.2s ease;
}
@keyframes slideup { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 var(--s-2); }
.modal__title { font-family: var(--f); font-weight: 800; font-size: clamp(22px, 5vw, 28px); letter-spacing: -0.025em; margin: 0 0 var(--s-2); line-height: 1.2; }
.modal__title .accent { color: var(--teal); }
.modal__sub { font-family: var(--f); font-weight: 600; color: var(--ink-2); margin: 0 0 var(--s-5); font-size: var(--t-body); }
.modal label { display: block; font-family: var(--f); font-weight: 800; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.modal textarea, .modal input {
  width: 100%;
  background: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: var(--s-3);
  font-family: var(--f);
  font-size: var(--t-body);
  font-weight: 500;
  color: var(--ink);
  resize: vertical;
  border-radius: 0;
  min-height: 44px;
}
.modal textarea:focus, .modal input:focus { border-color: var(--teal); outline: none; }
.modal__counter { font-family: var(--f); font-weight: 700; font-size: 13px; color: var(--ink-2); text-align: right; margin-top: 6px; }
.modal__actions { margin-top: var(--s-5); display: flex; gap: var(--s-3); justify-content: flex-end; }
.btn {
  background: var(--ink); color: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: 12px 18px;
  font-family: var(--f); font-weight: 800;
  font-size: var(--t-body); letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
}
.btn:hover { background: var(--teal); border-color: var(--teal); color: var(--card); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--paper-2); border-color: var(--ink); }

.toast {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: var(--s-7);
  background: var(--ink); color: var(--paper);
  padding: 12px 18px;
  font-family: var(--f); font-weight: 700; font-size: var(--t-body); letter-spacing: -0.01em;
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  border: var(--b-2) solid var(--ink);
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(-6px); }

/* ============================================================
   Pager
   ============================================================ */

.pager {
  margin-top: var(--s-7);
  border-top: var(--b-2) solid var(--ink);
  padding-top: var(--s-4);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s-4);
}
.pager__back, .pager__next {
  color: var(--ink); text-decoration: none;
  background: var(--paper);
  border: var(--b-2) solid var(--ink);
  padding: 12px 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f);
  font-weight: 800;
  font-size: var(--t-body);
  letter-spacing: -0.01em;
  min-height: 44px;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}
.pager__back:hover, .pager__next:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.pager__next { margin-left: auto; }

/* ============================================================
   Cartoons  (commentgen 'cartoon' format videos)

   Stacked  (0/1 comment + cartoon)
     Full body-width 16:9 below comments. Desktop click → lightbox.
   Paired   (2 comments + cartoon)
     Cartoon sits in a paper-bg box next to comment 2; box stretches
     to comment-2's height; image is centered + object-fit: contain.
     Desktop click → in-place swap (comments collapse via the
     grid-template-rows: 0fr↔1fr trick, full-width cartoon appears
     in a stage with X + enlarge controls).
   Mobile (≤1023px)
     Paired falls back to a vertical stack. No enlarge affordance,
     no chip, no click — pinch-to-zoom handles enlargement.
   ============================================================ */
.cartoon {
  -webkit-appearance: none; appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  color: inherit;
}
.cartoon:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.cartoon__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: var(--b-1) solid var(--rule-soft);
  overflow: hidden;
  position: relative;
}

/* The chip is positioned to .cartoon__media, not the frame. That way in
   paired mode (where object-fit:contain letterboxes the image inside a
   taller box) the chip stays glued to the image's bottom-right instead
   of floating off into the letterbox space. */
.cartoon__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.cartoon__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

/* Expand-hint chip — desktop-only, on stacked + paired only. */
.cartoon__hint { display: none; }

@media (min-width: 1024px) {
  .cartoon--stacked .cartoon__hint,
  .cartoon--paired  .cartoon__hint {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: var(--b-1) solid var(--ink);
    color: var(--ink);
    pointer-events: none;
    opacity: 0.94;
    transition: opacity 0.15s, transform 0.18s;
  }
  .cartoon--stacked .cartoon__hint svg,
  .cartoon--paired  .cartoon__hint svg { width: 16px; height: 16px; }
}

@media (hover: hover) and (min-width: 1024px) {
  .cartoon:hover .cartoon__media img { transform: scale(1.02); }
  .cartoon--stacked:hover .cartoon__hint,
  .cartoon--paired:hover  .cartoon__hint { opacity: 1; transform: translateY(-1px); }
}

/* Mobile: pinch-to-zoom is enough — no click affordance. */
@media (max-width: 1023.98px) {
  .cartoon { cursor: default; }
}

/* --- Stacked: full body width --- */
.cartoon--stacked { margin-top: var(--s-3); }

/* --- Paired layout (only takes effect on desktop) --- */
.comments--paired {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.comments--paired .cartoon-cell {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
@media (min-width: 1024px) {
  .comments--paired {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--s-4);
    row-gap: var(--s-3);
    /* default align-items: stretch — pairs comment-2 + cartoon-cell heights */
  }
  .comments--paired .comment--full   { grid-column: 1 / -1; }
  .comments--paired .comment--narrow { grid-column: 1; grid-row: 2; }
  .comments--paired .cartoon-cell    {
    grid-column: 2; grid-row: 2;
    /* The cartoon-cell IS the box: paper bg + rule-soft border, padded.
       Image inside fits with object-fit: contain so 16:9 is preserved
       inside whatever box height comment-2 dictates. */
    background: var(--paper);
    border: var(--b-1) solid var(--rule-soft);
    padding: var(--s-4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
  }
  .comments--paired .cartoon-cell .cartoon { height: 100%; display: flex; }
  .comments--paired .cartoon-cell .cartoon__frame {
    aspect-ratio: auto;
    border: 0;
    background: transparent;
    overflow: visible;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* In paired mode the media wrapper shrinks to the image's actual rendered
     bounds (not the cell). Constraint chain:
       - media is inline-block, capped at 100% of frame
       - img is capped at 100% of media + width/height auto, so it sizes
         naturally to fit while preserving its 16:9 aspect
     The chip is absolute-positioned to media, so it lands exactly on the
     image's bottom-right corner regardless of which side letterboxes. */
  .comments--paired .cartoon-cell .cartoon__media {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    line-height: 0;
  }
  .comments--paired .cartoon-cell .cartoon__media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
  }
}

/* --- Smooth collapse/expand: grid-template-rows 0fr/1fr trick --- */
.comments-collapse {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 0.32s ease, opacity 0.20s ease;
}
.comments-collapse > * {
  overflow: hidden;
  min-height: 0;
}
.cartoon-stage {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin: 0;
  transition: grid-template-rows 0.32s ease, opacity 0.20s ease, margin 0.32s ease;
}
.cartoon-stage > * {
  overflow: hidden;
  min-height: 0;
}
.cartoon-stage__inner { position: relative; }
.cartoon-stage .cartoon {
  width: 100%;
  cursor: default;
}

/* Stage controls (X + enlarge) sit top-right over the cartoon */
.cartoon-stage__controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.cartoon-stage__btn {
  -webkit-appearance: none; appearance: none;
  width: 40px;
  height: 40px;
  background: var(--card);
  border: var(--b-1) solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}
.cartoon-stage__btn:hover  { background: var(--ink); color: var(--paper); }
.cartoon-stage__btn svg    { width: 18px; height: 18px; }

/* Expanded state — toggled by .card.is-cartoon-expanded */
.card.is-cartoon-expanded .comments-collapse {
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
}
.card.is-cartoon-expanded .cartoon-stage {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: var(--s-3);
}

/* Lightbox — used by stacked variant click + paired-expanded enlarge button */
.cartoon-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,17,17,0.92);
  padding: var(--s-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.cartoon-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cartoon-lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  transform: scale(0.97);
  transition: transform 0.24s ease;
  border: var(--b-1) solid var(--ink);
  background: var(--paper);
}
.cartoon-lightbox.is-open .cartoon-lightbox__img { transform: scale(1); }
.cartoon-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--card);
  border: var(--b-1) solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}
.cartoon-lightbox__close:hover { background: var(--ink); color: var(--paper); }
.cartoon-lightbox__close svg { width: 20px; height: 20px; }
body.is-lightbox-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .cartoon__media img,
  .comments-collapse,
  .cartoon-stage,
  .cartoon-lightbox,
  .cartoon-lightbox__img { transition-duration: 0.01s; }
}
