:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-subtle: #f7f7f6;
  --text: #111111;
  --text-soft: #666766;
  --text-faint: #6f716f;
  --line: #e8e8e6;
  --line-strong: #d7d8d5;
  --focus: #385e78;
  --watching: #596772;
  --watching-soft: #eef1f3;
  --rising: #a55d00;
  --rising-soft: #fff3dc;
  --breakout: #bd302a;
  --breakout-soft: #fff0ee;
  --resolved: #2b6952;
  --resolved-soft: #ebf5ef;
  --evidence: #536b80;
  --evidence-soft: #eef3f7;
  --shadow: 0 14px 42px rgb(17 17 17 / 10%);
  --font-ui: "Avenir Next", "SF Pro Text", "Helvetica Neue", sans-serif;
  --font-editorial: "Avenir Next", "SF Pro Display", "Helvetica Neue", sans-serif;
  --side: 232px;
  --center: 640px;
  --context: 292px;
  --mobile-nav-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg);
}

html.has-modal {
  overflow: hidden;
}

body.has-modal {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

button:active:not(:disabled) {
  opacity: 0.68;
}

a {
  color: inherit;
}

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

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 42%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 6px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.brand-mark,
.nav-icon {
  width: 22px;
  height: 22px;
  fill: none;
  pointer-events: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.icon *,
.brand-mark *,
.nav-icon * {
  pointer-events: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  stroke-width: 1.55;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--side) minmax(0, var(--center)) var(--context);
  justify-content: center;
  min-height: 100vh;
}

.side-nav,
.main-column,
.context-rail {
  min-width: 0;
}

.side-nav {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 28px 20px 22px;
  border-right: 1px solid var(--line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  gap: 12px;
  padding: 0 6px;
  background: transparent;
  font-family: var(--font-editorial);
  font-size: 25px;
  font-weight: 650;
}

.side-nav__items {
  display: grid;
  gap: 7px;
  margin-top: 48px;
}

.nav-button {
  display: flex;
  align-items: center;
  min-height: 52px;
  gap: 14px;
  padding: 0 14px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 520;
  text-align: left;
}

.nav-button:hover {
  background: var(--surface-subtle);
  color: var(--text);
}

.nav-button.is-active {
  background: #f1f1ef;
  color: var(--text);
  font-weight: 650;
}

.profile-entry {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 11px;
  margin-top: auto;
  padding: 7px 8px;
  border-radius: 8px;
  background: transparent;
  text-align: left;
}

.profile-entry:hover {
  background: var(--surface-subtle);
}

.profile-entry__copy {
  display: grid;
  flex: 1;
  min-width: 0;
  gap: 2px;
}

.profile-entry__copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-entry__copy small {
  overflow: hidden;
  color: var(--text-faint);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avatar {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.avatar--brief {
  background: #d9c1a6;
  color: #22190f;
}

.avatar--reader {
  background: #e8ecef;
  color: #24313a;
}

.main-column {
  min-height: 100vh;
  border-right: 1px solid var(--line);
}

.view-root {
  min-height: 100vh;
}

.context-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 34px 28px 42px;
}

.mobile-header,
.bottom-nav {
  display: none;
}

.top-tabs {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 58px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(12px);
}

.top-tab {
  position: relative;
  background: transparent;
  color: var(--text-faint);
  font-size: 15px;
  font-weight: 570;
}

.top-tab::after {
  position: absolute;
  bottom: -1px;
  left: 22%;
  width: 56%;
  height: 2px;
  background: transparent;
  content: "";
}

.top-tab.is-active {
  color: var(--text);
  font-weight: 670;
}

.top-tab.is-active::after {
  background: var(--text);
}

.feed-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
}

.feed-intro strong {
  color: var(--text);
  font-weight: 630;
}

.text-button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 4px;
  background: transparent;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 570;
}

.text-button:hover {
  color: var(--text);
}

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

.post {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 20px 22px 18px;
  border-bottom: 1px solid var(--line);
}

.post__content {
  min-width: 0;
}

.post__meta {
  display: flex;
  align-items: baseline;
  min-width: 0;
  gap: 8px;
}

.source-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  max-width: 180px;
  min-width: 44px;
  min-height: 44px;
  margin-block: -12px;
  padding: 12px 0;
  background: transparent;
  font-size: 14px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-kind {
  overflow: hidden;
  color: var(--text-faint);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post__time {
  margin-left: auto;
  color: var(--text-faint);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.post__title {
  margin: 8px 0 5px;
  font-family: var(--font-editorial);
  font-size: 19px;
  font-weight: 680;
  line-height: 1.27;
  letter-spacing: -0.012em;
}

.post__title-button {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
}

.post__title-button:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-type {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 5px;
  background: var(--surface-subtle);
  color: var(--text-faint);
  font-size: 10.5px;
  font-weight: 650;
  white-space: nowrap;
}

.post-type--catchup {
  background: var(--evidence-soft);
  color: var(--evidence);
}

.post__body {
  margin: 0;
  color: #2a2a29;
  font-size: 15.5px;
  line-height: 1.55;
}

.post__media-button {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
}

.post__media {
  width: 100%;
  max-height: 290px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.event-entry {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 7px;
  margin-top: 8px;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 540;
  text-align: left;
}

.event-entry span {
  border-bottom: 1px solid var(--line-strong);
}

.event-entry .icon {
  width: 17px;
  height: 17px;
}

.post__actions {
  display: flex;
  align-items: center;
  min-height: 43px;
  gap: 4px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.post-action {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  gap: 6px;
  padding: 0 9px;
  background: transparent;
  color: var(--text-soft);
  font-size: 12.5px;
}

.post-action:first-child {
  margin-left: -9px;
}

.post-action:hover,
.post-action.is-active {
  color: var(--text);
}

.post-action.is-active .icon {
  fill: currentColor;
}

.post-action .icon {
  width: 18px;
  height: 18px;
}

.verification-hint {
  margin-left: auto;
  color: var(--text-faint);
  font-size: 11.5px;
  white-space: nowrap;
}

.verification-hint--static {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.verification-hint--static .icon {
  width: 15px;
  height: 15px;
}

.caught-up {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 28px 22px 20px;
  color: var(--text-soft);
  text-align: center;
}

.archive-recap {
  padding-bottom: 8px;
}

.feed-lane--timeline {
  padding-bottom: 4px;
}

.brief-timeline {
  position: relative;
  margin: 0;
  padding: 0 0 8px;
}

/* One continuous left spine for recent days + history. */
.brief-timeline--continuous {
  position: relative;
}

.brief-timeline--continuous::before {
  position: absolute;
  top: 22px;
  bottom: 24px;
  left: 13px;
  width: 1px;
  background: var(--line);
  content: "";
  pointer-events: none;
}

.brief-day {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
}

.brief-day__rail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding-top: 18px;
}

.brief-day__dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  flex: 0 0 auto;
}

.brief-day__dot.is-current {
  border-color: var(--text);
  background: var(--text);
}

.brief-day__line {
  width: 1px;
  flex: 1 1 auto;
  min-height: 28px;
  margin-top: 6px;
  background: transparent;
}

/* Keep the day-to-day connector continuous into history. */
.brief-day__line--continue,
.brief-day:not(:last-child) .brief-day__line {
  background: transparent;
}

.brief-day__body {
  min-width: 0;
}

.brief-day__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px 4px;
}

.brief-day__head h3 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.brief-day__head small {
  color: var(--text-faint);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.brief-day--history {
  margin-top: 0;
}

.brief-day__head--history {
  padding-top: 18px;
}

.brief-history-hint {
  margin: 0 22px 8px;
}

.brief-day__body--history .atm-root {
  margin-top: 0;
}

/* History stage keeps its own scrub rail, aligned to the continuous outer spine. */
.brief-day__body--history {
  position: relative;
}

.brief-day__body--history .atm-root {
  margin-left: -38px; /* pull stage+rail back so rail sits on the continuous spine column */
  width: calc(100% + 38px);
}

.brief-day__body--history .atm-chrome {
  margin-left: 38px; /* keep title aligned with content, not under spine */
}

.brief-day__body--history .atm-body {
  align-items: stretch;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
}

.brief-day__body--history .atm-rail {
  width: 28px;
}

.brief-day__body--history .atm-rail::before {
  /* Outer continuous line already draws the spine; avoid double line weight. */
  opacity: 0.35;
}

.brief-day__jump {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.brief-day__jump h3 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.brief-day__jump:hover h3,
.brief-day__jump:focus-visible h3 {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brief-day__jump:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 2px;
}

.brief-day__dot--history {
  border-color: var(--text);
  background: var(--surface);
}

@media (max-width: 820px) {
  .brief-timeline--continuous::before {
    display: none;
  }

  .brief-day,
  .brief-day--history {
    grid-template-columns: 1fr;
  }

  .brief-day__rail {
    display: none;
  }

  .brief-day__body--history .atm-root {
    margin-left: 0;
    width: 100%;
  }

  .brief-day__body--history .atm-chrome {
    margin-left: 0;
  }

  .brief-day__body--history .atm-body {
    grid-template-columns: 1fr;
  }

  .brief-day__body--history .atm-rail {
    display: flex;
    width: auto;
  }
}


.archive-recap__day {
  margin-top: 4px;
}

.archive-recap__more {
  margin: 10px 22px 0;
  color: var(--text-faint);
  font-size: 12.5px;
  line-height: 1.5;
}

.recap-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-height: 96px;
  padding: 14px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.recap-card:hover {
  background: var(--surface-subtle);
}

.recap-card:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: -3px;
}

.recap-card__cover {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface-subtle);
}

.recap-card__cover--empty {
  border: 1px solid var(--line);
}

.recap-card__copy {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  padding-top: 2px;
}

.recap-card__title {
  color: var(--text);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: 0;
}

.recap-card__dek {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-jump {
  margin-top: 8px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.caught-up__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.caught-up__mark .icon {
  width: 18px;
  height: 18px;
}

.caught-up strong {
  color: var(--text);
  font-size: 15px;
}

.caught-up p {
  max-width: 300px;
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.archive-gateway {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 520px);
  gap: 18px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-subtle);
  text-align: left;
}

.archive-gateway > div {
  display: grid;
  gap: 4px;
}

.archive-gateway strong {
  font-size: 13px;
}

.archive-gateway span {
  color: var(--text-faint);
  font-size: 11.5px;
}

.page-head {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.page-head__copy {
  min-width: 0;
}

.page-head h1,
.page-head__title {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 23px;
  font-weight: 680;
  letter-spacing: -0.016em;
}

.page-head p {
  margin: 3px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}

.page-head__actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.icon-button:hover {
  background: var(--surface-subtle);
}

.primary-button,
.secondary-button,
.follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 17px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 660;
}

.primary-button {
  background: var(--text);
  color: #fff;
}

.primary-button:hover {
  background: #2b2b2a;
}

.secondary-button,
.follow-button {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.secondary-button:hover,
.follow-button:hover {
  border-color: #aaa;
  background: var(--surface-subtle);
}

.follow-button.is-following {
  background: var(--surface-subtle);
  color: var(--text-soft);
}

.button-wide {
  width: 100%;
}

.account-avatar-button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.account-avatar img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.account-avatar--icon {
  background: #111;
  color: #fff;
}

.account-avatar--icon .icon {
  width: 21px;
  height: 21px;
}

.account-avatar--profile {
  width: 72px;
  height: 72px;
}

.account-avatar--profile img {
  width: 58%;
  height: 58%;
}

.preference-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: #f7f9f4;
}

.preference-banner strong {
  display: block;
  font-size: 13px;
}

.preference-banner p {
  margin: 3px 0 0;
  color: var(--text-soft);
  font-size: 11.5px;
}

.catchup-section {
  border-bottom: 1px solid var(--line-strong);
  background: #fbfcfa;
}

.catchup-section > .section-heading {
  margin: 0;
  padding: 18px 22px 4px;
}

.catchup-section > .section-heading span {
  color: var(--text-faint);
  font-size: 12px;
}

.catchup-section__hint {
  margin: 0;
  padding: 0 22px 10px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.catchup-section .post:last-child {
  border-bottom: 0;
}

.archive-preview__hint {
  margin: 16px 0 0;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.5;
}

.search-wrap {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.search-field {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-subtle);
}

.search-field .icon {
  width: 19px;
  height: 19px;
  color: var(--text-faint);
}

.search-field input {
  min-height: 44px;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.section-block {
  padding: 25px 22px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 17px;
  font-weight: 680;
}

.section-heading small {
  color: var(--text-faint);
  font-size: 12px;
}

.source-list,
.event-list,
.compound-list,
.onboarding-list,
.candidate-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-row,
.event-row,
.compound-row {
  display: flex;
  align-items: flex-start;
  min-height: 82px;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.source-row:first-child,
.event-row:first-child,
.compound-row:first-child {
  border-top: 0;
}

.row-copy {
  flex: 1;
  min-width: 0;
}

.row-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14.5px;
  font-weight: 670;
  line-height: 1.35;
}

.event-row .source-link {
  display: block;
  overflow: visible;
  max-width: 100%;
  margin: -3px 0 -5px;
  padding: 12px 0;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.35;
  text-align: left;
}

.row-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 7px;
  color: var(--text-faint);
  font-size: 11.5px;
}

.recommendation-reason {
  color: var(--resolved);
  font-weight: 620;
}

.account-filter-bar {
  padding: 13px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.filter-scroll {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 1px;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-scroll--sub {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.filter-chip {
  min-height: 44px;
  padding: 0 13px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 630;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.filter-chip--sub {
  min-height: 44px;
  border-color: transparent;
  background: var(--surface-subtle);
  font-size: 11.5px;
}

.account-section .section-heading > div {
  display: grid;
  gap: 4px;
}

.explore-mode-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: 16px 22px 0;
  padding: 4px;
  border-radius: 8px;
  background: var(--surface-subtle);
}

.explore-mode-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
}

.explore-mode-button small {
  color: inherit;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.explore-mode-button:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.explore-mode-button.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.08);
}

.explore-panel[hidden] {
  display: none;
}

.role-summary--compact {
  padding-top: 18px;
  padding-bottom: 18px;
}

.role-summary--compact .section-heading {
  margin-bottom: 10px;
}

.explore-radar-bridge {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.explore-radar-bridge__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--text-soft);
}

.explore-radar-bridge__icon .icon {
  width: 24px;
  height: 24px;
}

.explore-radar-bridge strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.explore-radar-bridge p {
  margin: 3px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.radar-safety {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 22px 0;
  padding: 15px;
  border: 1px solid #d9e2d7;
  border-radius: 8px;
  background: #f5f8f3;
}

.radar-safety > .icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--resolved);
}

.radar-safety strong {
  display: block;
  font-size: 13px;
}

.radar-safety p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.radar-weight,
.radar-score {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid #e6d3ae;
  border-radius: 6px;
  background: #fff8e8;
  color: #875200;
  font-size: 11px;
  font-weight: 680;
}

.event-hero__states .radar-score {
  min-height: 26px;
}

.radar-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.radar-factors span {
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--surface-subtle);
  color: var(--text-soft);
  font-size: 11.5px;
}

.account-quiet {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.account-quiet .icon {
  width: 20px;
  height: 20px;
}

.account-quiet p {
  margin: 0;
  font-size: 12.5px;
}

.row-actions {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 5px;
}

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

.topic-option {
  min-height: 80px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
}

.topic-option:hover {
  border-color: var(--line-strong);
  background: var(--surface-subtle);
}

.topic-option.is-active {
  border-color: #cbd8cf;
  background: #f2f7f3;
}

.topic-option > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 9px;
  border-radius: 50%;
  background: var(--surface-subtle);
  color: var(--text-soft);
}

.topic-option.is-active > span {
  background: var(--resolved);
  color: #fff;
}

.topic-option > span .icon {
  width: 15px;
  height: 15px;
}

.topic-option strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.topic-option small {
  display: block;
  margin-top: 6px;
  color: var(--text-faint);
  font-size: 11px;
}

.stage,
.evidence {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  gap: 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 650;
}

.stage {
  padding: 0 9px;
}

.stage::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.stage--watching {
  background: var(--watching-soft);
  color: var(--watching);
}

.stage--rising {
  background: var(--rising-soft);
  color: var(--rising);
}

.stage--breakout {
  background: var(--breakout-soft);
  color: var(--breakout);
}

.stage--resolved {
  background: var(--resolved-soft);
  color: var(--resolved);
}

.evidence {
  padding: 0 3px;
  color: var(--evidence);
}

.evidence .icon {
  width: 17px;
  height: 17px;
}

.event-detail {
  padding-bottom: calc(50px + env(safe-area-inset-bottom));
}

.event-hero {
  padding: 28px 26px 24px;
  border-bottom: 1px solid var(--line);
}

.event-hero__states {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.event-hero h1 {
  max-width: 560px;
  margin: 18px 0 8px;
  font-family: var(--font-editorial);
  font-size: 31px;
  font-weight: 690;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.event-hero__summary {
  margin: 0;
  color: #393a39;
  font-size: 16px;
  line-height: 1.55;
}

.event-hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 21px;
}

.event-alert-hint {
  margin: 9px 0 0;
  color: var(--text-faint);
  font-size: 11.5px;
  line-height: 1.45;
}

.alert-select {
  min-height: 44px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 620;
}

.event-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.event-summary-card {
  min-height: 148px;
  padding: 23px 26px;
}

.event-summary-card + .event-summary-card {
  border-left: 1px solid var(--line);
}

.event-summary-card h2 {
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 690;
}

.event-summary-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.timeline {
  padding: 4px 26px 8px;
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px 32px minmax(0, 1fr);
  gap: 10px;
  min-height: 126px;
  padding: 23px 0;
}

.timeline-row:not(:last-child)::after {
  position: absolute;
  top: 54px;
  bottom: -25px;
  left: 118px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.timeline-date {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--watching);
}

.timeline-dot .icon {
  width: 15px;
  height: 15px;
}

.timeline-row[data-type="confirmed"] .timeline-dot {
  border-color: var(--resolved);
  background: var(--resolved);
  color: #fff;
}

.timeline-row[data-type="quiet"] .timeline-dot {
  border-color: var(--focus);
  background: var(--focus);
  color: #fff;
}

.timeline-row[data-type="future"] .timeline-dot {
  border-style: dashed;
}

.timeline-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.35;
}

.timeline-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.52;
}

.timeline-copy small {
  display: block;
  margin-top: 7px;
  color: var(--evidence);
  font-size: 11.5px;
}

.verification {
  margin: 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verification__toggle {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  gap: 9px;
  padding: 0;
  background: transparent;
  color: var(--text-faint);
  font-size: 12.5px;
  text-align: left;
}

.verification__toggle .icon {
  width: 18px;
  height: 18px;
}

.verification__toggle .chevron {
  margin-left: auto;
  transition: transform 160ms ease;
}

.verification.is-open .verification__toggle .chevron {
  transform: rotate(180deg);
}

.verification__body {
  display: none;
  padding: 0 0 16px 27px;
}

.verification.is-open .verification__body {
  display: grid;
}

.verification-record {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.verification-record:first-child {
  border-top: 0;
}

.verification-record strong {
  font-size: 12.5px;
  font-weight: 650;
}

.verification-record span {
  color: var(--text-faint);
  font-size: 11.5px;
}

.verification-record a {
  display: inline-flex;
  grid-row: 1 / span 2;
  grid-column: 2;
  align-items: center;
  gap: 5px;
  color: var(--text-faint);
  font-size: 11px;
  text-decoration: none;
}

.verification-record a:hover {
  color: var(--text);
}

.verification-record .icon {
  width: 14px;
  height: 14px;
}

.radar-status {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  margin: 20px 22px 4px;
  padding: 26px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.radar-status strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 270px;
  font-size: 20px;
  font-weight: 630;
  line-height: 1.35;
}

.radar-status p {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.radar-group {
  padding: 24px 22px 0;
}

.radar-group:last-child {
  padding-bottom: 36px;
}

.radar-group__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 690;
}

.radar-group__title::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.radar-group--breakout .radar-group__title {
  color: var(--breakout);
}

.radar-group--rising .radar-group__title {
  color: var(--rising);
}

.radar-group--watching .radar-group__title {
  color: var(--watching);
}

.radar-empty {
  margin: 0;
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
}

.source-health {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin: 26px 22px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--evidence);
  font-size: 12px;
}

.source-health .icon {
  width: 18px;
  height: 18px;
}

.source-profile {
  padding: 28px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.source-profile__top {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.source-profile .avatar {
  width: 68px;
  height: 68px;
  font-size: 19px;
}

.source-profile__copy {
  flex: 1;
  min-width: 0;
}

.source-profile h1 {
  margin: 3px 0 2px;
  font-family: var(--font-editorial);
  font-size: 25px;
  font-weight: 690;
}

.source-profile__kind {
  color: var(--text-faint);
  font-size: 12px;
}

.source-profile__description {
  margin: 18px 0 10px;
  color: #303130;
  font-size: 14px;
  line-height: 1.55;
}

.source-profile__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  color: var(--text-faint);
  font-size: 12px;
}

.direction-list,
.entity-filter-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.direction-row,
.entity-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.direction-row__copy,
.entity-filter__copy {
  min-width: 0;
}

.direction-row p,
.entity-filter p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.direction-samples {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.direction-samples li + li {
  margin-top: 4px;
}

.direction-samples button {
  min-height: 44px;
  padding: 8px 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 560;
  text-align: left;
}

.direction-samples button:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entity-filter {
  grid-template-columns: minmax(0, 1fr);
}

.entity-filter__evidence {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 12.5px;
}

.entity-filter__evidence ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.post--open {
  grid-template-columns: minmax(0, 1fr);
}

.post__content--full {
  width: 100%;
}

.post__why {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.post__why strong {
  color: var(--text);
  font-weight: 650;
}

.standalone-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.status-region {
  margin: 0;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--selected, #f1f1ef);
  color: var(--text);
  font-size: 13px;
}

.lane-empty {
  margin: 0;
  padding: 16px 22px 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.feed-lane .section-heading {
  padding-inline: 22px;
}

.search-field__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-field {
  position: relative;
}

.muted-copy {
  color: var(--text-soft);
  font-size: 13px;
}

.channel-group {
  border-bottom: 1px solid var(--line);
}

.compound-summary--three {
  grid-template-columns: repeat(3, 1fr);
}

.compound-summary--four {
  grid-template-columns: repeat(4, 1fr);
}

.context-open-button {
  display: none;
}

.context-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.context-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(17 17 17 / 28%);
}

.context-drawer__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: min(78vh, 640px);
  overflow: auto;
  border-radius: 12px 12px 0 0;
  background: var(--surface, #fff);
  box-shadow: 0 -8px 28px rgb(17 17 17 / 12%);
}

.context-drawer__body {
  padding: 0 18px 24px;
}

.boot-error {
  max-width: 480px;
  margin: 48px auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 50px;
  border-bottom: 1px solid var(--line);
}

.segmented button {
  position: relative;
  background: transparent;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 580;
}

.segmented button.is-active {
  color: var(--text);
  font-weight: 680;
}

.segmented button.is-active::after {
  position: absolute;
  right: 23%;
  bottom: -1px;
  left: 23%;
  height: 2px;
  background: var(--text);
  content: "";
}

.source-history .section-heading {
  align-items: flex-start;
}

.source-history .section-heading span {
  max-width: 280px;
  color: var(--text-faint);
  font-size: 11.5px;
  line-height: 1.45;
  text-align: right;
}

.radar-tabs {
  grid-template-columns: repeat(2, 1fr);
}

.radar-priority-note {
  margin: 0;
  padding: 10px 22px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
}

.radar-reason {
  color: var(--resolved);
  font-weight: 650;
}

.section-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 2px;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 650;
  text-align: left;
}

.section-more:hover {
  color: var(--text);
}

.section-more .icon {
  width: 17px;
  height: 17px;
}

.compound-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.compound-stat {
  min-height: 96px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
}

.compound-stat:last-child {
  border-right: 0;
}

.compound-stat:hover,
.compound-stat.is-active {
  background: var(--surface-subtle);
}

.compound-stat.is-active {
  box-shadow: inset 0 -2px 0 var(--text);
}

.compound-stat strong {
  display: block;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.compound-stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-faint);
  font-size: 11.5px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 40px 24px;
  color: var(--text-soft);
  text-align: center;
}

.empty-state__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.empty-state h2 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}

.empty-state p {
  max-width: 330px;
  margin: 7px 0 18px;
  font-size: 13px;
  line-height: 1.5;
}

.compound-panel {
  border-bottom: 0;
}

.compound-alert-list {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.compound-alert-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 190px);
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.compound-alert-row > span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.compound-alert-row strong {
  font-size: 13px;
  line-height: 1.35;
}

.compound-alert-row small {
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.4;
}

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

.judgment-row {
  display: flex;
  align-items: center;
  min-height: 92px;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.judgment-row:first-child {
  border-top: 0;
}

.judgment-row__copy {
  display: grid;
  flex: 1;
  min-width: 0;
  gap: 5px;
  padding: 15px 0;
  background: transparent;
  text-align: left;
}

.judgment-row__copy strong {
  font-size: 14px;
  line-height: 1.4;
}

.judgment-row__copy > span:last-child {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.judgment-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 5px;
  color: var(--rising);
  font-size: 11px;
  font-weight: 680;
}

.judgment-status--hit {
  color: var(--resolved);
}

.judgment-status .icon {
  width: 15px;
  height: 15px;
}

.empty-action {
  display: flex;
  margin: -24px auto 24px;
}

.compound-manage {
  margin: 0;
  padding: 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.context-eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--text-faint);
  font-size: 10.5px;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.context-event__state {
  margin-bottom: 14px;
}

.context-event h2 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.context-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.context-section h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 690;
}

.context-section p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.context-actions {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.context-last {
  margin-top: 20px;
  color: var(--text-faint);
  font-size: 11.5px;
  line-height: 1.5;
}

.post-detail__header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 26px 0;
}

.post-detail__header > div {
  display: grid;
  gap: 3px;
}

.post-detail__header > div > span {
  color: var(--text-faint);
  font-size: 12px;
}

.account-avatar--detail {
  width: 48px;
  height: 48px;
}

.post-detail__body {
  padding: 20px 26px 52px;
}

.post-detail__body h1 {
  max-width: 560px;
  margin: 13px 0 12px;
  font-family: var(--font-editorial);
  font-size: 34px;
  font-weight: 690;
  line-height: 1.13;
  letter-spacing: -0.024em;
}

.post-detail__body > p {
  margin: 0;
  color: #303130;
  font-size: 17px;
  line-height: 1.68;
}

.post-detail__media {
  max-height: 440px;
  margin-top: 22px;
}

.standalone-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.standalone-note .icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--evidence);
}

.post-detail__actions {
  display: flex;
  gap: 9px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.modal-root:empty {
  display: none;
}

.modal-root {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgb(17 17 17 / 28%);
}

.modal {
  width: min(460px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal--wide {
  width: min(760px, 100%);
}

.modal__head {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.modal__head h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 690;
}

.modal__head .icon-button {
  margin-left: auto;
}

.modal__body {
  padding: 22px;
}

.auth-brand {
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.auth-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.auth-brand h2 {
  margin: 12px 0 4px;
  font-family: var(--font-editorial);
  font-size: 23px;
}

.auth-brand p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.auth-tabs button {
  position: relative;
  min-height: 44px;
  background: transparent;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 620;
}

.auth-tabs button.is-active {
  color: var(--text);
}

.auth-tabs button.is-active::after {
  position: absolute;
  right: 20%;
  bottom: -1px;
  left: 20%;
  height: 2px;
  background: var(--text);
  content: "";
}

.google-button {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 650;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--text-faint);
  font-size: 11px;
}

.auth-divider::before,
.auth-divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 620;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  outline: 0;
  background: var(--surface);
  font-size: 14px;
}

.form-field textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgb(56 94 120 / 10%);
}

.auth-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.auth-note,
.prototype-note {
  margin: 15px 0 0;
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.5;
}

.onboarding-copy {
  margin-bottom: 18px;
}

.onboarding-copy h2 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 24px;
}

.onboarding-copy p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.preference-step {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 680;
}

.preference-search {
  margin: 14px 0 4px;
}

.selected-role-strip,
.preference-roles {
  display: flex;
  min-height: 34px;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.selected-role-strip > span {
  color: var(--text-faint);
  font-size: 12px;
}

.selected-role-strip button,
.preference-roles span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  gap: 5px;
  padding: 0 9px;
  border-radius: 7px;
  background: var(--surface-subtle);
  font-size: 11.5px;
  font-weight: 620;
}

.selected-role-strip .icon {
  width: 14px;
  height: 14px;
}

.role-groups {
  margin-top: 14px;
}

.quick-roles {
  margin-top: 18px;
}

.all-roles {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.all-roles summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 650;
}

.all-roles summary span {
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}

.preference-group {
  margin-top: 22px;
}

.preference-group:first-child {
  margin-top: 14px;
}

.preference-group h3 {
  margin: 0 0 9px;
  font-size: 12px;
  font-weight: 690;
}

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

.role-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  font-size: 12.5px;
  text-align: left;
}

.role-choice:hover {
  border-color: var(--line-strong);
  background: var(--surface-subtle);
}

.role-choice.is-selected {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.role-choice .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.account-selectable .account-avatar {
  width: 40px;
  height: 40px;
}

.selection-status--sticky {
  position: sticky;
  z-index: 2;
  bottom: -22px;
  margin-right: -22px;
  margin-left: -22px;
  padding: 14px 22px;
  background: rgb(255 255 255 / 97%);
  backdrop-filter: blur(10px);
}

.primary-button:disabled {
  cursor: default;
  opacity: 0.4;
}

.verification-record__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--resolved);
  font-size: 11px;
  font-weight: 650;
}

.verification-record__status .icon {
  width: 15px;
  height: 15px;
}

.onboarding-section {
  margin-top: 20px;
}

.onboarding-section h3 {
  margin: 0 0 9px;
  font-size: 13px;
}

.selectable {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 58px;
  gap: 11px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.selectable:first-child {
  border-top: 0;
}

.selectable__copy {
  flex: 1;
  min-width: 0;
}

.selectable__copy strong {
  display: block;
  font-size: 13px;
}

.selectable__copy small {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: var(--text-faint);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-toggle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
}

.select-toggle.is-selected {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.selection-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.selection-status p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
}

.selection-error {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--breakout);
  font-size: 11.5px;
}

.profile-menu {
  display: grid;
  gap: 6px;
}

.menu-button--danger {
  color: var(--breakout);
}

.confirm-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 22px;
}

.button-danger {
  background: var(--breakout);
}

.image-preview {
  margin: 0;
}

.image-preview img {
  width: 100%;
  max-height: calc(100vh - 190px);
  border-radius: 7px;
  object-fit: contain;
  background: var(--surface-subtle);
}

.image-preview figcaption {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-subtle);
}

.profile-card__copy {
  display: grid;
  gap: 3px;
}

.profile-card__copy strong {
  font-size: 14px;
}

.profile-card__copy span {
  color: var(--text-faint);
  font-size: 11.5px;
}

.menu-button {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 11px;
  padding: 0 10px;
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  font-size: 13.5px;
  text-align: left;
}

.menu-button:hover {
  background: var(--surface-subtle);
}

.menu-button .icon {
  width: 19px;
  height: 19px;
  color: var(--text-soft);
}

.menu-button span {
  flex: 1;
}

.editor-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: calc(100vh - 75px);
}

.editor-candidates {
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--surface-subtle);
}

.editor-candidates h2,
.editor-form h2 {
  margin: 0 0 12px;
  font-size: 15px;
}

.candidate-button {
  width: 100%;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: left;
}

.candidate-button:first-child {
  border-top: 0;
}

.candidate-button.is-active strong {
  color: var(--rising);
}

.candidate-button strong {
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
}

.candidate-button small {
  display: block;
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 10.5px;
}

.editor-form {
  padding: 24px;
}

.editor-suggestion {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid #ecd1a9;
  border-radius: 8px;
  background: #fffaf1;
}

.editor-suggestion .icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--rising);
}

.editor-suggestion strong {
  display: block;
  font-size: 12.5px;
}

.editor-suggestion p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 11.5px;
  line-height: 1.45;
}

.preview-post {
  padding: 4px 0;
}

.preview-post__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-faint);
  font-size: 11.5px;
}

.preview-post h3 {
  margin: 15px 0 7px;
  font-family: var(--font-editorial);
  font-size: 22px;
}

.preview-post p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-preview {
  padding: 28px 22px 48px;
  border-top: 1px solid var(--line);
}

.archive-preview .section-heading > div {
  display: grid;
  gap: 3px;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.issue-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 126px;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  text-align: left;
}

.issue-card:hover {
  background: var(--surface-subtle);
}

.issue-card img {
  width: 92px;
  height: 102px;
  border-radius: 6px;
  object-fit: cover;
}

.issue-card__copy {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 6px;
}

.issue-card__copy small {
  color: var(--text-faint);
  font-size: 10.5px;
}

.issue-card__copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.issue-card__copy > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.podcast-hero {
  padding: 42px 30px 34px;
  border-bottom: 1px solid var(--line);
}

.podcast-hero h1 {
  max-width: 520px;
  margin: 10px 0 12px;
  font-family: var(--font-editorial);
  font-size: 36px;
  line-height: 1.06;
}

.podcast-hero p {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.podcast-hero small {
  display: block;
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 11px;
}

.podcast-list {
  display: grid;
}

.podcast-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.podcast-card:first-child {
  border-top: 0;
}

.podcast-card--compact {
  grid-template-columns: 96px minmax(0, 1fr);
  padding-inline: 0;
}

.podcast-cover {
  position: relative;
  align-self: start;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #111;
}

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

.podcast-cover > span {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 50%;
  background: rgb(17 17 17 / 86%);
  color: #fff;
}

.podcast-card__copy {
  min-width: 0;
}

.podcast-title {
  display: block;
  margin: 8px 0 7px;
  background: transparent;
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 680;
  line-height: 1.18;
  text-align: left;
}

.podcast-card__copy > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.55;
}

.podcast-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.podcast-actions .primary-button,
.podcast-actions .secondary-button {
  min-height: 42px;
}

.episode-hero {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.issue-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.episode-hero > img {
  width: 210px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.issue-hero > img {
  width: 100%;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 12px;
  object-fit: contain;
  object-position: center top;
  background: var(--surface-subtle);
}


.issue-hero__media {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface-subtle);
}

.issue-hero__media img,
.issue-hero > img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 12px;
  object-fit: contain;
  object-position: center top;
  background: var(--surface-subtle);
}

.issue-hero__copy {
  min-width: 0;
}

.episode-hero h1,
.issue-hero h1 {
  margin: 10px 0 12px;
  font-family: var(--font-editorial);
  font-size: 34px;
  line-height: 1.08;
}

.episode-hero p,
.issue-hero p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.transcript-block {
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.transcript-block h2,
.issue-section h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.transcript-block p,
.issue-section p,
.issue-section li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.issue-meta {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 11px;
}

.issue-meta span + span::before {
  margin-right: 8px;
  content: "·";
}

.issue-body {
  padding: 8px 30px 54px;
}

.issue-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.issue-section p {
  margin: 12px 0 0;
}

.issue-section ul {
  margin: 0;
  padding-left: 22px;
}

.issue-section li + li {
  margin-top: 10px;
}

.issue-loading {
  display: grid;
  gap: 10px;
  padding: 28px 0;
}

.issue-loading span {
  display: block;
  width: 100%;
  height: 14px;
  border-radius: 4px;
  background: var(--surface-subtle);
}

.issue-loading span:nth-child(2) {
  width: 88%;
}

.issue-loading span:nth-child(3) {
  width: 70%;
}

.issue-loading p {
  color: var(--text-faint);
  font-size: 12px;
}

.player-root:empty {
  display: none;
}

.mini-player {
  position: fixed;
  z-index: 70;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  width: min(430px, calc(100vw - 56px));
  min-height: 64px;
  gap: 10px;
  overflow: hidden;
  padding: 9px 10px;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 50px rgb(0 0 0 / 18%);
}

body:has(.mini-player) .view-root {
  padding-bottom: 92px;
}

@media (min-width: 921px) {
  .mini-player {
    right: max(
      14px,
      calc((100vw - var(--side) - var(--center) - var(--context)) / 2 + 8px)
    );
    width: calc(var(--context) - 16px);
  }
}

.mini-player__cover {
  overflow: hidden;
  width: 44px;
  height: 44px;
  border-radius: 5px;
}

.mini-player__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-player__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
  background: transparent;
  color: inherit;
  text-align: left;
}

.mini-player__copy strong,
.mini-player__copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-player__copy strong {
  font-size: 12px;
}

.mini-player__copy span {
  color: rgb(255 255 255 / 62%);
  font-size: 10px;
}

.mini-player__toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.mini-player__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    #fff 0 calc(var(--progress) * 100%),
    rgb(255 255 255 / 22%) calc(var(--progress) * 100%) 100%
  );
}

.toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 15px;
  border-radius: 7px;
  background: var(--text);
  color: #fff;
  font-size: 12.5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast__action {
  min-height: 32px;
  padding: 0 8px;
  border-radius: 5px;
  background: rgb(255 255 255 / 14%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  :root {
    --side: 86px;
    --context: 260px;
  }

  .app-shell {
    grid-template-columns: var(--side) minmax(0, var(--center)) var(--context);
  }

  .side-nav {
    align-items: center;
    padding-inline: 12px;
  }

  .brand-lockup span,
  .nav-button span,
  .profile-entry__copy,
  .profile-entry > .icon {
    display: none;
  }

  .brand-lockup {
    padding: 0;
  }

  .nav-button {
    justify-content: center;
    width: 52px;
    padding: 0;
  }

  .profile-entry {
    justify-content: center;
    width: 54px;
    padding: 0;
  }

  .context-rail {
    padding-inline: 22px;
  }
}

@media (max-width: 920px) {
  :root {
    --side: 78px;
  }

  .app-shell {
    grid-template-columns: var(--side) minmax(0, 640px);
  }

  .context-rail {
    display: none;
  }

  .context-open-button {
    display: grid;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
  }

  .app-shell {
    display: block;
  }

  .side-nav,
  .context-rail {
    display: none;
  }

  .main-column {
    min-height: 100vh;
    border-right: 0;
  }

  .radar-group:has(.radar-empty) {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
  }

  .radar-group:has(.radar-empty) .radar-group__title {
    flex: 0 0 auto;
    margin: 0;
  }

  .radar-group:has(.radar-empty) .radar-empty {
    flex: 1;
    padding: 0;
    border: 0;
  }

  .mobile-header {
    position: sticky;
    z-index: 30;
    top: 0;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(12px);
  }

  .mobile-header__brand {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 8px;
    margin-right: auto;
    font-size: 19px;
    font-weight: 680;
  }

  .mobile-header__brand .brand-mark {
    width: 29px;
    height: 29px;
  }

  .mobile-header__title {
    overflow: hidden;
    max-width: calc(100vw - 150px);
    margin: 0 auto;
    font-size: 16px;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-header .icon-button {
    width: 44px;
    height: 44px;
  }

  .bottom-nav {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgb(255 255 255 / 97%);
    backdrop-filter: blur(14px);
  }

  .bottom-nav__button {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 44px;
    background: transparent;
    color: var(--text-faint);
    font-size: 10px;
    font-weight: 500;
  }

  .bottom-nav__button .nav-icon {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
  }

  .bottom-nav__button.is-active {
    color: var(--text);
    font-weight: 650;
  }

  .bottom-nav__button.is-active .nav-icon {
    fill: currentColor;
    stroke: currentColor;
  }

  .bottom-nav__button.is-active::after {
    position: absolute;
    top: 6px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--text);
    content: "";
  }

  .context-open-button {
    display: grid;
  }

  .top-tabs {
    top: 58px;
    height: 50px;
  }

  .feed-intro {
    padding-inline: 16px;
  }

  .feed-intro .text-button {
    display: none;
  }

  .preference-banner {
    align-items: flex-start;
    padding-inline: 16px;
  }

  .preference-banner .secondary-button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .post {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 17px 15px 13px;
  }

  .post.post--open {
    grid-template-columns: minmax(0, 1fr);
  }

  .source-kind {
    display: none;
  }

  .post__meta .source-link {
    max-width: 112px;
  }

  .post__title {
    font-size: 18px;
  }

  .post__body {
    font-size: 15px;
  }

  .post__media {
    max-height: 220px;
  }

  .post-action span {
    display: none;
  }

  .post-action {
    width: 44px;
    padding: 0;
  }

  .verification-hint {
    font-size: 10.5px;
  }

  .page-head {
    display: none;
  }

  .search-wrap,
  .section-block,
  .radar-group {
    padding-right: 16px;
    padding-left: 16px;
  }

  .account-filter-bar {
    padding-inline: 16px;
  }

  .radar-safety {
    margin-inline: 16px;
  }

  .radar-status {
    margin-right: 16px;
    margin-left: 16px;
    padding: 23px 18px;
  }

  .radar-status strong {
    max-width: 220px;
    font-size: 18px;
  }

  .source-health {
    margin-right: 16px;
    margin-left: 16px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-option {
    min-height: 60px;
  }

  .event-hero {
    padding: 20px 18px 18px;
  }

  .event-hero h1 {
    font-size: 29px;
  }

  .event-hero__actions {
    grid-template-columns: 1fr;
  }

  .archive-gateway {
    align-items: stretch;
    width: 100%;
    flex-direction: column;
  }

  .archive-gateway .secondary-button {
    width: 100%;
  }

  .event-summary-grid {
    grid-template-columns: 1fr;
  }

  .event-summary-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .event-summary-card + .event-summary-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .timeline {
    padding-inline: 18px;
  }

  .timeline-row {
    grid-template-columns: 68px 28px minmax(0, 1fr);
    gap: 8px;
  }

  .timeline-row:not(:last-child)::after {
    left: 82px;
  }

  .timeline-dot {
    width: 26px;
    height: 26px;
  }

  .verification {
    margin-inline: 18px;
  }

  .source-profile {
    padding: 20px 16px 16px;
  }

  .direction-row,
  .entity-filter {
    padding-inline: 16px;
  }

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

  .compound-summary--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .compound-stat {
    min-height: 80px;
    padding: 15px 8px;
    text-align: center;
  }

  .compound-stat strong {
    font-size: 20px;
  }

  .compound-stat span {
    font-size: 10.5px;
  }

  .compound-alert-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .post-detail__header {
    padding: 18px 16px 0;
  }

  .post-detail__body {
    padding: 17px 16px 42px;
  }

  .post-detail__body h1 {
    font-size: 28px;
  }

  .post-detail__body > p {
    font-size: 16px;
  }

  .post-detail__actions {
    flex-wrap: wrap;
  }

  .modal-root {
    align-items: end;
    padding: 0;
  }

  .modal {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .selection-status--sticky {
    bottom: -22px;
  }

  .editor-layout {
    display: block;
  }

  .editor-candidates {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .candidate-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .candidate-button {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface);
  }

  .candidate-button:first-child {
    border-top: 1px solid var(--line);
  }

  .archive-preview {
    padding: 24px 16px 40px;
  }

  .issue-grid {
    grid-template-columns: 1fr;
  }

  .issue-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .issue-card img {
    width: 82px;
    height: 96px;
  }

  .podcast-hero {
    padding: 30px 18px 26px;
  }

  .podcast-hero h1 {
    font-size: 29px;
  }

  .podcast-card {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 16px;
  }

  .podcast-title {
    font-size: 18px;
  }

  .podcast-actions {
    flex-wrap: wrap;
  }

  .podcast-actions .primary-button,
  .podcast-actions .secondary-button {
    min-height: 44px;
    padding-inline: 12px;
  }

  .episode-hero {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 16px;
  }

  .issue-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }

  .episode-hero > img {
    width: 104px;
  }

  .issue-hero__media,
  .issue-hero > img,
  .issue-hero__media img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 10px;
    object-fit: contain;
    object-position: center top;
  }

  .episode-hero h1,
  .issue-hero h1 {
    margin-top: 6px;
    font-size: 24px;
  }

  .episode-hero p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .issue-hero p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .transcript-block,
  .issue-body {
    padding: 24px 18px 42px;
  }

  .mini-player {
    right: 10px;
    bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom) + 10px);
    left: 10px;
    width: auto;
  }

  .toast {
    right: 14px;
    bottom: calc(var(--mobile-nav-height) + 14px + env(safe-area-inset-bottom));
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 390px) {
  .post {
    padding-right: 13px;
    padding-left: 13px;
  }

  .post__actions {
    gap: 0;
  }

  .verification-hint {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .event-hero h1 {
    font-size: 27px;
  }

  .timeline-row {
    grid-template-columns: 62px 26px minmax(0, 1fr);
  }

  .timeline-row:not(:last-child)::after {
    left: 75px;
  }
}

/* Threads-aligned interaction and reading language */
:root {
  --line: #e5e5e5;
  --line-strong: #d2d2d2;
  --text-soft: #5f5f5f;
  --text-faint: #737373;
  --focus: #111111;
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-editorial: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --side: 88px;
  --mobile-nav-height: 72px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.post__title,
.section-heading h2,
.section-heading h3 {
  font-family: var(--font-ui);
}

.post__title {
  font-weight: 700;
}

.post__body {
  color: #222222;
  font-size: 16px;
  line-height: 1.5;
}

.post__media {
  border-color: #dedede;
  border-radius: 12px;
}

.post.post--open {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
}

.post__identity {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 50%;
  place-items: center;
  background: #ffffff;
  color: #111111;
}

.post__identity:hover {
  background: #f5f5f5;
}

.post__identity .icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

@media (min-width: 701px) {
  .app-shell {
    grid-template-columns: 88px minmax(0, 640px) 292px;
  }

  .side-nav {
    align-items: center;
    padding: 18px 12px 20px;
  }

  .brand-lockup,
  .nav-button,
  .profile-entry {
    justify-content: center;
    width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 12px;
  }

  .brand-lockup span,
  .nav-button span,
  .profile-entry__copy,
  .profile-entry > .icon {
    display: none;
  }

  .brand-lockup .brand-mark {
    width: 32px;
    height: 32px;
    stroke-width: 1.9;
  }

  .side-nav__items {
    gap: 12px;
    margin-top: 104px;
  }

  .nav-button {
    color: #9b9b9b;
  }

  .nav-button:hover {
    background: #f3f3f3;
  }

  .nav-button.is-active {
    background: transparent;
    color: #111111;
  }

  .nav-button .nav-icon {
    width: 27px;
    height: 27px;
    stroke-width: 1.9;
  }

  .nav-button.is-active .nav-icon {
    fill: currentColor;
  }

  .profile-entry .avatar {
    width: 38px;
    height: 38px;
    border-color: #d7d7d7;
    background: transparent;
    color: #111111;
  }

  .mobile-header {
    position: sticky;
    z-index: 30;
    top: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    min-height: 58px;
    padding: 0 8px;
    border-bottom: 1px solid var(--line);
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(14px);
  }

  .mobile-header--root .mobile-header__menu,
  .mobile-header--root .mobile-header__search,
  .mobile-header--root .brand-mark,
  .mobile-header--root .mobile-header__brand-name {
    visibility: hidden;
  }

  .mobile-header__brand {
    display: grid;
    margin: 0;
    min-height: 52px;
    place-items: center;
    background: transparent;
  }

  .mobile-header__desktop-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-header--detail {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .mobile-header__actions {
    display: flex;
    align-items: center;
  }

  .mobile-header__actions .icon-button,
  .mobile-header > .icon-button {
    width: 48px;
    height: 48px;
  }

  .mobile-header__title {
    overflow: hidden;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-column {
    border-left: 1px solid var(--line);
  }

  .section-block.feed-lane {
    padding-right: 0;
    padding-left: 0;
  }

  .post {
    padding: 20px 24px 18px;
  }
}

@media (min-width: 701px) and (max-width: 1020px) {
  .app-shell {
    grid-template-columns: 88px minmax(0, 640px);
  }

  .context-rail {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
  }

  .mobile-header {
    position: sticky;
    z-index: 30;
    top: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    min-height: 60px;
    padding: 0 8px;
    border-bottom: 0;
    background: rgb(255 255 255 / 97%);
    backdrop-filter: blur(14px);
  }

  .mobile-header--search,
  .mobile-header--detail {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--line);
  }

  .mobile-header--search {
    min-height: 72px;
    padding-inline: 12px;
  }

  .mobile-header--search .mobile-header__title {
    max-width: none;
    margin: 0 0 0 8px;
    font-size: 28px;
    font-weight: 750;
    text-align: left;
  }

  .mobile-header__spacer {
    width: 52px;
    height: 52px;
  }

  .mobile-header__menu,
  .mobile-header__search,
  .mobile-header > .icon-button,
  .mobile-header__actions .icon-button {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    padding: 0;
    background: transparent;
    color: #8e8e8e;
  }

  .mobile-header .icon {
    width: 27px;
    height: 27px;
    stroke-width: 1.9;
  }

  .mobile-header__brand {
    display: grid;
    margin: 0;
    min-height: 56px;
    place-items: center;
    background: transparent;
  }

  .mobile-header__brand .brand-mark {
    width: 36px;
    height: 36px;
    stroke-width: 1.9;
  }

  .mobile-header__brand-name,
  .mobile-header__desktop-title {
    display: none;
  }

  .mobile-header__title {
    overflow: hidden;
    max-width: none;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-header__actions {
    display: flex;
    align-items: center;
  }

  .preference-banner {
    min-height: 76px;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
  }

  .preference-banner strong {
    font-size: 16px;
    font-weight: 700;
  }

  .preference-banner p {
    display: block;
    margin: 3px 0 0;
    color: var(--text-faint);
    font-size: 13px;
    line-height: 1.35;
  }

  .preference-banner .secondary-button {
    min-height: 44px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: #737373;
    font-size: 13px;
  }

  .section-block.feed-lane {
    padding: 0;
  }

  .feed-lane > .section-heading {
    min-height: 58px;
    align-items: center;
    margin: 0;
    padding: 0 20px;
  }

  .feed-lane > .section-heading h2 {
    font-size: 18px;
    font-weight: 700;
  }

  .post,
  .post.post--open {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 14px 14px;
  }

  .feed-lane--must-know > .section-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .feed-lane--directions > .section-heading {
    min-height: 52px;
    padding-inline: 20px;
  }

  .post__identity {
    position: sticky;
    top: 70px;
    align-self: start;
  }

  .post__meta {
    gap: 8px;
  }

  .post__meta .source-link {
    max-width: min(48vw, 190px);
    color: #111111;
    font-size: 14px;
    font-weight: 700;
  }

  .post__time {
    font-size: 12.5px;
  }

  .post-type {
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 11px;
  }

  .post__title {
    margin: 8px 0 7px;
    font-size: 19px;
    line-height: 1.32;
  }

  .post__body {
    font-size: 16px;
    line-height: 1.48;
  }

  .post__why {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.45;
  }

  .post__media {
    width: 100%;
    max-height: none;
    margin-top: 14px;
    border-radius: 12px;
  }

  .event-entry {
    min-height: 48px;
    margin-top: 10px;
    font-size: 14px;
  }

  .post__actions {
    min-height: 50px;
    gap: 8px;
    margin-top: 10px;
    border-top: 0;
  }

  .post-action {
    width: 46px;
    min-height: 46px;
  }

  .post-action .icon {
    width: 22px;
    height: 22px;
  }

  .verification-hint {
    margin-left: auto;
    font-size: 11.5px;
  }

  .bottom-nav {
    height: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
    border-top: 1px solid #eeeeee;
    background: rgb(255 255 255 / 98%);
    backdrop-filter: blur(16px);
  }

  .bottom-nav__button {
    gap: 4px;
    color: #9a9a9a;
    font-size: 10px;
    font-weight: 500;
  }

  .bottom-nav__button span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .bottom-nav__button .nav-icon {
    width: 23px;
    height: 23px;
    stroke-width: 1.9;
  }

  .bottom-nav__button.is-active {
    color: #111111;
    font-weight: 650;
  }

  .bottom-nav__button.is-active .nav-icon {
    fill: currentColor;
    stroke: currentColor;
  }

  .bottom-nav__button.is-active::after {
    display: block;
  }

  .search-wrap {
    padding: 12px 20px 20px;
    border-bottom: 0;
  }

  .search-field {
    min-height: 52px;
    padding: 0 15px;
    border: 0;
    border-radius: 24px;
    background: #f1f1f1;
  }

  .search-field:focus-within {
    box-shadow: 0 0 0 1px #b8b8b8;
  }

  .search-field .icon {
    width: 22px;
    height: 22px;
    color: #9a9a9a;
  }

  .search-field input {
    min-height: 52px;
    font-size: 16px;
  }

  .search-field input::placeholder {
    color: #969696;
  }

  .modal-root:has(.threads-drawer) {
    place-items: stretch start;
    padding: 0;
    background: rgb(255 255 255 / 72%);
    backdrop-filter: blur(2px);
  }

  .modal:has(.threads-drawer) {
    width: min(78vw, 420px);
    height: 100vh;
    max-height: none;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 18px 0 44px rgb(0 0 0 / 10%);
  }

  .modal:has(.threads-drawer) .modal__head {
    min-height: 86px;
    padding: 18px 24px 0;
    border-bottom: 0;
  }

  .modal:has(.threads-drawer) .modal__head h2 {
    font-size: 27px;
    font-weight: 760;
  }

  .modal:has(.threads-drawer) .modal__head .icon-button {
    width: 48px;
    height: 48px;
  }

  .modal:has(.threads-drawer) .modal__body {
    padding: 24px;
  }

  .threads-drawer {
    gap: 20px;
  }

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

  .threads-drawer__quick button {
    display: grid;
    min-height: 72px;
    place-items: center;
    border: 1px solid #dedede;
    border-radius: 28px;
    background: #ffffff;
  }

  .threads-drawer__quick .icon {
    width: 27px;
    height: 27px;
    stroke-width: 1.9;
  }

  .threads-drawer__quick span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .threads-drawer__sections {
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 24px;
  }

  .threads-drawer__sections button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 66px;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #dedede;
    background: #ffffff;
    font-size: 17px;
    font-weight: 560;
    text-align: left;
  }

  .threads-drawer__sections button:last-child {
    border-bottom: 0;
  }

  .threads-drawer__sections .icon {
    width: 18px;
    height: 18px;
    color: #a0a0a0;
  }

  .threads-drawer__settings {
    display: grid;
    gap: 2px;
    padding-top: 6px;
    border-top: 1px solid #ededed;
  }

  .threads-drawer__settings .menu-button {
    min-height: 54px;
    padding-inline: 4px;
    font-size: 15px;
  }

  .threads-drawer__summary {
    margin: 0;
    color: #737373;
    font-size: 13px;
    line-height: 1.5;
  }

  .threads-drawer__sources {
    margin: -8px 0 0;
    color: #8a8a8a;
    font-size: 12px;
    line-height: 1.45;
  }

  .threads-drawer > .menu-button--danger {
    min-height: 44px;
    padding-inline: 4px;
    font-size: 13px;
  }
}

.search-discovery,
.search-recommendations,
.channel-browser,
.role-summary {
  border-bottom: 1px solid var(--line);
}

.search-discovery__heading p,
.search-recommendations .section-heading p,
.channel-browser .section-heading p,
.role-summary .section-heading p {
  margin: 3px 0 0;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.search-result-count {
  margin: 0;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 13px;
}

.search-result-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-result {
  border-bottom: 1px solid var(--line);
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 104px;
  gap: 14px;
  padding: 14px 20px;
  background: transparent;
  text-align: left;
}

.search-result__button:hover {
  background: #fafafa;
}

.search-result__copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.search-result__copy strong {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.search-result__copy > span:not(.search-result__kind) {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-result__kind,
.search-result__copy small {
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.35;
}

.search-result__thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
}

.search-result__button > .icon {
  width: 18px;
  height: 18px;
  color: #9a9a9a;
}

.channel-tabs {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 0 20px 2px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.channel-tabs::-webkit-scrollbar {
  display: none;
}

.channel-tabs button {
  position: relative;
  min-height: 48px;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  color: var(--text-faint);
  font-size: 15px;
  font-weight: 600;
}

.channel-tabs button.is-active {
  color: #111111;
}

.channel-tabs button.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #111111;
  content: "";
}

@media (min-width: 701px) {
  .page-head {
    display: none;
  }

  .mobile-header--root .mobile-header__menu,
  .mobile-header--root .mobile-header__search,
  .mobile-header--root .brand-mark,
  .mobile-header--root .mobile-header__brand-name {
    visibility: hidden;
  }

  .mobile-header--root .mobile-header__brand {
    grid-column: 2;
    height: 52px;
  }

  .profile-entry .avatar,
  .profile-entry__copy {
    display: none;
  }

  .profile-entry > .icon {
    display: block;
    width: 27px;
    height: 27px;
    color: #8e8e8e;
  }

  .nav-button.is-active .nav-icon {
    fill: none;
    stroke-width: 2.5;
  }
}

@media (min-width: 1021px) {
  .app-shell {
    width: min(950px, calc(100% - 180px));
    grid-template-columns: minmax(0, 640px) 292px;
    justify-content: center;
    column-gap: 18px;
    margin-inline: auto;
  }

  .side-nav {
    position: fixed;
    z-index: 40;
    top: 0;
    left: 16px;
    align-items: center;
    width: 72px;
    padding: 18px 10px 20px;
    border-right: 0;
  }

  .main-column {
    grid-column: 1;
    border: 1px solid var(--line);
    border-top: 0;
  }

  .context-rail {
    grid-column: 2;
    padding: 16px 0;
  }

  .context-rail > .context-event {
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }
}

@media (max-width: 700px) {
  .radar-priority-note {
    padding: 10px 20px 12px;
  }

  .bottom-nav__button.is-active .nav-icon {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.9;
  }

  .post__title {
    margin-block: 0;
  }

  .post__title-button {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .search-discovery > .section-heading,
  .search-recommendations > .section-heading,
  .channel-browser > .section-heading,
  .role-summary > .section-heading {
    min-height: 74px;
    align-items: center;
    margin: 0;
    padding: 12px 20px;
  }

  .search-result__button {
    min-height: 98px;
    padding: 13px 20px;
  }

  .search-result__copy strong {
    font-size: 15px;
  }

  .search-recommendations .direction-row,
  .channel-browser .direction-row {
    padding: 14px 20px;
  }

  .search-recommendations .direction-samples,
  .channel-browser .direction-samples,
  .search-recommendations .row-meta span:nth-child(n + 2),
  .channel-browser .row-meta span:nth-child(n + 2) {
    display: none;
  }

  .search-recommendations .direction-row p,
  .channel-browser .direction-row p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .role-summary .filter-scroll {
    padding: 0 20px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 28px;
}

@media (max-width: 700px) {
  .explore-mode-bar {
    margin: 12px 16px 0;
  }

  .explore-mode-button {
    padding-inline: 10px;
    font-size: 13px;
  }

  .explore-shell .row-copy strong,
  .explore-shell .row-copy .source-link {
    font-size: 15.5px;
  }

  .explore-shell .row-copy p {
    font-size: 16px;
    line-height: 1.45;
  }

  .explore-shell .row-meta {
    font-size: 12px;
  }

  .role-summary--compact .section-heading {
    align-items: flex-start;
  }

  .role-summary--compact .text-button {
    max-width: 104px;
    line-height: 1.35;
    text-align: right;
  }

  .explore-radar-bridge {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    padding: 18px 16px;
  }

  .explore-radar-bridge__icon {
    width: 24px;
    height: 24px;
  }

  .explore-radar-bridge .secondary-button {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}
