:root {
  color-scheme: dark;
  --feed-header-height: calc(56px + env(safe-area-inset-top, 0px));
  --feed-action-size: 64px;
  --feed-page-gap: 28px;
  --feed-metal-1: #d8c3a0;
  --feed-metal-2: #9a6c43;
  --feed-metal-3: #5a3a25;
  --feed-ink: #fff8ea;
  --feed-muted-ink: rgba(255, 248, 234, 0.72);
  --feed-panel-bg: rgba(32, 22, 16, 0.78);
  --feed-panel-border: rgba(255, 232, 190, 0.18);
  --feed-ai-panel-bg: rgba(32, 22, 16, 0.94);
  --feed-ai-chip-bg: rgba(255, 248, 234, 0.92);
  --feed-ai-chip-hover-bg: rgba(255, 248, 234, 0.98);
  --feed-ai-chip-border: rgba(255, 248, 234, 0.72);
  --feed-ai-chip-color: #201914;
  --feed-ai-help-color: rgba(255, 248, 234, 0.84);
  --feed-chip-bg: rgba(255, 232, 190, 0.13);
  --feed-control-bg: rgba(36, 24, 17, 0.34);
  --feed-control-border: rgba(255, 232, 190, 0.2);
  --feed-shadow: rgba(0, 0, 0, 0.3);
  --feed-toast-bg: rgba(17, 17, 17, 0.88);
  --feed-accent-rgb: 133, 91, 52;
  --feed-page-bg:
    radial-gradient(circle at 16% 18%, rgba(var(--feed-accent-rgb), 0.24), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(87, 124, 74, 0.18), transparent 26%),
    linear-gradient(105deg, rgba(255, 244, 213, 0.08) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #7a5434 0%, #4d321f 18%, #201712 52%, #120d0a 100%);
  --feed-header-bg:
    linear-gradient(120deg, rgba(255, 232, 190, 0.26), rgba(95, 61, 36, 0.14)),
    linear-gradient(180deg, rgba(128, 83, 49, 0.82), rgba(44, 29, 20, 0.62));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  background: #0c0d0f;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  overscroll-behavior: none;
  overflow: hidden;
}

body {
  color: var(--feed-ink);
  background: var(--feed-page-bg);
  transition: background 360ms ease;
}

body.theme-light {
  color-scheme: light;
  --feed-ink: #201914;
  --feed-muted-ink: rgba(32, 25, 20, 0.66);
  --feed-panel-bg: rgba(255, 252, 244, 0.84);
  --feed-panel-border: rgba(74, 53, 36, 0.16);
  --feed-ai-panel-bg: rgba(255, 252, 244, 0.96);
  --feed-ai-chip-bg: rgba(42, 31, 24, 0.1);
  --feed-ai-chip-hover-bg: rgba(42, 31, 24, 0.16);
  --feed-ai-chip-border: rgba(42, 31, 24, 0.24);
  --feed-ai-chip-color: #201914;
  --feed-ai-help-color: rgba(32, 25, 20, 0.72);
  --feed-chip-bg: rgba(86, 61, 38, 0.1);
  --feed-control-bg: rgba(255, 252, 244, 0.58);
  --feed-control-border: rgba(74, 53, 36, 0.16);
  --feed-toast-bg: rgba(42, 31, 24, 0.9);
  --feed-accent-rgb: 174, 137, 91;
  --feed-page-bg:
    radial-gradient(circle at 20% 12%, rgba(174, 137, 91, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(89, 126, 93, 0.14), transparent 26%),
    linear-gradient(180deg, #f5ead6 0%, #ded0b7 42%, #bca98c 100%);
  --feed-header-bg:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(196, 169, 128, 0.28)),
    rgba(247, 239, 224, 0.82);
}

body.theme-amber {
  color-scheme: light;
  --feed-ink: #221609;
  --feed-muted-ink: rgba(34, 22, 9, 0.68);
  --feed-panel-bg: rgba(248, 231, 185, 0.84);
  --feed-panel-border: rgba(91, 57, 20, 0.16);
  --feed-ai-panel-bg: rgba(248, 231, 185, 0.96);
  --feed-ai-chip-bg: rgba(61, 39, 16, 0.12);
  --feed-ai-chip-hover-bg: rgba(61, 39, 16, 0.18);
  --feed-ai-chip-border: rgba(61, 39, 16, 0.26);
  --feed-ai-chip-color: #221609;
  --feed-ai-help-color: rgba(34, 22, 9, 0.72);
  --feed-chip-bg: rgba(104, 67, 24, 0.12);
  --feed-control-bg: rgba(255, 240, 199, 0.58);
  --feed-control-border: rgba(91, 57, 20, 0.18);
  --feed-toast-bg: rgba(61, 39, 16, 0.92);
  --feed-accent-rgb: 185, 128, 49;
  --feed-page-bg:
    radial-gradient(circle at 18% 18%, rgba(185, 128, 49, 0.22), transparent 32%),
    linear-gradient(115deg, rgba(104, 67, 24, 0.06) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, #f2d99a 0%, #dfbc69 46%, #a87830 100%);
  --feed-header-bg:
    linear-gradient(120deg, rgba(255, 247, 220, 0.44), rgba(158, 101, 34, 0.2)),
    rgba(218, 165, 75, 0.82);
}

body.theme-dark {
  color-scheme: dark;
  --feed-ink: #f7f7f2;
  --feed-muted-ink: rgba(247, 245, 240, 0.68);
  --feed-panel-bg: rgba(10, 11, 14, 0.76);
  --feed-panel-border: rgba(255, 255, 255, 0.12);
  --feed-ai-panel-bg: rgba(10, 11, 14, 0.92);
  --feed-ai-chip-bg: rgba(247, 247, 242, 0.9);
  --feed-ai-chip-hover-bg: rgba(247, 247, 242, 0.98);
  --feed-ai-chip-border: rgba(247, 247, 242, 0.6);
  --feed-ai-chip-color: #15171a;
  --feed-ai-help-color: rgba(247, 245, 240, 0.78);
  --feed-chip-bg: rgba(203, 208, 213, 0.18);
  --feed-control-bg: rgba(19, 21, 24, 0.28);
  --feed-control-border: rgba(255, 255, 255, 0.18);
  --feed-toast-bg: rgba(17, 17, 17, 0.88);
  --feed-accent-rgb: 143, 149, 157;
  --feed-page-bg:
    radial-gradient(circle at 18% 18%, rgba(var(--feed-accent-rgb), 0.26), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(var(--feed-accent-rgb), 0.16), transparent 24%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #9098a0 0%, #3f464d 15%, #101215 42%, #090a0c 100%);
  --feed-header-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(195, 201, 208, 0.78), rgba(88, 94, 101, 0.5));
}

body.feed-detail-open {
  overflow: hidden;
}

body.feed-kindle-loading,
body.feed-kindle-loading * {
  cursor: progress !important;
}

.feed-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--feed-header-height);
  padding: calc(env(safe-area-inset-top, 0px) + 8px) 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--feed-header-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--feed-panel-border);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.feed-header__left {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.feed-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px,
      transparent 10px
    );
  mix-blend-mode: soft-light;
  opacity: 0.55;
}

.feed-header__menu,
.feed-header__brand,
.feed-header__profile,
.feed-header__ai {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 999px;
  color: var(--feed-ink);
  text-decoration: none;
  background: var(--feed-control-bg);
  border: 1px solid var(--feed-control-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.feed-header__menu,
.feed-header__brand,
.feed-header__profile,
.feed-header__ai {
  width: 40px;
}

.feed-header__menu {
  border: 0;
  cursor: pointer;
}

.feed-header__menu svg {
  width: 18px;
  height: 18px;
}

.feed-header__brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

@media (max-width: 700px) {
  .feed-header__brand img {
    width: 32px;
    height: 32px;
    filter:
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
      saturate(1.05);
  }
}

.feed-header__profile svg {
  width: 18px;
  height: 18px;
}

.feed-header__profile {
  z-index: 2;
}

.feed-header__center {
  position: absolute;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.feed-header__ai {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.feed-header__ai:hover,
.feed-header__ai.is-open {
  background: rgba(19, 21, 24, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.feed-header__ai:active {
  transform: translateY(1px) scale(0.98);
}

.feed-header__ai svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.feed-header__ai img {
  flex: 0 0 auto;
  width: 29px;
  height: auto;
  display: block;
  filter: invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.feed-header__ai[aria-busy="true"] {
  opacity: 0.68;
  pointer-events: none;
}

.feed-ai-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  z-index: 3;
  width: min(360px, calc(100vw - 28px));
  padding: 10px 12px 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    var(--feed-ai-panel-bg);
  border: 1px solid var(--feed-panel-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.feed-ai-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.feed-ai-panel__field {
  position: relative;
}

.feed-ai-panel__input {
  display: block;
  width: 100%;
  height: 42px;
  padding: 0 48px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #15171a;
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.feed-ai-panel__submit {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: rgba(20, 22, 26, 0.88);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.feed-ai-panel__submit:hover,
.feed-ai-panel__submit:focus-visible {
  background: rgba(42, 46, 54, 0.94);
  outline: none;
}

.feed-ai-panel__submit:active {
  transform: translateY(-50%) scale(0.96);
}

.feed-ai-panel__submit svg {
  width: 18px;
  height: 18px;
}

.feed-ai-panel__input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.feed-ai-panel__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.feed-ai-panel__suggestions button {
  max-width: 100%;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--feed-ai-chip-border);
  border-radius: 999px;
  background: var(--feed-ai-chip-bg);
  color: var(--feed-ai-chip-color);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.18;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.feed-ai-panel__suggestions button:hover,
.feed-ai-panel__suggestions button:focus-visible {
  border-color: var(--feed-ai-chip-color);
  background: var(--feed-ai-chip-hover-bg);
  outline: none;
}

.feed-ai-panel__suggestions button:active {
  transform: translateY(1px);
}

.feed-ai-panel__help {
  margin: 7px 2px 0;
  color: var(--feed-ai-help-color);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-confetti-layer {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100dvh;
  z-index: 90;
  pointer-events: none;
  overflow: hidden;
}

.feed-confetti-piece {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--confetti-size, 10px);
  height: calc(var(--confetti-size, 10px) * 0.58);
  border-radius: 999px;
  background: var(--confetti-color, #ffcf4a);
  opacity: 0;
  transform:
    translate3d(var(--confetti-x, 0px), var(--confetti-y, 0px), 0)
    rotate(0deg);
  animation: feed-confetti-burst 1320ms cubic-bezier(0.16, 0.84, 0.32, 1) forwards;
  will-change: transform, opacity;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
}

.feed-confetti-piece.is-circle {
  border-radius: 999px;
  height: var(--confetti-size, 10px);
}

.feed-confetti-piece.is-streamer {
  width: calc(var(--confetti-size, 10px) * 0.44);
  height: calc(var(--confetti-size, 10px) * 2.2);
  border-radius: 999px;
}

.feed-confetti-piece.is-star {
  width: calc(var(--confetti-size, 10px) * 0.9);
  height: calc(var(--confetti-size, 10px) * 0.9);
  clip-path: polygon(50% 0%, 61% 35%, 100% 35%, 68% 57%, 79% 100%, 50% 73%, 21% 100%, 32% 57%, 0% 35%, 39% 35%);
}

.feed-book-flyer {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--book-width, 52px);
  aspect-ratio: 0.68;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform:
    translate3d(var(--book-x, 0px), var(--book-y, 0px), 0)
    rotate(0deg)
    scale(0.72);
  animation: feed-book-fly 1480ms cubic-bezier(0.16, 0.88, 0.32, 1) forwards;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  will-change: transform, opacity;
}

.feed-book-flyer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(220deg, rgba(255, 255, 255, 0.18), transparent 40%);
  pointer-events: none;
}

.feed-book-flyer__cover,
.feed-book-flyer__fallback {
  position: absolute;
  inset: 0;
}

.feed-book-flyer__cover {
  background-size: cover;
  background-position: center;
}

.feed-book-flyer__fallback {
  display: flex;
  align-items: flex-end;
  padding: 7px 6px;
  background:
    linear-gradient(160deg, rgba(255, 212, 74, 0.9), rgba(255, 95, 126, 0.88) 52%, rgba(32, 35, 39, 0.98));
  color: #fffdf8;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

@keyframes feed-confetti-burst {
  0% {
    opacity: 1;
    transform:
      translate3d(var(--confetti-x, 0px), var(--confetti-y, 0px), 0)
      rotate(0deg)
      scale(0.9);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate3d(
        calc(var(--confetti-x, 0px) + var(--confetti-dx, 0px)),
        calc(var(--confetti-y, 0px) + var(--confetti-dy, 0px)),
        0
      )
      rotate(var(--confetti-rotate, 360deg))
      scale(0.72);
  }
}

@keyframes feed-book-fly {
  0% {
    opacity: 0;
    transform:
      translate3d(var(--book-x, 0px), var(--book-y, 0px), 0)
      rotate(0deg)
      scale(0.72);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate3d(
        calc(var(--book-x, 0px) + var(--book-dx, 0px)),
        calc(var(--book-y, 0px) + var(--book-dy, 0px)),
        0
      )
      rotate(var(--book-rotate, 360deg))
      scale(1.08);
  }
}

.feed-shell,
.feed-viewport {
  min-height: 100dvh;
}

.feed-shell {
  position: relative;
  overflow: hidden;
}

.feed-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
}

.feed-mobile-drawer__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 7, 10, 0.48);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feed-mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(84vw, 320px);
  padding:
    calc(var(--feed-header-height) + 8px)
    18px
    calc(18px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    var(--feed-panel-bg);
  backdrop-filter: blur(18px) saturate(1.06);
  border-right: 1px solid var(--feed-panel-border);
  box-shadow: 18px 0 42px rgba(0, 0, 0, 0.24);
  transform: translateX(-104%);
  transition: transform 240ms ease;
}

.feed-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feed-mobile-drawer__header .feed-panel__eyebrow {
  margin-bottom: 0;
}

.feed-mobile-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--feed-chip-bg);
  color: var(--feed-ink);
}

.feed-mobile-drawer__close svg {
  width: 18px;
  height: 18px;
}

.feed-mobile-drawer__list {
  min-height: 0;
  flex: 1 1 auto;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 0.15rem;
  scrollbar-width: none;
}

.feed-mobile-drawer__list::-webkit-scrollbar {
  display: none;
}

body.feed-menu-open {
  overflow: hidden;
}

body.feed-menu-open .feed-mobile-drawer {
  pointer-events: auto;
}

body.feed-menu-open .feed-mobile-drawer__scrim {
  opacity: 1;
}

body.feed-menu-open .feed-mobile-drawer__panel {
  transform: translateX(0);
}

.feed-collection-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--feed-muted-ink);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.feed-collection-link.is-active {
  color: var(--feed-ink);
}

.feed-collection-link__name {
  min-width: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.feed-collection-link__count {
  font-size: 0.74rem;
  opacity: 0.42;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feed-mobile-drawer__filters,
.feed-collections__filters {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--feed-panel-border);
}

.feed-language-filters {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.feed-language-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.2rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--feed-muted-ink);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.feed-language-filter:hover {
  color: var(--feed-ink);
}

.feed-language-filter.is-active {
  color: var(--feed-ink);
}

.feed-language-filter__label {
  min-width: 0;
  font-size: 0.84rem;
  line-height: 1.25;
}

.feed-language-filter__count {
  font-size: 0.66rem;
  opacity: 0.42;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feed-center {
  min-width: 0;
}

.feed-collections,
.feed-desktop-detail {
  display: none;
}

.feed-panel__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.62;
}

.feed-welcome {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 18px;
  display: flex;
  align-items: flex-start;
}

.feed-welcome__box {
  position: relative;
  width: 100%;
  padding: 1.1rem;
  border: 1px solid var(--feed-panel-border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    var(--feed-panel-bg);
  color: var(--feed-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.feed-welcome__box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 58px;
  height: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    var(--feed-panel-bg);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.2));
  transform: translateX(-50%);
}

.feed-welcome__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 6vw, 2.3rem);
  line-height: 1;
}

.feed-welcome__content {
  color: var(--feed-muted-ink);
  font-size: 0.98rem;
  line-height: 1.5;
}

.feed-welcome__content > :first-child {
  margin-top: 0;
}

.feed-welcome__content > :last-child {
  margin-bottom: 0;
}

.feed-welcome__content a {
  color: inherit;
  font-weight: 700;
}

.feed-viewport {
  position: relative;
  margin-top: var(--feed-header-height);
  height: calc(100dvh - var(--feed-header-height));
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.feed-viewport::-webkit-scrollbar {
  display: none;
}

.feed-track {
  position: relative;
  min-height: calc(100dvh - var(--feed-header-height));
}

.feed-card {
  position: relative;
  height: calc(100dvh - var(--feed-header-height));
  min-height: calc(100dvh - var(--feed-header-height));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.feed-card__media {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(var(--feed-accent-rgb)) 0%, #1c1f23 100%);
  outline: none;
  cursor: pointer;
  touch-action: pan-y;
}

.feed-card__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.15), rgba(7, 8, 10, 0.7)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 35%);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.feed-card__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.04), rgba(7, 9, 12, 0.66) 68%, rgba(7, 9, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.12), transparent 32%, transparent 68%, rgba(7, 9, 12, 0.16));
}

.feed-card__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 22%, transparent 56%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.feed-card__ai-recommendation {
  position: absolute;
  left: 16px;
  right: calc(var(--feed-action-size) + 28px);
  top: calc(18px + env(safe-area-inset-top, 0px));
  z-index: 7;
  padding: 13px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(245, 247, 249, 0.24), rgba(112, 119, 128, 0.18)),
    rgba(10, 12, 15, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fffdf8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(1.18);
  pointer-events: none;
}

.feed-card__ai-recommendation[hidden] {
  display: none;
}

.feed-card.is-detail-open .feed-card__ai-recommendation {
  display: none;
}

.feed-card__ai-recommendation p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.34;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.feed-card__copy {
  position: absolute;
  left: 16px;
  right: calc(var(--feed-action-size) + 28px);
  bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  z-index: 3;
  color: #fffaf0;
}

.feed-card__collection {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--feed-chip-bg);
  border: 1px solid var(--feed-panel-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-card__description {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.8rem, 7vw, 3.5rem);
  line-height: 0.96;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feed-card__actions {
  position: absolute;
  right: 12px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: var(--feed-action-size);
  min-height: var(--feed-action-size);
  padding: 9px 6px;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
    var(--feed-control-bg);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.feed-action svg {
  width: 25px;
  height: 25px;
}

.feed-action span {
  font-size: 0.64rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.feed-action--detail {
  display: none;
}

.feed-action.is-saved {
  color: #ff879d;
}

.feed-detail {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding:
    calc(var(--feed-header-height) + 14px)
    18px
    calc(18px + env(safe-area-inset-bottom, 0px))
    18px;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, 0.28) 0%, rgba(6, 8, 11, 0.72) 26%, rgba(6, 8, 11, 0.88) 100%),
    linear-gradient(90deg, rgba(6, 8, 11, 0.18), rgba(6, 8, 11, 0.06));
  backdrop-filter: blur(12px) saturate(1.05);
  transform: translateX(102%);
  transition: transform 260ms ease;
}

.feed-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 1;
}

.feed-card.is-detail-open .feed-detail {
  transform: translateX(0);
}

.feed-detail__header,
.feed-detail__body {
  position: relative;
  z-index: 1;
}

.feed-detail__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px var(--feed-action-size);
  gap: 10px;
  align-items: start;
}

.feed-detail__meta {
  min-width: 0;
  color: rgba(244, 242, 236, 0.96);
}

.feed-detail__eyebrow,
.feed-detail__author {
  margin: 0;
  opacity: 0.72;
}

.feed-detail__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feed-detail__title {
  margin: 4px 0 6px;
  font-size: clamp(1.4rem, 5.4vw, 2.2rem);
  line-height: 1;
}

.feed-detail__author {
  font-size: 0.92rem;
}

.feed-detail__reading {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.68;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.feed-detail__hmc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-height: 56px;
  margin-top: 2.45rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
}

.feed-detail__hmc-link[hidden] {
  display: none;
}

.feed-detail__hmc-icon {
  display: block;
  width: 100%;
  height: auto;
}

.feed-detail__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 245, 240, 0.96);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  justify-self: center;
  align-self: start;
}

.feed-detail__close svg {
  width: 20px;
  height: 20px;
}

.feed-detail__body {
  min-height: 0;
  display: block;
  overflow: hidden;
}

.feed-detail__content {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.feed-detail__viewport {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.feed-detail__viewport::-webkit-scrollbar {
  display: none;
}

.feed-detail__flow {
  display: block;
  min-height: 100%;
  padding-bottom: 0.25rem;
  color: rgba(245, 242, 236, 0.94);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1.04rem, 4vw, 1.18rem);
  line-height: 1.66;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

.feed-detail__flow > :first-child {
  margin-top: 0;
}

.feed-detail__flow h1,
.feed-detail__flow h2,
.feed-detail__flow h3 {
  break-after: avoid;
  color: rgba(255, 251, 245, 0.98);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.08;
}

.feed-detail__flow h1,
.feed-detail__flow h2 {
  margin: 0 0 0.85rem;
  font-size: 1.5em;
}

.feed-detail__flow h3 {
  margin: 1.25rem 0 0.7rem;
  font-size: 1.06em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.82;
}

.feed-detail__flow p,
.feed-detail__flow ul,
.feed-detail__flow ol,
.feed-detail__flow blockquote {
  margin: 0 0 0.95rem;
}

.feed-detail__flow ul,
.feed-detail__flow ol {
  padding-left: 1.2rem;
}

.feed-detail__flow blockquote {
  margin-left: 0;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(255, 251, 245, 0.28);
  color: rgba(245, 242, 236, 0.82);
}

.feed-action-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.45rem 0 0.5rem;
}

.feed-action-page__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.feed-action-page__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.6rem;
}

.feed-action-page__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--feed-control-border);
  border-radius: 18px;
  background: var(--feed-chip-bg);
  color: var(--feed-ink);
  text-decoration: none;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  backdrop-filter: blur(8px);
}

.feed-detail .feed-action-page__link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 242, 236, 0.94);
}

.feed-detail .feed-action-page__link.is-saved {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
}

.feed-action-page__link.is-disabled,
.feed-action-page__link:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.feed-action-page__link.is-saved {
  border-color: rgba(255, 248, 234, 0.42);
  background: rgba(255, 248, 234, 0.16);
}

.feed-action-page__icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.feed-action-page__label {
  display: block;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

button.feed-action-page__link {
  cursor: pointer;
}

.feed-page-break {
  break-after: column;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.feed-toast {
  position: fixed;
  left: 50%;
  top: calc(var(--feed-header-height) + 12px);
  z-index: 80;
  width: min(420px, calc(100vw - 28px));
  transform: translate(-50%, -12px);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--feed-toast-bg);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.feed-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.feed-toast.is-loading::after {
  content: "";
  position: absolute;
  left: -38%;
  bottom: 0;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  animation: feed-toast-loading 1.05s linear infinite;
}

@keyframes feed-toast-loading {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(420%);
  }
}

.feed-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.feed-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.feed-modal__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 6, 8, 0.68);
  cursor: pointer;
}

.feed-modal__panel {
  position: relative;
  width: min(420px, calc(100vw - 40px));
  padding: 1.35rem;
  border: 1px solid var(--feed-panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    var(--feed-panel-bg);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.feed-modal__title {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.feed-modal__copy {
  margin: 0;
  color: var(--feed-muted-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.feed-modal__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.feed-modal__button {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--feed-control-border);
  border-radius: 16px;
  background: var(--feed-chip-bg);
  color: var(--feed-ink);
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.feed-modal__button--quiet {
  background: transparent;
  color: var(--feed-muted-ink);
}

.feed-modal__button:disabled {
  opacity: 0.5;
  cursor: progress;
}

.feed-empty {
  display: grid;
  place-items: center;
  height: 100dvh;
  padding: 24px;
  text-align: center;
}

.feed-empty p {
  max-width: 20rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .feed-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feed-card__copy {
    left: max(24px, calc((100vw - 760px) / 2));
    right: max(94px, calc((100vw - 760px) / 2) + 78px);
  }

  .feed-card__actions {
    right: max(18px, calc((100vw - 760px) / 2));
  }

  .feed-detail {
    left: auto;
    width: min(720px, 88vw);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.26);
  }
}

@media (min-width: 980px) {
  body {
    overflow: hidden;
  }

  .feed-shell {
    display: grid;
    grid-template-columns: minmax(200px, 0.8fr) minmax(360px, 34vw) minmax(360px, 1.15fr);
    gap: 18px;
    height: 100dvh;
    padding:
      calc(var(--feed-header-height) + 18px)
      18px
      18px;
    align-items: stretch;
  }

  .feed-center,
  .feed-collections,
  .feed-desktop-detail {
    min-height: 0;
  }

  .feed-header__menu,
  .feed-mobile-drawer {
    display: none;
  }

  .feed-collections,
  .feed-desktop-detail {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--feed-panel-border);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
      var(--feed-panel-bg);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 18px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
  }

  .feed-collections {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .feed-desktop-detail {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .feed-collections__inner,
  .feed-desktop-detail__content {
    position: relative;
    z-index: 1;
    height: 100%;
  }

  .feed-collections__inner {
    padding: 1.4rem 0.35rem 1.2rem 0;
    display: flex;
    flex-direction: column;
  }

  .feed-collections__list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding-right: 0.3rem;
    scrollbar-width: none;
  }

  .feed-collections__list::-webkit-scrollbar {
    display: none;
  }

  .feed-collection-link {
    padding: 0.45rem 0;
    color: var(--feed-muted-ink);
  }

  .feed-collection-link.is-active {
    background: transparent;
    color: var(--feed-ink);
    transform: none;
  }

  .feed-collections__filters {
    margin-top: 1rem;
    padding: 1rem 0.3rem 0 0;
  }

  .feed-center {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 0;
    height: 100%;
  }

  .feed-viewport {
    margin-top: 0;
    height: calc(100dvh - var(--feed-header-height) - 36px);
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    border: 1px solid var(--feed-panel-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .feed-track {
    min-height: calc(100dvh - var(--feed-header-height) - 36px);
  }

  .feed-card {
    height: calc(100dvh - var(--feed-header-height) - 36px);
    min-height: calc(100dvh - var(--feed-header-height) - 36px);
  }

  .feed-welcome {
    min-height: 0;
    padding: 16px;
  }

  .feed-welcome__box {
    border-radius: 24px;
  }

  .feed-welcome__title {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
  }

  .feed-card__copy {
    left: 22px;
    right: calc(var(--feed-action-size) + 36px);
  }

  .feed-card__ai-recommendation {
    left: 22px;
    right: calc(var(--feed-action-size) + 36px);
    top: 18px;
  }

  .feed-card__actions {
    right: 16px;
  }

  .feed-action--detail {
    display: inline-flex;
  }

  .feed-card__description {
    max-width: 12ch;
    font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  }

  .feed-card__media {
    touch-action: pan-y;
  }

  .feed-detail {
    display: none;
  }

  .feed-desktop-detail {
    position: relative;
  }

  .feed-desktop-detail__backdrop {
    display: none;
  }

  .feed-desktop-detail__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.6rem 1.8rem 1.8rem;
    overflow: auto;
    scrollbar-width: none;
  }

  .feed-desktop-detail__content::-webkit-scrollbar {
    display: none;
  }

  .feed-desktop-detail.is-empty .feed-desktop-detail__content {
    opacity: 0;
    pointer-events: none;
  }

  .feed-desktop-detail__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 1rem;
    align-items: start;
  }

  .feed-desktop-detail__meta {
    min-width: 0;
  }

  .feed-desktop-detail__hmc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 64px;
    margin-top: 4.35rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .feed-desktop-detail__hmc-link[hidden] {
    display: none;
  }

  .feed-desktop-detail__hmc-icon {
    display: block;
    width: 100%;
    height: auto;
  }

  .feed-desktop-detail__title {
    margin: 0;
    font-size: clamp(2rem, 2.5vw, 3rem);
    line-height: 0.95;
  }

  .feed-desktop-detail__author,
  .feed-desktop-detail__reading,
  .feed-desktop-detail__short {
    margin: 0;
  }

  .feed-desktop-detail__author {
    font-size: 1.05rem;
    opacity: 0.82;
  }

  .feed-desktop-detail__reading {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.58;
  }

  .feed-desktop-detail__short {
    display: none;
    max-width: 42rem;
    font-size: 1.08rem;
    line-height: 1.45;
    color: var(--feed-muted-ink);
  }

  .feed-desktop-detail__body {
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
    padding-right: 0.35rem;
    color: var(--feed-ink);
    font-family: "Iowan Old Style", "Palatino Linotype", serif;
    font-size: 1.08rem;
    line-height: 1.72;
    scrollbar-width: none;
  }

  .feed-desktop-detail__body::-webkit-scrollbar {
    display: none;
  }

  .feed-desktop-detail__body h1,
  .feed-desktop-detail__body h2,
  .feed-desktop-detail__body h3 {
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    line-height: 1.04;
  }

  .feed-desktop-detail__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 0.85rem;
    padding-bottom: 0.2rem;
    overflow: visible;
    scrollbar-width: none;
    position: sticky;
    bottom: 0;
    z-index: 3;
    background:
      linear-gradient(180deg, transparent, var(--feed-panel-bg) 24%),
      var(--feed-panel-bg);
    backdrop-filter: blur(14px);
  }

  .feed-desktop-detail__actions::-webkit-scrollbar {
    display: none;
  }

  .feed-desktop-detail__actions .feed-action-page__link {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.8rem;
    min-height: 52px;
    padding: 0.75rem 0.95rem;
    border-radius: 18px;
    text-align: left;
  }

  .feed-desktop-detail__actions .feed-action-page__icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .feed-desktop-detail__actions .feed-action-page__label {
    min-width: 0;
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }
}
