@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --ink: #232720;
  --muted: #8a8e85;
  --line: #eceee8;
  --lime: #d7fa83;
  --green: #446521;
  --purple: #eeeafa;
  --paper: #fafbf8;
  --font: "DM Sans", sans-serif;
  --content-width: 1024px;
  --text-size: 16px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-size);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  background: none;
  color: inherit;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
a,
button {
  transition:
    background 0.16s,
    color 0.16s,
    box-shadow 0.16s;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid #82a737;
  outline-offset: 4px;
}
svg {
  flex-shrink: 0;
}
p {
  line-height: 1.6;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, var(--font);
  font-weight: 750;
}
small {
  font-size: var(--text-size);
}
.muted {
  color: var(--muted);
}
.small {
  font-size: var(--text-size);
}
.full {
  width: 100%;
}
.app-shell {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: auto;
  min-height: calc(100vh - 72px);
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.site-header-inner {
  max-width: calc(var(--content-width) + 48px);
  min-height: 72px;
  padding: 0 24px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header .header-join {
  white-space: normal;
  text-align: center;
  min-width: 0;
}
.header-account {
  position: relative;
  min-width: 0;
  max-width: 50%;
}
.account-menu-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}
.account-menu-trigger::-webkit-details-marker {
  display: none;
}
.account-menu-trigger:hover,
.header-account[open] .account-menu-trigger {
  background: #f7f7f7;
}
.header-account .avatar {
  width: 36px;
  height: 36px;
}
.account-menu-name {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}
.account-menu-chevron {
  color: var(--muted);
}
.header-account[open] .account-menu-chevron {
  transform: rotate(180deg);
}
.account-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  width: 220px;
  max-width: calc(100vw - 32px);
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px #23272014;
}
.account-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  text-align: left;
}
.account-menu-item:hover {
  background: #f7f7f7;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.4px;
}
.brand-mark {
  background: var(--lime);
  width: 31px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 9px;
  position: relative;
  padding-bottom: 5px;
  letter-spacing: -4px;
  padding-right: 5px;
}
.brand-mark > span {
  position: absolute;
  font-size: 21px;
  right: 4px;
  top: -1px;
}
.brand-period {
  color: #81a837;
}
.left-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 49px;
  padding: 0 15px;
  border-radius: 9px;
  font-size: var(--text-size);
  font-weight: 500;
  position: relative;
}
.nav-link:hover {
  background: #f6f7f3;
}
.nav-link.active {
  background: #f1f6e8;
  font-weight: 700;
}
.nav-link.active svg {
  stroke-width: 2;
}
.nav-dot {
  height: 5px;
  width: 5px;
  background: #6f9636;
  border-radius: 100%;
  margin-left: auto;
}
.button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 17px;
  font-weight: 650;
  font-size: var(--text-size);
  line-height: 1.2;
  border: 1px solid transparent;
  white-space: nowrap;
}
.primary {
  background: var(--lime);
  color: #283719;
}
.primary:hover {
  background: #c7ed6c;
  box-shadow: 0 3px 12px #597a1110;
}
.dark {
  background: #272b24;
  color: white;
}
.dark:hover {
  background: #41483b;
}
.subtle {
  border: 1px solid #e3e6dc;
  background: #fff;
}
.subtle:hover {
  background: #f7f8f4;
}
.new-annotation {
  margin-top: 27px;
  padding: 15px 12px;
  gap: 9px;
}
.sidebar-note {
  margin: 39px 12px 0;
}
.tiny-label {
  font-size: var(--text-size);
  letter-spacing: 1.5px;
  color: #8e9485;
  font-weight: 700;
}
.sidebar-note p {
  font-size: var(--text-size);
  color: #8a8f80;
  line-height: 1.7;
  margin: 10px 0 17px;
}
.sidebar-note > a {
  font-size: var(--text-size);
  display: flex;
  align-items: center;
  gap: 7px;
  color: #596344;
  font-weight: 600;
}
.account-area {
  margin-top: auto;
  padding-top: 28px;
}
.account {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account strong,
.account small {
  display: block;
}
.account strong {
  font-size: var(--text-size);
}
.account small {
  font-size: var(--text-size);
  color: var(--muted);
  margin-top: 4px;
}
.account > svg {
  margin-left: auto;
  color: #929987;
}
.account-caption {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: var(--text-size);
  margin-top: 12px;
}
.avatar {
  width: 39px;
  height: 39px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: var(--text-size);
  letter-spacing: -0.3px;
  font-weight: 750;
  background: #eee7fb;
  color: #77668d;
  border: 1px solid #00000004;
}
.avatar.lime {
  background: #eaf2da;
  color: #65784c;
}
.avatar.peach {
  background: #f9e2d6;
  color: #a2755a;
}
.avatar.blue {
  background: #dfeefa;
  color: #5b819a;
}
.avatar.pink {
  background: #f4e1ec;
  color: #987187;
}
.avatar.large {
  height: 76px;
  width: 76px;
  font-size: 22px;
  border: 5px solid white;
}
.main-column {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
  min-height: inherit;
}
.page-header {
  height: 83px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: 19px;
  letter-spacing: -0.6px;
}
.page-header > span:last-child,
.page-header > .topic-tag:last-child {
  margin-left: auto;
}
.live-label {
  font-size: var(--text-size);
  color: #909587;
  display: flex;
  gap: 6px;
  align-items: center;
}
.live-label i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #86a95b;
  border-radius: 50%;
}
.feed-intro {
  padding: 32px 28px 29px;
  background: linear-gradient(115deg, #fff 42%, #fafcf5);
}
.eyebrow {
  font-size: var(--text-size);
  letter-spacing: 1.6px;
  font-weight: 650;
  color: #777f6c;
}
.feed-intro h2 {
  font-size: 26px;
  letter-spacing: -1.15px;
  line-height: 1.45;
  margin-top: 9px;
  position: relative;
  white-space: nowrap;
}
.feed-intro h2 > span:first-child {
  position: relative;
  z-index: 1;
}
.feed-intro h2 > span:first-child:after {
  content: "";
  position: absolute;
  height: 9px;
  background: var(--lime);
  bottom: 3px;
  left: -2px;
  right: -2px;
  z-index: -1;
  transform: rotate(-1deg);
}
.little-star {
  position: absolute;
  color: #bed789;
  font-family: serif;
  font-size: 39px;
  right: 0;
  top: -3px;
}
.feed-intro p {
  font-size: var(--text-size);
  color: #888e80;
  margin-top: 8px;
}
.feed-tabs {
  height: 68px;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
  gap: 31px;
  font-size: var(--text-size);
  font-weight: 600;
  color: #91978b;
}
.feed-tabs > a,
.feed-tabs > span.selected {
  display: flex;
  align-items: center;
  position: relative;
}
.feed-tabs .selected {
  color: #2c3225;
}
.feed-tabs .selected:after {
  content: "";
  position: absolute;
  height: 3px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c5e982;
  border-radius: 2px;
}
.feed-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-size);
  font-weight: 400;
}
.filter-bar {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}
.type-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.filter-chip {
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #89907f;
  font-size: var(--text-size);
  border: 1px solid #ebeee5;
}
.filter-chip:hover {
  background: #f7f9f2;
}
.filter-chip.selected {
  color: #38462a;
  background: #edf4e2;
  border-color: #edf4e2;
}
.filter-caption {
  font-size: var(--text-size);
  color: #a1a598;
}
html[data-annotated-extension-installed="true"] .extension-banner {
  display: none;
}
.extension-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: #f5f2fc;
}
.extension-banner p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #655976;
}
.extension-banner .button {
  white-space: normal;
  text-align: center;
}
.demo-label {
  background: #fcfcf9;
  color: #999e90;
  font-size: var(--text-size);
  letter-spacing: 0.2px;
  padding: 8px 28px;
  border-bottom: 1px solid #f3f4ee;
}
.annotation-card {
  padding: 26px 28px 20px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s;
}
.annotation-card:hover {
  background: #f7f7f7;
}
.post-avatar {
  padding-top: 1px;
}
.post-content {
  min-width: 0;
  flex: 1;
}
.post-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  min-height: 20px;
  font-size: var(--text-size);
  overflow-wrap: anywhere;
}
.author-name {
  font-size: var(--text-size);
  font-weight: 700;
}
.author-name:hover {
  text-decoration: underline;
}
.feed-follow {
  display: inline-flex;
  margin: 0;
}
.post-follow {
  padding: 4px 10px;
  min-height: 30px;
  border-radius: 5px;
  background: var(--lime);
  color: var(--green);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}
.post-follow:hover {
  background: #c9ed73;
}
.author-handle,
.post-time {
  color: #9a9e95;
  font-size: var(--text-size);
}
.topic-tag {
  margin-left: auto;
  background: #f2f4ed;
  color: #808a73;
  font-size: var(--text-size);
  font-weight: 550;
  border-radius: 4px;
  padding: 4px 7px;
  white-space: nowrap;
}
.topic-tag.technology {
  background: #efedfb;
  color: #8a7aa3;
}
.topic-tag.design {
  background: #fcefe6;
  color: #a5866e;
}
.topic-tag.science {
  background: #e8f4ef;
  color: #6c9a85;
}
.commentary,
.voice-note {
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.commentary p {
  margin-bottom: 10px;
  line-height: 1.7;
}
.commentary p:last-child {
  margin-bottom: 14px;
}
.source-context {
  margin: 36px 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.source-card {
  border: 1px solid #e8ebe2;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.source-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border-bottom: 1px solid #f0f1ec;
}
.source-heading > span:nth-child(2) {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.source-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  background: #f2f4ed;
  border-radius: 6px;
  color: #778367;
}
.source-heading strong {
  font-size: var(--text-size);
  display: block;
}
.source-domain {
  font-size: var(--text-size);
  color: #a0a598;
  display: block;
  margin-top: 2px;
}
.clip-label {
  margin-left: auto;
  color: #9da491;
  font-size: var(--text-size);
}
.source-card blockquote {
  margin: 0;
  padding: 21px 19px 20px;
  display: flex;
  gap: 9px;
  background: linear-gradient(130deg, #f9faf3, #fff 90%);
  font-family: Manrope, var(--font);
  font-size: var(--text-size);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: -0.2px;
}
.quote-mark {
  color: #b7c99b;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  position: relative;
  top: 5px;
}
.source-card mark {
  background: linear-gradient(
    transparent 10%,
    #edf4d4 10%,
    #edf4d4 90%,
    transparent 90%
  );
  color: #475138;
  padding: 2px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.source-title {
  padding: 12px 15px 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-wrap: anywhere;
}
.source-title a {
  font-size: var(--text-size);
  color: #707861;
  line-height: 1.5;
  font-weight: 600;
}
.source-title a:hover {
  text-decoration: underline;
}
.source-title .source-preview {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--ink);
  text-decoration: none;
}
.source-preview:hover strong {
  text-decoration: underline;
}
.source-title .source-preview:hover {
  text-decoration: none;
}
.source-preview-image {
  width: 144px;
  height: 104px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 6px;
  background: var(--paper);
}
.source-preview-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 5px;
}
.source-preview-description {
  color: #737969;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.source-preview-url {
  color: #7c8571;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.source-title > span {
  font-size: var(--text-size);
  color: #a2a996;
}
.clip-time-range {
  padding-top: 10px;
  font-variant-numeric: tabular-nums;
}
.source-footer {
  border-top: 1px solid #ecefe6;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  background: #fcfdf9;
  font-size: var(--text-size);
  font-weight: 600;
}
.source-footer a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.original-link {
  color: #60764a;
}
.claim-link {
  color: #8b8d81;
}
.claim-link:hover {
  color: #b57255;
}
.post-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 16px;
  color: #929989;
}
.post-action {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-size);
  min-height: 28px;
  padding: 0 3px;
}
.post-action:hover {
  color: #5e7840;
}
.post-action.like:hover,
.post-action.like.is-active {
  color: #c76d86;
}
.post-action.like.is-active svg {
  fill: #fae6ec;
}
.post-action.bookmark {
  margin-left: auto;
}
.post-action.bookmark.is-active {
  color: #759942;
}
.post-action.bookmark.is-active svg {
  fill: #e7f3d7;
}
.thread-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  border-top: 1px dashed #e9ede0;
  color: #869672;
  font-size: var(--text-size);
  padding-top: 13px;
  margin-top: 10px;
}
.thread-link span {
  margin-left: auto;
  color: #6c7c57;
}
.source-card video {
  width: 100%;
  height: auto;
  background: #1f241e;
  display: block;
  aspect-ratio: auto 16/9;
  object-fit: contain;
}
.source-card.audio .source-icon {
  background: #eee9f8;
  color: #9181aa;
}
.source-card.video .source-icon {
  background: #f9e9e4;
  color: #b4816b;
}
.media-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 27px;
  background: #f1f0f7;
  color: #8c7d9f;
  gap: 10px;
}
.media-status.video {
  background: #edf1e6;
  color: #6d7c58;
}
.media-status strong {
  font-size: var(--text-size);
}
.media-status p {
  font-size: var(--text-size);
  max-width: 280px;
}
.audio-player-art {
  padding: 21px 18px;
  display: flex;
  gap: 15px;
  background: #f8f6fc;
}
.audio-art {
  background: #e6dff4;
  border-radius: 10px;
  height: 78px;
  width: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #a393bd;
}
.audio-player-art > div:last-child {
  min-width: 0;
}
.audio-player-art .eyebrow {
  font-size: var(--text-size);
  color: #a093b1;
}
.audio-player-art strong {
  display: block;
  font-size: var(--text-size);
  margin: 6px 0;
  overflow-wrap: anywhere;
}
.clip-audio {
  width: 100%;
  height: 38px;
  background: #f8f6fc;
}
.right-sidebar {
  padding: 30px 0 28px 28px;
}
.search-field {
  display: flex;
  align-items: center;
  background: #f7f8f4;
  border: 1px solid #eef0e7;
  border-radius: 9px;
  height: 43px;
  padding: 0 13px;
  gap: 9px;
  color: #939c86;
}
.search-field input {
  width: 100%;
  min-width: 0;
  outline: 0 !important;
  border: 0 !important;
  background: none !important;
  padding: 0 !important;
  font-size: var(--text-size);
  box-shadow: none !important;
}
.search-field kbd {
  background: #fff;
  border: 1px solid #e6eadd;
  border-radius: 3px;
  padding: 0 4px;
  font-size: var(--text-size);
  color: #a2a897;
}
.extension-promo {
  margin-top: 23px;
  background: #f0edf9;
  border: 1px solid #e7e1f5;
  border-radius: 12px;
  padding: 23px 21px 15px;
  overflow: hidden;
}
.extension-promo .eyebrow {
  font-size: var(--text-size);
  color: #9a8bb0;
  letter-spacing: 1.3px;
}
.extension-promo h2 {
  font-size: 23px;
  letter-spacing: -0.8px;
  line-height: 1.35;
  margin-top: 9px;
  color: #494254;
}
.extension-promo p {
  color: #92879f;
  font-size: var(--text-size);
  line-height: 1.7;
  margin-top: 9px;
}
.extension-promo .button {
  font-size: var(--text-size);
  padding: 12px 10px;
  gap: 8px;
}
.promo-footnote {
  display: block;
  font-size: var(--text-size);
  color: #a69ab4;
  text-align: center;
  margin-top: 10px;
}
.browser-illustration {
  height: 130px;
  background: #fff;
  border: 1px solid #d8d0e7;
  border-radius: 7px 7px 0 0;
  transform: rotate(-4deg);
  margin: 23px 0 23px 5px;
  position: relative;
  box-shadow: 5px 6px 0 #e5dff0;
}
.browser-dots {
  height: 23px;
  display: flex;
  align-items: center;
  gap: 3px;
  border-bottom: 1px solid #eeeaf4;
  padding: 0 8px;
}
.browser-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #dbd4e7;
}
.browser-dots > span {
  margin-left: 8px;
  color: #b5acbe;
  font-size: var(--text-size);
}
.browser-page {
  display: flex;
  height: 105px;
}
.fake-page {
  width: 65%;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fake-page b {
  height: 6px;
  background: #d9d9d0;
  width: 68%;
  border-radius: 2px;
}
.fake-page i {
  height: 3px;
  background: #eeeceb;
  border-radius: 2px;
}
.fake-page i:last-child {
  width: 60%;
}
.fake-page mark {
  font-size: var(--text-size);
  white-space: nowrap;
  background: #e3f5b6;
  padding: 4px 3px;
  color: #5c6d3d;
}
.fake-sidebar {
  width: 35%;
  border-left: 1px solid #e8e4ee;
  padding: 7px;
}
.mini-mark {
  font-weight: 800;
  font-size: var(--text-size);
  letter-spacing: -3px;
}
.fake-sidebar i {
  display: block;
  height: 3px;
  margin-top: 5px;
  background: #e9e5ed;
}
.fake-sidebar > div {
  margin-top: 10px;
  font-size: var(--text-size);
  padding: 6px 4px;
  background: #d9eeae;
  border-radius: 2px;
  color: #667d43;
}
.cursor-arrow {
  position: absolute;
  font-family: Arial, sans-serif;
  left: 49%;
  bottom: 20px;
  font-size: 36px;
  line-height: 1;
  color: #554661;
  text-shadow: 2px 2px #fff;
  transform: rotate(-15deg);
}
.side-section {
  margin-top: 28px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}
.section-title h2 {
  font-size: var(--text-size);
  font-weight: 750;
  letter-spacing: -0.15px;
}
.section-title > span,
.section-title > svg {
  color: #a4ae96;
}
.suggested-user {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.suggested-user .avatar {
  width: 32px;
  height: 32px;
  font-size: var(--text-size);
}
.suggested-name {
  min-width: 0;
}
.suggested-name strong,
.suggested-name small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggested-name strong {
  font-size: var(--text-size);
  font-weight: 650;
}
.suggested-name small {
  font-size: var(--text-size);
  color: #a0a592;
  margin-top: 4px;
}
.suggested-user form,
.suggested-user > .button {
  margin-left: auto;
}
.follow-button {
  border: 1px solid #e6e9df;
  padding: 6px 11px;
  font-size: var(--text-size);
  border-radius: 5px;
  background: white;
}
.follow-button:hover {
  background: #edf6dd;
}
.trending {
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.trending-item {
  display: flex;
  gap: 12px;
  padding: 0 0 18px;
}
.trend-number {
  font-size: var(--text-size);
  color: #c7ceba;
  font-weight: 500;
  font-family: Manrope, sans-serif;
  margin-top: 2px;
}
.trending-item > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.trending-item small {
  font-size: var(--text-size);
  color: #969e89;
}
.trending-item strong {
  font-size: var(--text-size);
  font-weight: 600;
  line-height: 1.6;
}
.trending-item > div > span {
  font-size: var(--text-size);
  color: #a4ac97;
}
.trending-item:hover strong {
  color: #6c8c40;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: var(--text-size);
  color: #a6ac9c;
}
.site-footer p {
  width: 100%;
  font-size: var(--text-size);
  color: #8c957e;
  margin-top: 3px;
}
.flash {
  margin: 15px 18px 0;
  padding: 12px 15px;
  border-radius: 8px;
  background: #f0f6e5;
  border: 1px solid #e1ebd3;
  display: flex;
  gap: 9px;
  font-size: var(--text-size);
  color: #627b47;
  line-height: 1.6;
}
.flash.alert {
  background: #fff2eb;
  color: #ac775e;
  border-color: #f1ded2;
}
.flash button {
  margin-left: auto;
  padding: 0;
  align-self: start;
}
.flash svg {
  margin-top: 2px;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #282e23;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  z-index: 100;
  font-size: var(--text-size);
  box-shadow: 0 3px 15px #0002;
}
.toast[hidden] {
  display: none;
}
.empty-state {
  text-align: center;
  padding: 70px 40px;
  color: #8a947c;
}
.empty-state h2 {
  font-size: 19px;
  color: #5f6c51;
  margin: 20px 0 10px;
}
.empty-state p {
  font-size: var(--text-size);
  max-width: 330px;
  margin: 0 auto 22px;
}
.empty-icon {
  padding: 20px;
  display: inline-block;
  border-radius: 50%;
  background: #f2f6e8;
}
.compact-intro {
  padding: 28px;
}
.compact-intro h2 {
  font-size: 23px;
  letter-spacing: -0.7px;
}
.compact-intro p {
  color: #9ba38e;
  font-size: var(--text-size);
  margin-top: 8px;
}
.pagination {
  padding: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.search-results-label {
  padding: 15px 28px;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-size);
  color: #858e76;
}
.search-results-label a {
  float: right;
  color: #475a32;
}
.back-link {
  display: flex;
  align-items: center;
  color: #738160;
}
.detail-card .commentary {
  line-height: 1.7;
}
.detail-card {
  cursor: default;
}
.owner-actions {
  padding: 8px 28px 15px;
  text-align: right;
  border-bottom: 1px solid var(--line);
}
.text-button {
  font-size: var(--text-size);
  padding: 3px 0;
}
.text-button:hover {
  text-decoration: underline;
}
.thread-section {
  border-bottom: 1px solid var(--line);
  background: #fafbf7;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px 28px;
  color: #727e62;
}
.section-heading h2 {
  font-size: var(--text-size);
  color: #47533a;
}
.section-heading p {
  font-size: var(--text-size);
  margin-top: 4px;
  color: #94a083;
}
.thread-section .annotation-card {
  background: #fff;
  margin: 0 15px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 22px 15px;
}
.conversation .count-badge {
  border-radius: 20px;
  background: #f0f3e9;
  padding: 3px 8px;
  font-size: var(--text-size);
}
.reply-form {
  padding: 0 28px 25px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.reply-form > div {
  flex: 1;
  min-width: 0;
}
.reply-form textarea {
  background: #fafbf7;
}
.reply-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}
.reply-footer .button {
  padding: 10px 13px;
  font-size: var(--text-size);
}
.comment {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
}
.comment > div {
  flex: 1;
  min-width: 0;
}
.comment-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.comment-header > a {
  font-size: var(--text-size);
  font-weight: 650;
}
.comment-header small {
  color: #a0a994;
  font-size: var(--text-size);
}
.comment p {
  font-size: var(--text-size);
  line-height: 1.7;
  margin: 8px 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.conversation-empty {
  text-align: center;
  padding: 30px;
  color: #a4ac9a;
  font-size: var(--text-size);
}
.join-conversation {
  text-align: center;
  background: #f7f9f2;
  margin: 0 28px 25px;
  padding: 20px;
  border-radius: 9px;
}
.join-conversation p {
  font-size: var(--text-size);
  color: #8a967b;
  margin-bottom: 12px;
}
.replying-to {
  display: block;
  color: #85a256;
  font-size: var(--text-size);
  padding: 4px 0 10px;
}
.form-page {
  padding: 35px 35px 50px;
}
.form-page h2 {
  font-size: 25px;
  letter-spacing: -0.8px;
  margin: 10px 0;
}
.form-page > .muted {
  font-size: var(--text-size);
  line-height: 1.8;
  margin-bottom: 25px;
}
.form-page input:not([type="radio"]):not([type="range"]):not([type="submit"]),
.form-page textarea,
.form-page select,
.reply-form textarea,
.moderation-claim textarea {
  display: block;
  width: 100%;
  border: 1px solid #e3e8d9;
  background: #fff;
  border-radius: 7px;
  padding: 12px 13px;
  box-shadow: 0 2px 2px #32421c02;
  color: #58624b;
  line-height: 1.6;
}
.form-page input::placeholder,
.form-page textarea::placeholder,
.reply-form textarea::placeholder {
  color: #b0b7a4;
}
.form-page textarea {
  resize: vertical;
  font-size: var(--text-size);
}
.field-label {
  font-size: var(--text-size);
  font-weight: 600;
  display: block;
  margin: 24px 0 9px;
  color: #5a644d;
}
.field-label > span {
  font-weight: 400;
  float: right;
  color: #a4ac99;
  font-size: var(--text-size);
}
.field-hint {
  font-size: var(--text-size) !important;
  color: #a0a98f;
  line-height: 1.7;
  margin: 8px 0 0;
}
.kind-selector {
  display: flex;
  background: #f6f8f1;
  border: 1px solid #edf0e5;
  border-radius: 9px;
  padding: 4px;
  gap: 5px;
  margin-bottom: 29px;
}
.kind-selector label {
  flex: 1;
  cursor: pointer;
}
.kind-selector input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kind-selector span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 6px;
  color: #96a282;
  font-size: var(--text-size);
}
.kind-selector input:checked + span {
  background: white;
  box-shadow: 0 1px 5px #3647220a;
  color: #607644;
}
.kind-selector input:focus-visible + span {
  outline: 2px solid #89a763;
}
.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.label-row > .small {
  margin-top: 16px;
}
.form-errors,
.form-error {
  padding: 12px;
  color: #a76852;
  background: #fcf0e7;
  border-radius: 7px;
  margin: 15px 0;
  font-size: var(--text-size);
  line-height: 1.7;
}
.form-error:empty {
  display: none;
}
.clip-editor {
  background: #f8faf4;
  padding: 20px;
  margin-top: 18px;
  border: 1px solid #e6eddc;
  border-radius: 8px;
}
.clip-editor .label-row strong {
  font-size: var(--text-size);
}
.duration-pill {
  background: #e7efda;
  color: #7c9161;
  font-size: var(--text-size);
  border-radius: 5px;
  padding: 4px 8px;
}
.range-visual {
  padding: 20px 0 10px;
}
.range-visual input {
  display: block;
  width: 100%;
  accent-color: #95b966;
  cursor: ew-resize;
  margin: 12px 0;
}
.time-inputs {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 12px 0;
}
.time-inputs label {
  flex: 1;
  font-size: var(--text-size);
  color: #92a17c;
}
.time-inputs input {
  margin-top: 5px;
  font-variant-numeric: tabular-nums;
}
.time-inputs > span {
  color: #9baa84;
}
.publish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.publish-footer > span {
  font-size: var(--text-size);
  color: #94a180;
  display: flex;
  align-items: center;
  gap: 5px;
}
.recorder {
  border: 1px dashed #e1e7d5;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.recorder .button {
  padding: 8px;
  font-size: var(--text-size);
}
.recorder .audio-upload {
  font-size: var(--text-size) !important;
  border: none !important;
  padding: 0 !important;
}
.recorder audio,
.voice-note audio {
  width: 100%;
  height: 35px;
}
.voice-note {
  margin-bottom: 14px;
}
.voice-note audio {
  display: block;
}
.voice-transcript { margin-top: 12px; }
.voice-transcript-toggle {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 0;
  margin-top: 6px;
}
.voice-transcript-toggle:hover { text-decoration: underline; }
.voice-transcript-text.is-collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.voice-transcript-text { font-size: 18px; line-height: 1.7; overflow-wrap: anywhere; }
.voice-transcript-text p + p { margin-top: 10px; }
.voice-transcript-status { font-size: 13px; color: var(--muted); margin-top: 8px; }
.auth-page {
  padding: 60px 65px;
  text-align: center;
}
.auth-mark {
  background: #e5f6c5;
  width: 68px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -9px;
  padding-right: 8px;
}
.auth-page > .eyebrow {
  display: block;
  font-size: var(--text-size);
}
.auth-page h2 {
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -1.2px;
  margin-top: 15px;
}
.auth-page p {
  font-size: var(--text-size);
  color: #929d84;
  margin: 15px 0 30px;
  line-height: 1.9;
}
.oauth-button {
  width: 100%;
  border: 1px solid #e2e8d9;
  margin: 7px 0;
  font-size: var(--text-size);
  height: 48px;
}
.oauth-button strong {
  font-size: 20px;
  position: absolute;
  left: 16px;
}
.auth-page form,
.oauth-button {
  position: relative;
}
.oauth-button small {
  position: absolute;
  right: 12px;
  font-size: var(--text-size);
  color: #8f9b81;
}
.auth-divider {
  border-top: 1px solid var(--line);
  margin: 33px 0 23px;
  position: relative;
}
.auth-divider span {
  position: relative;
  top: -7px;
  background: white;
  padding: 0 12px;
  font-size: var(--text-size);
  color: #a4ae97;
  letter-spacing: 1px;
}
.auth-page > small {
  display: block;
  margin-top: 12px;
  font-size: var(--text-size);
}
.browse-link {
  display: block;
  color: #809266;
  font-size: var(--text-size);
  margin-top: 30px;
}
.profile-cover {
  height: 140px;
  background: #f0f4e9;
  display: flex;
  align-items: center;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.profile-cover > span {
  font-family: Manrope, sans-serif;
  color: #a5b496;
  font-size: var(--text-size);
}
.profile-cover i {
  font-size: 140px;
  color: #e3ebd5;
  font-style: normal;
  position: absolute;
  right: 20px;
  top: -15px;
}
.profile-identity {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: -34px 28px 15px;
  position: relative;
}
.profile-identity .button {
  padding: 9px 18px;
  font-size: var(--text-size);
}
.profile-header > h2,
.profile-header > .muted,
.profile-header > p,
.profile-stats {
  margin-left: 28px;
  margin-right: 28px;
}
.profile-header > h2 {
  font-size: 23px;
  margin-bottom: 4px;
}
.profile-header > .muted {
  font-size: var(--text-size);
}
.profile-header > p {
  font-size: var(--text-size);
  color: #7b8870;
  line-height: 1.7;
  margin-top: 17px;
}
.profile-stats {
  display: flex;
  gap: 15px;
  font-size: var(--text-size);
  color: #9ca88e;
  padding: 22px 0 28px;
}
.profile-stats strong {
  color: #677751;
}
.profile-stats > span:last-child {
  margin-left: auto;
}
.claim-context {
  display: flex;
  gap: 12px;
  padding: 17px;
  background: #f5f7ef;
  border: 1px solid #e9edde;
  border-radius: 8px;
  color: #8b9a77;
  font-size: var(--text-size);
}
.form-page form > .button {
  margin-top: 25px;
}
.form-bottom {
  margin-top: 18px;
}
.settings-section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  margin-top: 35px;
}
.settings-section > svg {
  color: #a1b681;
}
.settings-section h2 {
  font-size: 19px;
}
.settings-section p {
  font-size: var(--text-size);
  line-height: 1.8;
}
.settings-section form {
  display: inline-block;
  margin: 20px 15px 10px 0;
}
.danger {
  color: #b88170;
}
.token-box {
  border: 1px solid #d8e6c5;
  background: #f4f8ed;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
}
.token-box label {
  font-size: var(--text-size);
  color: #8ba169;
  display: block;
  margin-bottom: 10px;
}
.token-box input {
  font-family: monospace;
  font-size: var(--text-size);
}
.settings-bottom {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-size);
}
.extension-page > h2 {
  font-size: 35px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.highlight-text {
  background: linear-gradient(transparent 70%, #dafa9b 70%);
}
.extension-features {
  display: flex;
  gap: 22px;
  margin-bottom: 25px;
  color: #8d9a7d;
  font-size: var(--text-size);
}
.extension-features > span {
  display: flex;
  gap: 6px;
  align-items: center;
}
.install-steps {
  padding: 0;
  list-style: none;
  margin: 40px 0;
}
.install-steps li {
  display: flex;
  gap: 18px;
  margin: 25px 0;
}
.install-steps li > span {
  font-size: 23px;
  color: #c3d3ae;
  font-family: Manrope, sans-serif;
}
.install-steps h3 {
  font-size: var(--text-size);
  margin-bottom: 5px;
}
.install-steps p {
  font-size: var(--text-size);
  color: #92a080;
  line-height: 1.8;
}
.install-steps a {
  color: #5e7e3e;
  text-decoration: underline;
}
.install-steps code {
  font-size: var(--text-size);
  background: #f1f5e9;
  padding: 2px 4px;
  border-radius: 3px;
}
.respect-note {
  padding: 24px;
  background: #f7f8f3;
  border: 1px solid #e8edde;
  border-radius: 9px;
  color: #8d9b7a;
}
.respect-note h3 {
  font-size: var(--text-size);
  margin: 10px 0;
}
.respect-note p {
  font-size: var(--text-size);
  line-height: 1.8;
  margin: 10px 0;
}
.notification {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-size);
  color: #879575;
}
.notification:hover,
.notification.unread {
  background: #fafcf7;
}
.notification strong {
  color: #64774e;
}
.notification small {
  display: block;
  color: #a4b095;
  font-size: var(--text-size);
  margin-top: 7px;
}
.notification > svg {
  margin-left: auto;
}
.moderation-claim {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
}
.moderation-claim p {
  font-size: var(--text-size);
  margin: 10px 0;
}
.moderation-claim a {
  text-decoration: underline;
}
.moderation-claim select {
  margin: 15px 0;
}
.transcript {
  font-size: var(--text-size);
  color: #899976;
  padding: 15px 0;
}
.transcript summary {
  cursor: pointer;
}
.transcript p {
  margin-top: 10px;
  line-height: 1.8;
}
.skip-link {
  position: fixed;
  top: -100px;
  background: #d7fa83;
  padding: 10px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
@media (min-width: 1500px) {
  .right-sidebar {
    padding-left: 30px;
  }
  .left-sidebar {
    padding-left: 12px;
  }
  .annotation-card {
    padding: 28px 30px 20px;
  }
  .feed-intro h2 {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .left-sidebar {
    padding-right: 20px;
    padding-left: 0;
  }
  .right-sidebar {
    padding-left: 20px;
  }
  .brand {
    font-size: 23px;
  }
  .extension-promo {
    padding: 18px 16px;
  }
  .extension-promo h2 {
    font-size: 21px;
  }
  .feed-intro h2 {
    font-size: 23px;
  }
  .little-star {
    display: none;
  }
  .author-handle {
    display: none;
  }
  .filter-caption {
    display: none;
  }
  .follow-button {
    padding: 6px 8px;
  }
  .suggested-name strong {
    font-size: var(--text-size);
  }
  .suggested-name small {
    font-size: var(--text-size);
  }
  .sidebar-note {
    margin-left: 8px;
    margin-right: 0;
  }
  .extension-promo .button {
    font-size: var(--text-size);
    gap: 5px;
  }
}
@media (max-width: 1000px) {
  .right-sidebar {
    display: none;
  }
  .feed-intro h2 {
    font-size: 26px;
  }
  .author-handle {
    display: inline;
  }
  .live-label {
    font-size: var(--text-size);
  }
  .brand {
    font-size: 24px;
  }
  .left-sidebar {
    padding-right: 20px;
  }
  .nav-link {
    padding-left: 12px;
  }
}
@media (max-width: 700px) {
  .app-shell {
    width: 100%;
    min-height: calc(100vh - 64px);
  }
  .site-header-inner {
    min-height: 64px;
    padding: 10px 16px;
    gap: 12px;
  }
  .brand {
    font-size: 20px;
    gap: 6px;
    letter-spacing: -1px;
  }
  .header-join {
    padding: 10px 8px;
    font-size: var(--text-size);
  }
  .brand-mark {
    height: 29px;
    width: 28px;
    font-size: 26px;
  }
  .brand-mark > span {
    font-size: var(--text-size);
  }
  .left-sidebar nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    flex-direction: row;
    gap: 0;
    justify-content: space-around;
    background: #ffffffed;
    border-top: 1px solid var(--line);
    z-index: 80;
    backdrop-filter: blur(15px);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .nav-link {
    flex: 1;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    border-radius: 0;
    min-height: 62px;
    padding: 8px 0;
    font-size: var(--text-size);
  }
  .nav-link svg {
    width: 20px;
    height: 20px;
  }
  .nav-link.active {
    background: transparent;
    color: #7b9d4e;
  }
  .nav-dot {
    display: none;
  }
  .sidebar-note,
  .account-area {
    display: none;
  }
  .new-annotation {
    margin: 0;
    padding: 9px;
    border-radius: 50%;
  }
  .new-annotation > span {
    display: none;
  }
  .new-annotation svg {
    width: 19px;
    height: 19px;
  }
  .main-column {
    border: 0;
  }
  .page-header {
    height: 63px;
    padding: 0 20px;
  }
  .page-header h1 {
    font-size: var(--text-size);
  }
  .live-label {
    font-size: var(--text-size);
  }
  .feed-intro {
    padding: 25px 20px;
  }
  .feed-intro h2 {
    font-size: 24px;
    white-space: normal;
    line-height: 1.5;
  }
  .feed-intro p {
    font-size: var(--text-size);
  }
  .eyebrow {
    font-size: var(--text-size);
  }
  .feed-tabs {
    height: 64px;
    padding: 0 20px;
    gap: 26px;
    font-size: var(--text-size);
  }
  .feed-sort {
    display: none;
  }
  .filter-bar {
    padding: 15px 20px;
  }
  .extension-banner {
    padding: 18px 20px;
  }
  .extension-banner .button {
    width: 100%;
  }
  .filter-chip {
    padding: 6px 12px;
  }
  .annotation-card {
    padding: 23px 18px 18px;
    gap: 10px;
  }
  .avatar {
    height: 33px;
    width: 33px;
    font-size: var(--text-size);
  }
  .author-name {
    font-size: var(--text-size);
  }
  .post-time,
  .author-handle {
    font-size: var(--text-size);
  }
  .post-header {
    gap: 5px;
    flex-wrap: wrap;
  }
  .post-time {
    margin-left: 0;
  }
  .author-handle {
    display: none;
  }
  .topic-tag {
    font-size: var(--text-size);
    padding: 3px 5px;
  }
  .source-heading {
    padding: 11px;
    gap: 7px;
  }
  .source-heading .clip-label {
    flex-basis: 100%;
    margin-left: 36px;
  }
  .source-heading strong {
    font-size: var(--text-size);
  }
  .source-domain,
  .clip-label {
    font-size: var(--text-size);
  }
  .source-card blockquote {
    font-size: var(--text-size);
    padding: 17px 13px 16px;
    gap: 6px;
  }
  .source-title {
    padding: 10px 12px;
  }
  .source-title a {
    font-size: var(--text-size);
  }
  .source-title .source-preview {
    flex-direction: column;
    gap: 12px;
  }
  .source-preview-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.91;
  }
  .source-preview-copy {
    max-width: 100%;
  }
  .source-footer {
    padding: 10px 12px;
    font-size: var(--text-size);
  }
  .post-actions {
    gap: 29px;
    margin-top: 12px;
  }
  .thread-link {
    font-size: var(--text-size);
  }
  .thread-link > span {
    font-size: var(--text-size);
    flex-basis: 100%;
    margin-left: 23px;
  }
  .demo-label {
    padding: 7px 20px;
    font-size: var(--text-size);
  }
  .form-page {
    padding: 28px 22px;
  }
  .form-page h2 {
    font-size: 23px;
  }
  .form-page > .muted {
    font-size: var(--text-size);
  }
  .publish-footer {
    flex-wrap: wrap;
    gap: 18px;
  }
  .publish-footer > .button {
    width: 100%;
  }
  .auth-page {
    padding: 42px 28px;
  }
  .auth-page h2 {
    font-size: 29px;
  }
  .auth-page .eyebrow {
    font-size: var(--text-size);
  }
  .reply-form {
    padding: 0 20px 20px;
    gap: 10px;
  }
  .section-heading {
    padding: 23px 20px;
  }
  .comment {
    padding: 20px;
  }
  .profile-cover {
    height: 115px;
  }
  .profile-cover > span {
    font-size: var(--text-size);
  }
  .profile-cover i {
    font-size: 110px;
    top: -6px;
  }
  .profile-stats {
    font-size: var(--text-size);
    gap: 10px;
  }
  .profile-header > h2,
  .profile-header > .muted,
  .profile-header > p,
  .profile-stats {
    margin-left: 22px;
    margin-right: 22px;
  }
  .profile-stats > span:last-child {
    display: none;
  }
  .extension-page > h2 {
    font-size: 31px;
  }
  .extension-features {
    gap: 16px;
    font-size: var(--text-size);
  }
  .audio-player-art {
    padding: 15px 12px;
    gap: 10px;
  }
  .audio-art {
    width: 60px;
    height: 69px;
  }
  .audio-player-art strong {
    font-size: var(--text-size);
  }
  .toast {
    bottom: 24px;
    width: max-content;
    max-width: 90%;
    text-align: center;
  }
  .clip-editor {
    padding: 15px;
  }
  .claim-context {
    font-size: var(--text-size);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
[hidden] {
  display: none !important;
}

/* Attribution and dispute actions remain readable and easy to reach. */
.source-footer {
  align-items: center;
  padding: 8px 12px;
  font-size: var(--text-size);
}
.source-footer .claim-link {
  border: 1px solid #bf997f;
  border-radius: 5px;
  padding: 7px 9px;
  color: #a06545;
  background: #fff9f3;
  min-height: 30px;
}
.source-footer .claim-link:hover {
  border-color: #ac8469;
  color: #895438;
  background: #f8ede2;
}
.source-footer .original-link {
  min-height: 30px;
}
.source-domain,
.source-title > span {
  color: #7c8571;
}
.post-action {
  min-height: 34px;
  min-width: 32px;
}
.source-heading .clip-label {
  color: #7c856e;
}
.field-hint {
  color: #788866;
}
.form-page > .muted {
  color: #78836c;
}
