:root {
  --bg: #ffffff;
  --fg: #1d1b18;
  --link: #254f7a;
  --muted: #68635c;
  --border: #e6dfd2;
  --font: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --brand-font: "Baskerville", "Times New Roman", serif;
  --headline-font: "Baskerville", "Times New Roman", serif;
  --headline-size: 20px;
  --brand-size: 32px;
  --base: 18px;
  --line: 1.36;
  --maxw: 920px;
  --masthead-w-desktop: 740px;
  --masthead-w-mobile: 470px;
  --masthead-box-h-desktop: 122px;
  --masthead-box-h-mobile: 84px;
  --masthead-zoom-desktop: 2.3;
  --masthead-zoom-mobile: 2.2;
}

html {
  scrollbar-gutter: stable both-edges;
  overflow-y: scroll;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: var(--font);
  font-size: var(--base);
  line-height: var(--line);
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-height: 150px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(4px);
  background: color-mix(in srgb, var(--bg) 80%, white);
  transition: min-height 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.public-top {
  min-height: 238px;
  padding-bottom: 78px;
  border-bottom: 0;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--masthead-w-desktop), 92vw);
  height: var(--masthead-box-h-desktop);
  overflow: hidden;
  border-radius: 10px;
  text-align: center;
  transition: width 220ms ease, height 220ms ease;
}

.brand img,
.brand svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--masthead-zoom-desktop));
  transform-origin: center 46%;
}

.brand picture {
  display: block;
  width: 100%;
  height: 100%;
}

.meta {
  font-size: 0.9em;
  color: var(--muted);
  margin-left: auto;
  min-width: 26ch;
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
  transition: opacity 160ms ease;
}

.value-prop-row {
  position: absolute;
  right: 18px;
  bottom: 24px;
  left: 18px;
  display: grid;
  grid-template-columns: 58px minmax(0, 78ch) 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: var(--maxw);
  min-height: 64px;
  margin: 0 auto;
  padding: 6px 0 8px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: min-height 220ms ease, padding 220ms ease;
}

.value-prop {
  margin: 0;
  font-size: 0.92em;
  color: var(--muted);
  font-weight: 400;
  text-align: center;
  transition: font-size 220ms ease;
}

.category-key {
  position: absolute;
  right: 18px;
  bottom: 4px;
  left: 18px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 5px;
  max-width: 100%;
  margin-top: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-key::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 1px 6px;
  border: 1px solid color-mix(in srgb, currentColor 44%, var(--border));
  border-left-width: 4px;
  border-radius: 4px;
  background: color-mix(in srgb, currentColor 12%, var(--bg));
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.54em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-corruption {
  color: #ad5263;
}

.item-category-corruption {
  color: #ad5263;
}

.category-oligarchy {
  color: #9d762a;
}

.item-category-oligarchy {
  color: #9d762a;
}

.category-overreach {
  color: #4f78a6;
}

.item-category-overreach {
  color: #4f78a6;
}

.category-decay {
  color: #697b55;
}

.item-category-decay {
  color: #697b55;
}

.category-tech {
  color: #408f88;
}

.item-category-tech {
  color: #408f88;
}

.category-injustice {
  color: #8b659d;
}

.item-category-injustice {
  color: #8b659d;
}

.value-prop-ornament {
  display: block;
  width: 100%;
  height: 1.15em;
  object-fit: contain;
  opacity: 0.76;
  transition: height 220ms ease;
}

.value-prop-ornament-right {
  transform: scaleX(-1);
}

.public-top.is-compact {
  min-height: 128px;
  padding-bottom: 60px;
  box-shadow: 0 3px 12px rgba(20, 16, 10, 0.08);
}

.public-top.is-compact .brand {
  width: min(430px, 58vw);
  height: 66px;
}

.public-top.is-compact .meta {
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 2;
  width: auto;
  min-width: 0;
  opacity: 1;
  font-size: 0.72em;
}

.public-top.is-compact .value-prop-row {
  min-height: 34px;
  padding: 3px 0 5px;
  bottom: 25px;
}

.public-top.is-compact .category-key {
  right: 12px;
  bottom: 5px;
  left: 12px;
  justify-content: center;
  gap: 4px;
  opacity: 0.86;
}

.public-top.is-compact .value-prop {
  font-size: 0.72em;
}

.public-top.is-compact .category-pill {
  min-height: 15px;
  padding: 0 5px;
  border-left-width: 3px;
  font-size: 0.44em;
}

.public-top.is-compact .value-prop-ornament {
  height: 0.9em;
}

#updated {
  display: inline-block;
  min-width: 20ch;
}

.adminlink {
  margin-left: 12px;
}

main {
  max-width: var(--maxw);
  margin: 18px auto 60px;
  padding: 0 18px;
}

.public-main {
  margin-top: 4px;
}

.block {
  margin: 0 0 24px;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.03em;
  font-family: var(--headline-font);
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 8px 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

#latest a {
  font-family: var(--headline-font);
  font-size: var(--headline-size);
}

#latest {
  min-height: clamp(620px, 72vh, 960px);
}

a:hover {
  text-decoration: underline;
}

.src {
  color: var(--muted);
  font-size: 0.9em;
}

.item-category {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  margin-left: 7px;
  padding: 1px 6px;
  border: 1px solid color-mix(in srgb, currentColor 38%, var(--border));
  border-left: 4px solid currentColor;
  border-radius: 4px;
  background: color-mix(in srgb, currentColor 10%, var(--bg));
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.56em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
  vertical-align: 0.12em;
  white-space: nowrap;
}

.item-category.item-category-corruption {
  color: #ad5263;
}

.item-category.item-category-oligarchy {
  color: #9d762a;
}

.item-category.item-category-overreach {
  color: #4f78a6;
}

.item-category.item-category-decay {
  color: #697b55;
}

.item-category.item-category-tech {
  color: #408f88;
}

.item-category.item-category-injustice {
  color: #8b659d;
}

.hidden {
  display: none;
}

.placeholder-row {
  list-style: none;
  margin: 8px 0 8px -20px;
  color: var(--muted);
  font-size: 0.92em;
}

.row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.pin-days-input {
  min-width: 88px;
  width: 88px;
  flex: 0 0 88px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.analytics-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.analytics-heading h2 {
  margin: 0;
}

.analytics-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.analytics-stat {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: color-mix(in srgb, var(--bg) 94%, white);
}

.analytics-stat strong,
.analytics-stat span {
  display: block;
}

.analytics-stat strong {
  margin-bottom: 3px;
  font-family: var(--headline-font);
  font-size: 1.3em;
  font-variant-numeric: tabular-nums;
}

.analytics-stat span {
  color: var(--muted);
  font-size: 0.8em;
}

.analytics-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr) minmax(180px, 0.7fr);
  gap: 18px;
}

.analytics-panels h3 {
  margin: 0 0 8px;
  font-size: 0.92em;
}

.analytics-table-wrap {
  overflow-x: auto;
}

.analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78em;
  font-variant-numeric: tabular-nums;
}

.analytics-table th,
.analytics-table td {
  padding: 5px 7px;
  border-bottom: 1px solid var(--border);
  text-align: right;
  white-space: nowrap;
}

.analytics-table th:first-child,
.analytics-table td:first-child {
  text-align: left;
}

.analytics-ranking {
  margin: 0;
  padding-left: 22px;
  font-size: 0.82em;
}

.analytics-ranking li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 8px;
  margin: 0;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.analytics-ranking li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.analytics-ranking li strong {
  font-variant-numeric: tabular-nums;
}

.analytics-ranking li small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.theme-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9em;
  color: var(--muted);
}

.font-sample {
  margin-top: 4px;
  padding: 6px 8px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--fg);
  background: #fff;
  line-height: 1.2;
}

.color-control {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  align-items: center;
}

input,
select,
textarea {
  min-width: 240px;
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 1em;
}

textarea {
  display: block;
  width: 100%;
  resize: vertical;
  line-height: 1.35;
}

input[type="color"] {
  min-width: 52px;
  width: 52px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.theme-grid input,
.theme-grid select {
  min-width: 0;
}

input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type="color"]::-webkit-color-swatch {
  border: 1px solid var(--border);
  border-radius: 8px;
}

input[type="color"]::-moz-color-swatch {
  border: 1px solid var(--border);
  border-radius: 8px;
}

#themeBgHex,
#themeTextHex,
#themeLinkHex,
#themeMutedHex,
#themeBorderHex {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

button {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #efebe2;
  color: var(--fg);
  font-family: inherit;
  cursor: pointer;
}

button:hover {
  background: #e7e1d6;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

button.is-busy {
  background: #d8cfbe;
  border-color: #b8aa90;
  box-shadow: inset 0 0 0 1px #b8aa90;
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin: 10px 0;
  background: #fffdf8;
}

.card.admin-card {
  transition: background-color 120ms ease, border-color 120ms ease;
}

.card.card-pinned {
  border-color: #d2c3a4;
  box-shadow: inset 0 0 0 1px #e8dcc4;
}

.card.card-hidden {
  background: #f3eee5;
  border-style: dashed;
}

.card.card-hidden a {
  opacity: 0.8;
}

.pin-panel-card {
  padding: 9px 10px;
}

.status-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.status-badge.badge-approved {
  background: #e4f0e4;
  color: #224a22;
}

.status-badge.badge-hidden {
  background: #f1dfdf;
  color: #7b2222;
}

.status-badge.badge-queued {
  background: #ece6db;
  color: #5d5140;
}

.status-badge.badge-pinned {
  background: #efe5cf;
  color: #5f4619;
}

.status-badge.badge-campaign {
  background: #e8e4f2;
  color: #3f3460;
}

.status-badge.badge-style {
  background: #dcecf7;
  color: #1f4860;
}

.status-badge.badge-category {
  border-left: 4px solid currentColor;
  background: #ede8df;
  color: #4f4941;
}

.status-badge.badge-uncategorized {
  background: #f3e1df;
  color: #7b322c;
}

.small,
.hint {
  color: var(--muted);
  font-size: 0.88em;
  margin-top: 6px;
}

.headline-style-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  align-items: flex-start;
  gap: 8px 12px;
}

.headline-style-row.form-style-row {
  margin-top: 6px;
  padding-top: 0;
  border-top: 0;
}

.headline-style-row.form-style-row .headline-style-label {
  min-width: 126px;
}

.headline-style-row.form-style-row .headline-style-controls {
  flex: 1 1 100%;
  min-width: 0;
}

.headline-style-label {
  min-width: 112px;
  font-weight: 600;
  padding-top: 4px;
}

.headline-style-controls {
  flex: 1 1 740px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.headline-style-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 8px 12px;
  align-items: start;
}

.headline-style-settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 12px;
  align-items: end;
}

.headline-style-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.small-btn {
  padding: 5px 8px;
  font-size: 0.8em;
}

.headline-style-live-preview {
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.headline-style-preview-link {
  text-decoration: none;
  pointer-events: none;
}

.headline-style-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.headline-style-color-control {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.headline-style-row input,
.headline-style-row select {
  min-width: 0;
}

.headline-style-palette {
  display: grid;
  grid-template-columns: repeat(6, 20px);
  gap: 4px;
  max-width: none;
}

.headline-style-default-btn {
  padding: 4px 9px;
  line-height: 1;
  font-size: 0.78em;
  border-radius: 999px;
  background: #f4efe5;
  border: 1px solid #b8aa90;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.headline-style-default-btn.is-active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.headline-style-default-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid #9f9482;
  border-radius: 4px;
  display: inline-block;
}

.headline-style-chip {
  min-width: 20px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid #9f9482;
  border-radius: 5px;
  cursor: pointer;
}

.headline-style-chip:hover {
  filter: brightness(0.96);
}

.headline-style-chip.is-active {
  border: 2px solid #111;
  box-shadow: 0 0 0 1px #fff inset;
}

.headline-style-color-name {
  margin-top: 2px;
}

.headline-prefix-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.headline-prefix-chip {
  padding: 3px 8px;
  font-size: 0.78em;
  line-height: 1;
  background: #f1ebde;
  border: 1px solid #b8aa90;
  border-radius: 999px;
}

.headline-prefix-chip.is-active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.headline-prefix {
  white-space: pre;
}

.headline-inline-source {
  color: var(--muted);
  font-size: 0.9em;
}

.headline-style-swatch {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.headline-style-font {
  min-width: 160px;
  max-width: 260px;
}

.native-font-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.font-picker {
  position: relative;
  width: min(100%, 280px);
}

.font-picker-button {
  width: 100%;
  min-height: 44px;
  text-align: left;
  padding-right: 34px;
  position: relative;
  font-size: 1.2em;
}

.font-picker-button::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font);
  color: var(--muted);
}

.font-picker-menu {
  display: none;
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  padding: 4px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 24px rgba(29, 27, 24, 0.14);
}

.font-picker.is-open .font-picker-menu {
  display: block;
}

.font-picker-option {
  width: 100%;
  display: block;
  text-align: left;
  margin: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--fg);
  font-size: 1.2em;
  line-height: 1.3;
  padding-top: 11px;
  padding-bottom: 11px;
}

.font-picker-option:hover,
.font-picker-option:focus,
.font-picker-option.is-selected {
  background: #f4efe4;
}

.headline-style-font-preview {
  min-width: 0;
  font-size: 0.8em;
  color: var(--fg);
  padding: 2px 6px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  background: #fff;
}

.headline-style-toggle-group {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.86em;
  color: var(--muted);
  margin-right: auto;
}

.headline-style-toggle-group label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-banner {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f8f3e8;
  color: #534d45;
  font-size: 0.95em;
  font-weight: 600;
}

.status-banner.status-info {
  border-color: #d5c8ae;
  background: #f5efe1;
  color: #5a5146;
}

.status-banner.status-success {
  border-color: #b9d7bc;
  background: #e9f4ea;
  color: #1f5528;
}

.status-banner.status-error {
  border-color: #d8b0b0;
  background: #f8e9e9;
  color: #7f2525;
}

.theme-preview {
  margin-top: 14px;
  border-color: var(--border);
  background: var(--bg);
}

.theme-preview-head {
  margin: 0 0 8px;
  font-family: var(--headline-font);
  color: var(--fg);
}

.theme-preview-brand {
  margin: 0 0 8px;
  font-family: var(--brand-font);
  font-size: var(--brand-size);
  line-height: 1.1;
  color: var(--fg);
}

.theme-preview-body {
  margin: 0 0 8px;
  color: var(--fg);
}

.theme-preview-muted {
  color: var(--muted);
}

.analytics-badge {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 86%, white);
  color: var(--muted);
  font-size: 0.78em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(20, 16, 10, 0.08);
  backdrop-filter: blur(2px);
  pointer-events: none;
}

.site-footer {
  max-width: var(--maxw);
  margin: 26px auto 72px;
  padding: 14px 18px 0;
  border-top: 1px solid var(--border);
}

.disclaimer {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9em;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.9em;
}

.legal-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page {
  max-width: 860px;
  margin: 16px auto 54px;
  padding: 0 18px;
}

.page h1 {
  margin: 0 0 10px;
  font-size: 1.55em;
  font-family: var(--headline-font);
}

.page h2 {
  margin: 18px 0 8px;
}

.page p,
.page li {
  color: var(--fg);
}

.page ul {
  margin: 0 0 12px;
}

.page .back-home {
  margin: 0 0 12px;
}

@media (max-width: 700px) {
  :root {
    --base: 17px;
  }

  .top {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 112px;
    backdrop-filter: none;
    background: var(--bg);
  }

  .public-top {
    min-height: 214px;
    padding-bottom: 48px;
  }

  .public-top:not(.is-compact) .meta {
    position: absolute;
    top: auto;
    right: 8px;
    bottom: 5px;
    left: 8px;
    width: auto;
    text-align: center;
  }

  .public-top:not(.is-compact) .brand {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
  }

  .public-top:not(.is-compact) .value-prop-row {
    bottom: 46px;
  }

  .slogan {
    min-width: 0;
    width: 100%;
    margin-right: 0;
    text-align: center;
    font-size: 0.8em;
  }

  .meta {
    min-width: 0;
    width: 100%;
    text-align: center;
    font-size: 0.84em;
  }

  .value-prop-row {
    grid-template-columns: 34px minmax(0, 58ch) 34px;
    gap: 4px;
    min-height: 70px;
  }

  .value-prop-ornament {
    height: 1em;
  }

  .category-key {
    right: 12px;
    bottom: 32px;
    left: 12px;
    justify-content: flex-start;
    gap: 4px;
    margin-top: 0;
  }

  .category-pill {
    min-height: 18px;
    padding: 1px 5px;
    font-size: 0.5em;
  }

  .analytics-panels {
    grid-template-columns: 1fr;
  }

  #updated {
    min-width: 0;
  }

  .brand {
    position: static;
    transform: none;
    width: min(var(--masthead-w-mobile), 86vw);
    height: var(--masthead-box-h-mobile);
  }

  .public-top.is-compact {
    min-height: 128px;
    padding: 5px 12px 60px;
  }

  .public-top.is-compact .brand {
    position: absolute;
    top: 2px;
    left: 8px;
    transform: none;
    width: min(220px, 54vw);
    height: 62px;
  }

  .public-top.is-compact .meta {
    position: absolute;
    top: 5px;
    right: 7px;
    width: auto;
    font-size: 0.56em;
    line-height: 1.1;
  }

  .public-top.is-compact .value-prop-row {
    grid-template-columns: 34px minmax(0, 58ch) 34px;
    gap: 3px;
    min-height: 34px;
    bottom: 25px;
  }

  .public-top.is-compact .value-prop {
    font-size: 0.68em;
    line-height: 1.15;
  }

  .brand img,
  .brand svg {
    transform: scale(var(--masthead-zoom-mobile));
    transform-origin: center 46%;
  }

  #latest {
    min-height: 320px;
  }

  .analytics-badge {
    right: 8px;
    bottom: 8px;
    font-size: 0.72em;
  }
}
