:root {
  color-scheme: dark;
  --bg: #0b0f17;
  --bg-soft: #111722;
  --panel: #161d29;
  --panel-2: #1c2534;
  --panel-3: #223044;
  --line: rgba(148, 163, 184, .19);
  --line-strong: rgba(249, 115, 22, .58);
  --text: #f7fbff;
  --muted: #a5b2c4;
  --muted-2: #778397;
  --blue: #f97316;
  --cyan: #fde68a;
  --green: #fbbf24;
  --pink: #fb7185;
  --violet: #f43f5e;
  --amber: #f59e0b;
  --danger: #fb7185;
  --radius: 8px;
  --shadow: 0 18px 54px rgba(0, 0, 0, .36);
  --max: 1280px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background: #202a38;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #2d3746;
  background: #151d29;
}

.nav,
.category-rail-inner,
.footer-inner,
.page {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  letter-spacing: .1px;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #07111a;
  font-weight: 950;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, var(--blue), var(--green) 52%, var(--pink));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .16), 0 10px 24px rgba(249, 115, 22, .26);
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
  background: #070b12;
}

.brand span:last-child {
  font-size: 1.14rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-link,
.nav-button,
.button,
.chip,
.tab-button,
.icon-button {
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  min-height: 38px;
  padding: 8px 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.nav-link:hover,
.nav-button:hover,
.nav-link.active,
.button:hover,
.chip:hover,
.tab-button:hover,
.icon-button:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, .24);
  background: rgba(255, 255, 255, .055);
}

.button:hover,
.chip:hover,
.tab-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.nav-button.primary,
.button.primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #fbbf24 58%, #fb7185);
  box-shadow: none;
}

.button.pink {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
}

.button.danger {
  border-color: rgba(251, 113, 133, .45);
  color: #fecdd3;
  background: rgba(251, 113, 133, .1);
}

.button[disabled],
.button.disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.mobile-toggle {
  display: none;
}

.category-rail {
  border-top: 1px solid #2a3443;
  background: #182130;
}

.category-rail-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-rail-inner::-webkit-scrollbar {
  display: none;
}

.category-rail a {
  color: #c3ccd8;
  white-space: nowrap;
  font-weight: 800;
  font-size: .9rem;
}

.category-rail a:hover {
  color: var(--text);
}

.page {
  padding: 18px 0 68px;
  flex: 1;
}

.eyebrow,
.shelf-kicker {
  margin: 0 0 11px;
  color: #ffe8bb;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .12em;
  font-size: .72rem;
}

.marketplace-banner h1,
.section-title,
.resource-title {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.row-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.marketplace-hero {
  padding: 20px 0 40px;
}

.marketplace-banner {
  position: relative;
  min-height: 350px;
  padding: 48px 64px 34px;
  border-radius: 4px;
  overflow: visible;
  background:
    linear-gradient(90deg, #d85b16, #f59e0b 58%, #fb7185),
    #f97316;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .12) inset, 0 16px 42px rgba(0, 0, 0, .24);
}

.marketplace-banner:after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 36%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08));
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.marketplace-banner h1 {
  max-width: 780px;
  font-size: 2.25rem;
}

.marketplace-banner p {
  margin: 12px 0 0;
  max-width: 760px;
  color: #fff7ed;
  font-size: 1rem;
}

.banner-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: #ffffff;
  font-weight: 850;
  font-size: .92rem;
}

.banner-metrics span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.market-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px auto;
  gap: 8px;
  max-width: 880px;
  margin-top: 22px;
}

.market-search input,
.market-search select,
.market-search button {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  outline: 0;
}

.market-search input,
.market-search select {
  color: var(--text);
  background: #0e1622;
}

.market-search input {
  padding: 0 14px;
}

.market-search select {
  padding: 0 10px;
}

.market-search button {
  padding: 0 18px;
  color: #fff;
  background: #b45309;
  font-weight: 850;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  color: #fff3d4;
  font-size: .92rem;
}

.popular-searches a {
  color: #ffffff;
}

.popular-searches a:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(255, 255, 255, .5);
}

.category-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 58px auto -76px;
  padding: 10px;
  border: 1px solid rgba(13, 22, 34, .72);
  border-radius: 4px;
  background: rgba(13, 22, 34, .68);
}

.category-poster {
  position: relative;
  min-height: 126px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(160deg, rgba(249, 115, 22, .38), rgba(251, 191, 36, .08)),
    #2a211c;
}

.category-poster:nth-child(2) { background-color: #32231b; }
.category-poster:nth-child(3) { background-color: #3a241b; }
.category-poster:nth-child(4) { background-color: #3d2a1a; }
.category-poster:nth-child(5) { background-color: #33231f; }
.category-poster:nth-child(6) { background-color: #2b211d; }

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, .52));
}

.poster-label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 950;
  font-size: 1.12rem;
  color: #fff;
}

.count-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin-top: 24px;
}

.count-row.compact {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.count-pill {
  min-height: 58px;
  min-width: 124px;
  padding: 9px 12px;
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.count-pill strong {
  display: block;
  font-size: 1.35rem;
}

.count-pill span {
  color: var(--muted);
  font-size: .85rem;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.2rem;
}

.section-copy {
  margin: 8px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.resource-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
    rgba(18, 25, 38, .86);
}

.panel {
  padding: 18px;
}

.benefit-card,
.category-card,
.stat-card {
  padding: 16px;
  min-height: 124px;
}

.benefit-card h3,
.category-card strong,
.resource-card h3 {
  margin: 0;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  overflow: hidden;
}

.category-card:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green), transparent);
  opacity: .7;
}

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #061019;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

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

.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 312px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .18);
}

.resource-card:hover {
  border-color: rgba(249, 115, 22, .68);
  transform: translateY(-1px);
}

.resource-cover {
  aspect-ratio: 16 / 9;
  background: #0f1623;
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

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

.resource-cover-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 80% 0, rgba(249, 115, 22, .42), transparent 42%),
    linear-gradient(135deg, rgba(251, 191, 36, .16), rgba(251, 113, 133, .13)),
    #101827;
}

.resource-cover-placeholder.large {
  min-height: 100%;
}

.resource-cover-placeholder span {
  color: #b9c7da;
  font-size: .82rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}

.resource-cover-placeholder strong {
  font-size: 3.5rem;
  line-height: .86;
  letter-spacing: 0;
}

.resource-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.resource-meta,
.muted,
.fine-print {
  color: var(--muted);
}

.resource-meta,
.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.resource-meta {
  margin-top: auto;
  justify-content: space-between;
  font-size: .86rem;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 4px 7px;
  font-size: .78rem;
  color: #d8e7fb;
  background: rgba(255, 255, 255, .04);
}

.badge.price {
  border-color: rgba(251, 191, 36, .48);
  color: #fde68a;
  background: rgba(251, 191, 36, .08);
}

.badge.featured {
  border-color: rgba(230, 59, 139, .55);
  color: #fbcfe8;
  background: rgba(230, 59, 139, .07);
}

.chip {
  min-height: 34px;
  padding: 7px 10px;
  border-color: rgba(148, 163, 184, .22);
  background: rgba(255, 255, 255, .035);
}

.chip.small {
  min-height: 30px;
  font-size: .84rem;
}

.empty,
.empty-shelf {
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.empty {
  padding: 28px;
  color: var(--muted);
}

.empty-shelf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}

.empty-shelf-copy h3 {
  margin: 0;
  font-size: 1.45rem;
}

.empty-shelf-copy p {
  color: var(--muted);
  max-width: 660px;
}

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

.empty-slots span {
  min-height: 130px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, rgba(249, 115, 22, .18), rgba(251, 113, 133, .07));
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid rgba(249, 115, 22, .42);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, .14), rgba(251, 113, 133, .05)),
    rgba(18, 25, 38, .74);
}

.market-layout,
.resource-layout {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.resource-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.filters,
.purchase-box {
  position: sticky;
  top: 156px;
  display: grid;
  gap: 12px;
}

.market-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
}

.market-toolbar > div {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: var(--radius);
  color: var(--text);
  background: #0f1623;
  padding: 11px 12px;
  outline: none;
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .16);
}

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

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

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

.field label,
.check-row {
  color: #d7e5f6;
  font-weight: 850;
  font-size: .9rem;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.tab-button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.tab-button.active {
  color: var(--cyan);
  border-color: var(--line);
  border-bottom-color: var(--panel);
  background: rgba(249, 115, 22, .13);
}

.gallery-main {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f1623;
}

.gallery-main img,
.showcase-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.showcase-strip button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, .04);
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 1.1rem;
}

.price-line strong {
  font-size: 1.6rem;
}

.rich-text {
  color: #dbeafe;
}

.rich-text h2,
.rich-text h3 {
  margin: 1.2em 0 .4em;
}

.rich-text p {
  color: #c7d5e7;
}

.rich-text a {
  color: var(--cyan);
  text-decoration: underline;
}

.rich-text ul,
.rich-text ol {
  color: #c7d5e7;
  padding-left: 22px;
}

.rich-text blockquote {
  margin: 14px 0;
  padding: 10px 14px;
  border-left: 3px solid var(--cyan);
  background: rgba(249, 115, 22, .11);
  color: #dbeafe;
}

.rich-text hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}

.rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.rich-text td {
  border: 1px solid var(--line);
  padding: 9px 10px;
}

.rich-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 12px 0;
}

.rich-text pre,
.rich-text code {
  background: rgba(0, 0, 0, .32);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.rich-text pre {
  padding: 12px;
  overflow: auto;
}

.notice {
  border: 1px solid rgba(249, 115, 22, .52);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(249, 115, 22, .11);
  color: #fff7ed;
}

.notice.danger {
  border-color: rgba(251, 113, 133, .45);
  background: rgba(251, 113, 133, .08);
  color: #ffe4e6;
}

.table-wrap {
  overflow: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
}

.table th {
  color: #cfe6fb;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 420px;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: #101827;
  color: var(--text);
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 11, 18, .84);
}

.footer-inner {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer a {
  color: #dcecff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none !important;
}

.seo-fallback {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 60px;
}

.seo-fallback h1,
.seo-fallback h2 {
  margin: 0 0 10px;
}

.seo-fallback p,
.seo-fallback li {
  color: var(--muted);
}

.seo-fallback section {
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .market-hero,
  .empty-shelf {
    grid-template-columns: 1fr;
  }

  .marketplace-banner {
    padding: 42px 42px 34px;
  }

  .category-showcase {
    margin-bottom: -66px;
  }

  .filters,
  .purchase-box {
    top: 132px;
  }
}

@media (max-width: 940px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .marketplace-banner h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav {
    min-height: 66px;
    grid-template-columns: auto 1fr auto;
  }

  .mobile-toggle {
    justify-self: end;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: 116px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0f1623;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .market-layout,
  .resource-layout,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .filters,
  .purchase-box {
    position: static;
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-search {
    grid-template-columns: minmax(0, 1fr) 150px auto;
  }

  .category-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav,
  .category-rail-inner,
  .footer-inner,
  .page {
    width: min(100% - 20px, var(--max));
  }

  .marketplace-banner {
    padding: 28px 18px 22px;
  }

  .marketplace-banner h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .resource-cover-placeholder strong {
    font-size: 2.7rem;
  }

  .market-search,
  .resource-grid,
  .form-grid,
  .category-showcase,
  .empty-slots {
    grid-template-columns: 1fr;
  }

  .section-head,
  .market-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .row-actions .button,
  .form-actions .button,
  .market-search button {
    width: 100%;
  }

  .category-showcase {
    margin: 30px 0 0;
  }

  .category-poster {
    min-height: 72px;
  }
}

.field-help {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.multi-select {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0f1623;
}

.multi-select summary {
  min-height: 42px;
  padding: 11px 12px;
  cursor: pointer;
  color: var(--text);
  list-style: none;
}

.multi-select summary::-webkit-details-marker {
  display: none;
}

.multi-select summary::after {
  content: "?";
  float: right;
  color: var(--muted);
}

.multi-select[open] summary::after {
  content: "?";
}

.multi-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  max-height: 230px;
  overflow: auto;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
}

.multi-options .check-row {
  font-size: .84rem;
  font-weight: 750;
}

.admin-subsection {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(15, 22, 35, .55);
}

.admin-subsection h3 {
  margin: 0;
}

.textarea.compact {
  min-height: 92px;
}

.textarea.tall {
  min-height: 210px;
}

.policy-page {
  max-width: 980px;
  margin: 0 auto;
}

.policy-updated {
  margin: 10px 0 20px;
  color: var(--muted);
  font-weight: 800;
}

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

.policy-section h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.policy-section p {
  margin: 8px 0;
}

.policy-section ul {
  margin: 10px 0 0;
}
