/* [project]/src/app/inbox/inbox.css [app-client] (css) */
.inbox-wrap {
  padding-top: 48px;
  padding-bottom: 80px;
}

.inbox-wrap > h1 {
  font-family: var(--font-display), serif;
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.inbox-toolbar {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  display: flex;
}

.inbox-layout {
  background: #141719;
  border: 1px solid #c7ab7140;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  min-height: 500px;
  display: grid;
}

.inbox-threads {
  border-right: 1px solid #c7ab7140;
  padding: 24px;
}

.inbox-threads h2 {
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  display: flex;
}

.inbox-threads ul {
  padding: 0;
  list-style: none;
}

.inbox-threads li {
  margin: 10px 0;
}

.inbox-threads button {
  text-align: left;
  color: #e7e0d3;
  cursor: pointer;
  overflow-wrap: anywhere;
  background: #202424;
  border: 1px solid #0000;
  gap: 7px;
  width: 100%;
  padding: 16px;
  display: grid;
}

.inbox-threads button[aria-pressed="true"] {
  background: #333027;
  border-color: #c7ab71;
}

.inbox-threads small {
  color: #e8c884;
  gap: 7px;
  display: flex;
}

.inbox-threads span, .inbox-message time {
  color: #b9b7b1;
  font-size: .82rem;
}

.inbox-conversation {
  min-width: 0;
  padding: 32px;
}

.inbox-conversation h2 {
  margin: 8px 0;
}

.inbox-messages {
  gap: 16px;
  max-height: 550px;
  margin: 28px 0;
  padding: 4px;
  display: grid;
  overflow: auto;
}

.inbox-message {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #222827;
  border: 1px solid #c7ab7125;
  max-width: 90%;
  padding: 18px;
}

.inbox-message.mine {
  background: #302c23;
  justify-self: end;
}

.inbox-message p {
  margin: 10px 0;
}

.inbox-compose {
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
}

.inbox-compose button {
  justify-self: start;
}

.inbox-empty {
  text-align: center;
  color: #c7c0b4;
  place-content: center;
  min-height: 350px;
  display: grid;
}

.inbox-empty svg {
  color: #c7ab71;
  margin: auto;
}

.account-tools {
  align-items: center;
  gap: 6px;
  display: flex;
}

.account-tool {
  color: #eee2cb;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 40px;
  display: flex;
  position: relative;
}

.account-tool b {
  color: #151717;
  text-align: center;
  background: #cfb075;
  border-radius: 8px;
  min-width: 16px;
  font-size: 10px;
  line-height: 16px;
  position: absolute;
  top: 0;
  right: 0;
}

.account-tools .account-chip {
  margin-left: 4px;
}

@media (max-width: 650px) {
  .inbox-layout {
    grid-template-columns: 1fr;
  }

  .inbox-threads {
    border-bottom: 1px solid #c7ab7140;
    border-right: 0;
  }

  .inbox-threads ul {
    max-height: 220px;
    overflow: auto;
  }

  .inbox-conversation {
    padding: 20px;
  }

  .inbox-message {
    max-width: 100%;
  }

  .inbox-toolbar {
    align-items: start;
  }

  .account-tools {
    gap: 0;
  }

  .account-tool {
    width: 30px;
  }
}

.notification-root {
  position: relative;
}

.notification-root > .account-tool {
  cursor: pointer;
  background: none;
  border: 0;
}

.notification-panel {
  color: #e7e0d3;
  text-align: left;
  z-index: 100;
  background: #171d1e;
  border: 1px solid #bda16b70;
  width: min(360px, 100vw - 24px);
  position: absolute;
  top: calc(100% + 12px);
  right: -45px;
  box-shadow: 0 12px 35px #0007;
}

.notification-panel header {
  border-bottom: 1px solid #bda16b30;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  display: flex;
}

.notification-panel h2 {
  margin: 0;
  font-size: 1.05rem;
}

.notification-panel button {
  color: #e7e0d3;
  cursor: pointer;
  background: none;
  border: 0;
  min-height: 36px;
}

.notification-panel ul {
  max-height: min(430px, 55dvh);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
}

.notification-panel li + li {
  border-top: 1px solid #bda16b25;
}

.notification-panel li a {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  padding: 11px 16px;
  display: grid;
}

.notification-panel li a strong {
  font-size: .93rem;
  line-height: 1.35;
}

.notification-panel li a time {
  white-space: nowrap;
  grid-area: 1 / 2;
}

.notification-panel li a span {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  grid-column: 1 / -1;
  font-size: .86rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.notification-panel li a:hover {
  background: #30322b;
}

.notification-panel li span {
  color: #cac4b7;
}

.note-who {
  color: #e3c98c;
  font-weight: 600;
}

:is(.notification-panel, .note-history) :is([data-kind="reply"], [data-kind="message"]) {
  color: #8fc4e4;
}

:is(.notification-panel, .note-history) :is([data-kind="comment"], [data-kind="application"]) {
  color: #a9d5b4;
}

:is(.notification-panel, .note-history) :is([data-kind="review"], [data-kind="status"]) {
  color: #e8b98f;
}

:is(.notification-panel, .note-history) [data-kind="staff"] {
  color: #d7a8c8;
}

:is(.notification-panel, .note-history) [data-kind="news"] {
  color: #9eaf84;
}

.notification-panel time, .notification-panel small {
  color: #bcb9b1;
  font-size: .78rem;
}

.notification-panel footer {
  border-top: 1px solid #bda16b30;
  padding: 12px 16px;
}

.notification-empty {
  text-align: center;
  padding: 32px 18px;
}

.notification-empty svg {
  color: #c7ab71;
}

.notification-empty p {
  margin: 12px 0 5px;
}

.notification-panel .notification-mark {
  border-top: 1px solid #bda16b30;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  display: flex;
}

.notification-panel [role="alert"] {
  padding: 12px 18px;
}

.notification-panel button:disabled {
  opacity: .6;
  cursor: wait;
}

@media (max-width: 650px) {
  .notification-panel {
    position: fixed;
    top: 80px;
    right: 12px;
  }
}

.notification-bell-icon {
  transform-origin: 50% 15%;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
}

.notification-bell:hover .notification-bell-icon {
  transform: rotate(-9deg);
}

.notification-bell[aria-expanded="true"] .notification-bell-icon {
  color: var(--gold);
  transform: rotate(0)scale(1.08);
}

.notification-bell[data-unread] .notification-bell-icon {
  animation: 5s ease-in-out 1s infinite bell-rock;
}

.notification-bell[data-unread]:hover .notification-bell-icon, .notification-bell[aria-expanded="true"] .notification-bell-icon {
  animation: none;
}

@keyframes bell-rock {
  0%, 88%, 100% {
    transform: rotate(0);
  }

  90% {
    transform: rotate(-13deg);
  }

  93% {
    transform: rotate(10deg);
  }

  96% {
    transform: rotate(-5deg);
  }
}

.account-tool b {
  animation: .4s cubic-bezier(.34, 1.56, .64, 1) badge-arrive;
}

@keyframes badge-arrive {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.notification-panel {
  transform-origin: 100% 0;
  animation: .22s cubic-bezier(.22, 1, .36, 1) notification-open;
}

@keyframes notification-open {
  from {
    opacity: 0;
    transform: translateY(-8px)scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notification-bell-icon, .account-tool b, .notification-panel {
    transition: none;
    animation: none;
  }

  .notification-bell:hover .notification-bell-icon, .notification-bell[aria-expanded="true"] .notification-bell-icon {
    transform: none;
  }
}

.notification-panel footer.notification-foot {
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  display: flex;
}

.notification-foot a {
  color: #e9ddc6;
  white-space: nowrap;
  border: 1px solid #bda16b30;
  border-radius: 7px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  font-size: 12.5px;
  display: inline-flex;
}

.notification-foot a:hover {
  color: #dabc80;
  border-color: #dabc80;
}

.notification-foot a:last-child {
  margin-left: auto;
  padding: 7px 9px;
}

.inbox-tabs {
  border-bottom: 1px solid #8c754338;
  flex-wrap: wrap;
  gap: 4px;
  margin: 18px 0 22px;
  display: flex;
}

.inbox-tabs a {
  color: #aeb5b5;
  border-bottom: 2px solid #0000;
  align-items: center;
  gap: 7px;
  margin-bottom: -1px;
  padding: 10px 14px;
  font-size: 14px;
  display: inline-flex;
}

.inbox-tabs a:hover {
  color: #e9ddc6;
}

.inbox-tabs a[aria-current="page"] {
  color: #dabc80;
  border-bottom-color: #dabc80;
}

.inbox-tabs .inbox-settings {
  margin-left: auto;
}

.note-history {
  gap: 22px;
  display: grid;
}

.note-history-head {
  color: #aeb5b5;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  display: flex;
}

.note-history h2 {
  color: #7f8a8c;
  font: 600 11px/1.4 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.note-history ul {
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.note-history a {
  color: #aeb5b5;
  border: 1px solid #ffffff0d;
  border-radius: 9px;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  display: grid;
}

.note-history a:hover {
  background: #dabc8008;
  border-color: #8c754370;
}

.note-history small {
  color: #7f8a8c;
  font-size: 11.5px;
  display: block;
}

.note-history strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  display: block;
}

.note-history time {
  color: #7f8a8c;
  font-size: 12px;
}

.note-dot {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.note-history .is-unread a {
  color: #e9ddc6;
  background: #dabc800a;
}

.note-history .is-unread .note-dot {
  background: #dabc80;
}

/* [project]/src/app/globals.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/latin-0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/latin-0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/latin-0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/latin-0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lora;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/latin-1.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lora;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/latin-2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lora;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/latin-2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lora;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/latin-2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #111512;
  --panel: #191e19;
  --panel2: #1c211b;
  --line: #30362b;
  --text: #e8e6dc;
  --muted: #9b9f91;
  --gold: #c6a563;
  --green: #9eaf84;
  --font-body: "Inter", Arial, sans-serif;
  --font-title: "Lora", Georgia, serif;
  --page-w: 1560px;
  --page-gutter: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  min-height: 100svh;
  color: var(--text);
  font-family: var(--font-body);
  flex-direction: column;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
}

body > main {
  flex: 1 0 auto;
  width: 100%;
}

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

* {
  scrollbar-width: thin;
  scrollbar-color: #6d5c37 #0e120e;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  border-left: 1px solid var(--line);
  background: #0e120e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#7a663d, #4a3f26);
  border: 2px solid #0e120e;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), #7d6a3f);
}

::-webkit-scrollbar-corner {
  background: #0e120e;
}

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

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

button {
  cursor: pointer;
}

a, button {
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}

button:disabled {
  opacity: .55;
  cursor: wait;
}

h1, h2, h3, p {
  margin: 0;
}

h1, h2, h3 {
  font-weight: 500;
}

h1, h2 {
  font-family: var(--font-title);
  line-height: 1.2;
}

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

svg {
  flex-shrink: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: #c6a56355;
}

.gold {
  color: var(--gold);
}

.container {
  max-width: 1344px;
  margin: auto;
  padding: 0 40px;
}

.header {
  border-bottom: 1px solid var(--line);
  background: #121613;
}

.nav-wrap {
  align-items: center;
  gap: 25px;
  max-width: 1504px;
  height: 89px;
  margin: auto;
  padding: 0 40px;
  display: flex;
}

.brand {
  letter-spacing: 1.1px;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}

.brand-mark {
  width: 43px;
  height: 43px;
  color: var(--gold);
  background: radial-gradient(#a5874820, #0000);
  border: 1px solid #a5874870;
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.brand small {
  letter-spacing: 2.3px;
  color: var(--muted);
  margin-top: 7px;
  font-size: 8px;
  font-weight: 400;
  display: block;
}

.nav {
  align-items: center;
  gap: 27px;
  height: 100%;
  margin-left: auto;
  display: flex;
}

.nav > a {
  color: #acafa2;
  border-bottom: 2px solid #0000;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding-top: 2px;
  font-size: 12px;
  display: flex;
}

.nav > a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav > a:hover {
  color: var(--text);
}

.tiny {
  letter-spacing: .5px;
  color: var(--green);
  background: #9eaf8417;
  border-radius: 2px;
  padding: 1px 4px;
  font-size: 8px;
}

.button {
  background: var(--gold);
  color: #191c15;
  border: 1px solid var(--gold);
  white-space: nowrap;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  gap: 13px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.button:hover {
  background: #ddbb7a;
  border-color: #ddbb7a;
  transform: translateY(-1px);
}

.button.small {
  padding: 10px 14px;
  font-size: 11px;
}

.button.outline {
  color: var(--gold);
  background: none;
  border-color: #8e784553;
}

.button.outline:hover {
  border-color: var(--gold);
  background: #c6a56312;
}

.nav-search {
  color: var(--muted);
  border-left: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  display: flex;
}

kbd {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 4px;
  font-family: inherit;
  font-size: 10px;
}

.world-strip {
  color: #93998b;
  border-bottom: 1px solid #30362b80;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1504px;
  margin: auto;
  padding: 11px 40px;
  font-size: 10px;
  display: flex;
}

.world-strip > span:first-child {
  letter-spacing: 1.4px;
  color: var(--green);
  align-items: center;
  gap: 9px;
  font-size: 9px;
  display: flex;
}

.world-strip a {
  color: #c4c6b8;
  align-items: center;
  gap: 8px;
  display: flex;
}

.world-strip i, .status-dot {
  background: var(--green);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 8px #9eaf8440;
}

.strip-divider {
  color: #5c6455;
  margin: 0 15px;
}

.welcome {
  justify-content: space-between;
  align-items: center;
  padding: 43px 0 32px;
  display: flex;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 1.65px;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 500;
  display: flex;
}

.dash {
  background: var(--gold);
  width: 22px;
  height: 1px;
}

.welcome h1 {
  letter-spacing: -1.3px;
  margin: 13px 0 9px;
  font-size: 39px;
}

.welcome h1 em {
  color: var(--gold);
  font-weight: 400;
}

.welcome p {
  color: var(--muted);
  font-size: 12px;
}

.welcome-seal {
  color: #a48c5265;
  flex-direction: column;
  align-items: center;
  margin-right: 8px;
  display: flex;
}

.welcome-seal small {
  letter-spacing: 2px;
  margin-top: 5px;
  font-size: 7px;
}

.hero-grid {
  grid-template-columns: 2.42fr 1fr;
  gap: 20px;
  display: grid;
}

.hero-story {
  background: #20281a;
  border: 1px solid #66533670;
  border-radius: 5px;
  min-height: 441px;
  position: relative;
  overflow: hidden;
}

.hero-art {
  object-fit: cover;
  object-position: center 41%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero-shade {
  background: linear-gradient(0deg, #0e1711f5 0%, #0f171280 48%, #0f171215 80%), linear-gradient(90deg, #10180f55, #0000 80%);
  position: absolute;
  inset: 0;
}

.hero-top {
  color: #d7d6c699;
  letter-spacing: 2px;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  display: flex;
  position: absolute;
  top: 25px;
  left: 29px;
  right: 25px;
}

.label {
  letter-spacing: 1.5px;
  color: #e3c58b;
  background: #14201de0;
  border: 1px solid #ac996242;
  border-radius: 2px;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  font-size: 8px;
  display: flex;
}

.hero-content {
  position: absolute;
  bottom: 30px;
  left: 31px;
  right: 25px;
}

.hero-content .eyebrow {
  letter-spacing: 2px;
  color: #debf7f;
  font-size: 9px;
}

.hero-content h2 {
  letter-spacing: -.7px;
  margin: 13px 0;
  font-size: 43px;
  line-height: 1.1;
}

.hero-content p {
  color: #c4c9ba;
  margin-bottom: 21px;
  font-size: 12px;
  line-height: 1.8;
}

.art-credit {
  color: #adb3a57a;
  font-size: 7px;
  position: absolute;
  bottom: -15px;
  right: 0;
}

.hero-aside {
  flex-direction: column;
  gap: 17px;
  display: flex;
}

.camp-panel {
  background: radial-gradient(ellipse at 75% 25%, #76633313, transparent 75%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  flex: 1;
  padding: 22px 22px 16px;
}

.panel-heading {
  color: var(--gold);
  letter-spacing: 1.2px;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  display: flex;
}

.panel-heading .status-dot {
  margin-left: auto;
}

.camp-panel h2 {
  margin: 18px 0 10px;
  font-size: 27px;
}

.camp-panel p {
  color: var(--muted);
  margin-bottom: 19px;
  font-size: 11px;
  line-height: 1.8;
}

.camp-panel .button {
  width: 100%;
  padding: 10px 8px;
  font-size: 10px;
}

.camp-ornament {
  color: #a48c5260;
  align-items: center;
  gap: 12px;
  margin: 17px 0 10px;
  display: flex;
}

.camp-ornament span {
  background: var(--line);
  flex: 1;
  height: 1px;
}

.mini-facts {
  color: var(--muted);
  justify-content: center;
  gap: 14px;
  font-size: 8px;
  display: flex;
}

.mini-facts span {
  align-items: center;
  gap: 5px;
  display: flex;
}

.journal-mini {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
  align-items: center;
  gap: 13px;
  padding: 13px;
  display: flex;
}

.journal-mini img {
  object-fit: cover;
  border-radius: 3px;
  width: 72px;
  height: 74px;
}

.journal-mini .eyebrow {
  font-size: 7px;
}

.journal-mini h3 {
  font-family: var(--font-title);
  margin: 6px 0 8px;
  font-size: 15px;
  line-height: 1.3;
}

.journal-mini div > span:last-child {
  color: var(--muted);
  align-items: center;
  gap: 9px;
  font-size: 9px;
  display: flex;
}

.quick-links {
  border: 1px solid var(--line);
  background: #191e1970;
  border-radius: 4px;
  grid-template-columns: repeat(4, 1fr);
  margin: 23px 0 42px;
  display: grid;
}

.quick-links > a {
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 13px;
  padding: 21px 18px;
  display: flex;
}

.quick-links > a:last-child {
  border: 0;
}

.quick-links > a:hover {
  background: #c6a56308;
}

.quick-icon {
  color: #b1a06e;
}

.quick-links h3 {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
}

.quick-links p {
  color: var(--muted);
  font-size: 9px;
}

.quick-links > a > svg {
  color: #6f7964;
  margin-left: auto;
}

.content-grid {
  grid-template-columns: 2.42fr 1fr;
  gap: 29px;
  display: grid;
}

.section-heading {
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  display: flex;
}

.section-heading h2 {
  letter-spacing: -.4px;
  margin-top: 9px;
  font-size: 26px;
}

.section-heading h2 > span {
  color: var(--gold);
}

.section-heading > a {
  color: var(--gold);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 10px;
  display: flex;
}

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

.story-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
}

.story-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
  overflow: hidden;
}

.story-card:hover {
  border-color: #847349;
}

.story-image {
  height: 181px;
  position: relative;
  overflow: hidden;
}

.story-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .45s;
}

.story-card:hover .story-image img {
  transform: scale(1.04);
}

.image-tag {
  color: #e4d8b4;
  letter-spacing: 1.2px;
  background: #141c17d9;
  border: 1px solid #b7a47140;
  border-radius: 2px;
  padding: 3px 7px;
  font-size: 8px;
  position: absolute;
  top: 13px;
  left: 13px;
}

.image-arrow {
  color: #ded7bc;
  background: #182019b0;
  border-radius: 50%;
  place-items: center;
  width: 28px;
  height: 28px;
  display: grid;
  position: absolute;
  bottom: 12px;
  right: 13px;
}

.story-copy {
  padding: 20px;
}

.story-copy .eyebrow {
  letter-spacing: 1.2px;
  font-size: 7px;
}

.story-copy h3 {
  font-family: var(--font-title);
  margin: 9px 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

.story-copy p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.card-meta {
  color: #a4ab99;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  padding-top: 13px;
  font-size: 8px;
  display: flex;
}

.card-meta span:last-child {
  color: #a5b28d;
}

.upcoming {
  border-left: 1px solid var(--line);
  padding-left: 27px;
}

.upcoming .section-heading h2 {
  font-size: 23px;
}

.upcoming .section-heading > svg {
  color: #8c987c;
}

.event-teaser {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 13px;
  padding: 19px 0;
  display: flex;
}

.date-tile {
  width: 44px;
  min-width: 44px;
  height: 54px;
  color: var(--gold);
  background: #c6a56308;
  border: 1px solid #7b71414d;
  border-radius: 3px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.date-tile span {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  font-size: 8px;
}

.date-tile strong {
  font-size: 23px;
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.2;
}

.event-teaser .eyebrow {
  letter-spacing: 1px;
  font-size: 7px;
}

.event-teaser h3 {
  margin: 4px 0;
  font-size: 13px;
}

.event-teaser p {
  color: var(--muted);
  align-items: center;
  gap: 6px;
  font-size: 9px;
  display: flex;
}

.event-teaser p > svg:last-child {
  margin-left: 10px;
}

.text-link {
  color: var(--gold);
  align-items: center;
  gap: 9px;
  font-size: 11px;
  display: inline-flex;
}

.upcoming > .text-link {
  margin: 14px 0 26px;
}

.source-note {
  border: 1px solid var(--line);
  background: #1b211a;
  border-radius: 4px;
  padding: 22px;
}

.source-note > svg {
  color: var(--green);
}

.source-note h3 {
  font-family: var(--font-title);
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.3;
}

.source-note p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.source-note a {
  color: var(--gold);
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 10px;
  display: flex;
}

.explore-banner {
  border: 1px solid var(--line);
  background: linear-gradient(110deg, #262b2033, #1a2118);
  border-radius: 4px;
  align-items: center;
  gap: 23px;
  margin-top: 22px;
  padding: 23px;
  display: flex;
}

.explore-banner > svg {
  color: #b3aa7e;
}

.explore-banner > svg:last-child {
  margin-left: auto;
}

.explore-banner .eyebrow {
  font-size: 7px;
}

.explore-banner h3 {
  font-family: var(--font-title);
  margin: 6px 0;
  font-size: 21px;
}

.explore-banner p {
  color: var(--muted);
  font-size: 10px;
}

.bottom-callout {
  border-top: 1px solid var(--line);
  text-align: center;
  margin: 57px 0 46px;
  padding: 36px 0 4px;
}

.bottom-callout > svg {
  color: var(--gold);
  margin-bottom: 14px;
}

.bottom-callout h2 {
  font-size: 26px;
}

.bottom-callout p {
  color: var(--muted);
  margin: 12px 0 20px;
  font-size: 11px;
}

.bottom-callout a {
  color: var(--gold);
  align-items: center;
  gap: 10px;
  font-size: 11px;
  display: inline-flex;
}

footer {
  border-top: 1px solid var(--line);
  max-width: 1424px;
  margin: 0 auto;
  padding: 25px 40px;
}

.footer-top {
  align-items: center;
  gap: 20px;
  display: flex;
}

.footer-brand {
  letter-spacing: 1px;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  display: flex;
}

.footer-brand svg {
  color: var(--gold);
  margin-right: 6px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-top p {
  color: var(--muted);
  font-size: 9px;
}

.footer-top > a:last-child {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 9px;
  display: flex;
}

.footer-bottom {
  color: #858e7d;
  border-top: 1px solid #30362b80;
  justify-content: space-between;
  gap: 30px;
  margin-top: 21px;
  padding-top: 18px;
  font-size: 8px;
  display: flex;
}

.footer-bottom span:last-child {
  text-align: right;
  max-width: 710px;
}

.page {
  min-height: 65vh;
  padding-top: 40px;
  padding-bottom: 65px;
}

.page-title {
  margin: 12px 0 30px;
}

.page-title h1 {
  margin: 14px 0;
  font-size: 44px;
}

.page-title p {
  color: var(--muted);
  max-width: 700px;
  line-height: 1.9;
}

.notice {
  color: #b7b9a7;
  background: #c6a56309;
  border: 1px solid #c6a56330;
  border-radius: 4px;
  margin: 22px 0 28px;
  padding: 16px 20px;
  font-size: 12px;
}

.search-form {
  background: var(--panel);
  color: var(--gold);
  border: 1px solid #847249;
  border-radius: 4px;
  align-items: center;
  gap: 15px;
  padding: 12px 14px 12px 20px;
  display: flex;
}

input, select, textarea {
  color: var(--text);
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  background: #141914;
  border: 1px solid #414938;
  border-radius: 3px;
  max-width: 100%;
  padding: 11px 12px;
}

.search-form input:not([type="hidden"]) {
  background: none;
  border: 0;
  flex: 1;
  min-width: 0;
  font-size: 16px;
}

.filters {
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
  display: flex;
}

.filters a {
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 3px;
  padding: 7px 17px;
  font-size: 12px;
}

.filters a.selected {
  color: var(--gold);
  background: #c6a56315;
  border-color: #c6a56360;
}

.results-meta {
  color: var(--muted);
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0;
  font-size: 11px;
  display: flex;
}

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

.database-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
  overflow: hidden;
}

.database-card:hover {
  border-color: var(--gold);
}

.database-card img {
  object-fit: cover;
  width: 100%;
  height: 170px;
}

.database-card > div {
  padding: 22px;
}

.database-card h2 {
  margin: 9px 0;
  font-size: 24px;
}

.database-card p {
  color: var(--muted);
  min-height: 60px;
  font-size: 12px;
}

.database-card .text-link {
  margin-top: 16px;
}

.article {
  max-width: 1130px;
}

.article figure {
  margin: 0 0 35px;
}

.article-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  max-height: 470px;
}

.article figcaption {
  color: var(--muted);
  margin-top: 9px;
  font-size: 10px;
}

.article figcaption a {
  color: var(--gold);
}

.article-columns {
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  display: grid;
}

.prose p {
  color: #bcc1b2;
  white-space: pre-line;
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.95;
}

.prose h2 {
  margin: 35px 0 18px;
  font-size: 27px;
}

.prose h2[id] {
  scroll-margin-top: 140px;
}

.prose ul {
  gap: 10px;
  margin: 0 0 25px;
  padding-left: 20px;
  display: grid;
}

.prose li {
  color: #bcc1b2;
  font-size: 15px;
  line-height: 1.8;
}

.prose li::marker {
  color: var(--gold);
}

.prose code {
  color: var(--gold);
  background: #ffffff10;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 13px;
}

.prose .legal-meta {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 13px;
}

.facts {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
  height: fit-content;
  padding: 24px;
}

.facts > div {
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 5px;
  margin-top: 16px;
  padding-top: 16px;
  font-size: 12px;
  display: flex;
}

.facts > div > span {
  color: var(--muted);
  font-size: 10px;
}

.facts strong {
  font-weight: 500;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 70px 20px;
}

.empty svg {
  color: var(--gold);
  margin-bottom: 15px;
}

.empty h3 {
  font-family: var(--font-title);
  color: var(--text);
  font-size: 25px;
}

.empty p {
  margin: 15px;
}

.empty a {
  color: var(--gold);
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.planner-layout {
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  display: grid;
}

.form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  height: fit-content;
  padding: 26px;
}

.form-panel h2 {
  margin: 0 0 8px;
  font-size: 25px;
}

.form-panel > p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 12px;
}

.form-panel form {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.form-panel label {
  color: #c8cbbe;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  display: flex;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  display: grid;
}

.feedback {
  color: #ecc191;
  background: #b27e5015;
  border: 1px solid #b27e5055;
  border-radius: 3px;
  padding: 12px;
  font-size: 12px;
}

.event-list {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.event-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}

.event-card > img {
  object-fit: cover;
  width: 150px;
}

.event-card > div {
  flex: 1;
  padding: 23px;
}

.event-card h2 {
  margin: 9px 0;
  font-size: 25px;
}

.event-card p {
  color: var(--muted);
  font-size: 12px;
}

.event-card .text-link {
  margin-top: 15px;
}

.role-pills {
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  display: flex;
}

.role-pills span {
  border: 1px solid var(--line);
  color: var(--green);
  border-radius: 3px;
  padding: 6px 13px;
  font-size: 11px;
}

.roster {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}

.roster td, .roster th {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 15px;
  font-size: 12px;
}

.roster th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.planner-note {
  color: var(--muted);
  margin: 20px 0;
  font-size: 11px;
}

.danger {
  color: #daa188;
  background: none;
  border: 1px solid #976b5866;
  border-radius: 3px;
  padding: 9px 15px;
}

.icon-button {
  color: var(--text);
  background: none;
  border: 0;
}

.mobile-toggle {
  display: none;
}

.skip {
  background: var(--gold);
  color: var(--bg);
  z-index: 99;
  padding: 10px 15px;
  position: absolute;
  top: -60px;
  left: 20px;
}

.skip:focus {
  top: 10px;
}

@media (min-width: 1450px) {
  .container {
    max-width: 1390px;
  }

  .hero-story {
    min-height: 470px;
  }

  .hero-content h2 {
    font-size: 48px;
  }

  .camp-panel {
    padding: 27px;
  }

  .camp-panel h2 {
    margin-top: 23px;
    font-size: 30px;
  }

  .camp-panel p {
    font-size: 12px;
  }

  .camp-ornament {
    margin: 24px 0 14px;
  }

  .story-image {
    height: 198px;
  }
}

@media (max-width: 1150px) {
  .nav-wrap {
    gap: 17px;
    padding: 0 25px;
  }

  .nav {
    gap: 18px;
  }

  .nav-search {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-grid, .content-grid {
    grid-template-columns: 2fr 1fr;
  }

  .hero-story {
    min-height: 450px;
  }

  .camp-panel {
    padding: 19px;
  }

  .mini-facts {
    flex-wrap: wrap;
    gap: 5px;
  }

  .quick-links > a {
    gap: 8px;
    padding: 18px 12px;
  }

  .quick-links > a > svg {
    display: none;
  }

  .quick-links p {
    font-size: 8px;
  }

  .hero-content h2 {
    font-size: 39px;
  }

  .nav-wrap > .button {
    padding: 9px;
    font-size: 9px;
  }

  .story-copy {
    padding: 17px;
  }

  .story-copy h3 {
    font-size: 19px;
  }

  .upcoming {
    padding-left: 20px;
  }

  .upcoming .section-heading h2 {
    font-size: 20px;
  }

  .section-heading h2 {
    font-size: 23px;
  }
}

@media (max-width: 850px) {
  .nav-wrap {
    flex-wrap: wrap;
    height: 76px;
    position: relative;
  }

  .mobile-toggle {
    margin-left: auto;
    display: block;
  }

  .nav-wrap > .button, .nav-search {
    display: none;
  }

  .nav {
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: #191e19;
    height: auto;
    margin: 0;
    padding: 15px 25px;
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
  }

  .nav.open {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: flex;
  }

  .nav > a {
    padding: 13px 0;
    font-size: 14px;
  }

  .world-strip {
    padding: 10px 28px;
  }

  .world-strip > span:nth-child(2) {
    display: none;
  }

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

  .hero-aside {
    grid-template-columns: 1.2fr 1fr;
    display: grid;
  }

  .camp-panel h2 {
    margin: 12px 0;
    font-size: 24px;
  }

  .camp-ornament, .mini-facts {
    display: none;
  }

  .journal-mini {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 18px;
  }

  .journal-mini img {
    width: 100%;
    height: 100px;
  }

  .journal-mini h3 {
    font-size: 20px;
  }

  .camp-panel .button {
    width: auto;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
  }

  .quick-links > a {
    padding: 20px;
  }

  .quick-links > a:nth-child(2) {
    border: 0;
  }

  .quick-links > a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .quick-links h3 {
    font-size: 12px;
  }

  .quick-links p {
    font-size: 10px;
  }

  .quick-icon {
    margin-right: 10px;
  }

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

  .upcoming {
    border-left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
    display: grid;
  }

  .upcoming > .section-heading {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .upcoming > .text-link {
    grid-column: 1;
    align-self: start;
  }

  .source-note {
    grid-area: 2 / 2 / 4;
  }

  .event-teaser {
    align-self: start;
  }

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

  .planner-layout {
    grid-template-columns: 1fr;
  }

  .footer-top p {
    display: none;
  }

  .article-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .facts {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left: 19px;
    padding-right: 19px;
  }

  .nav-wrap {
    padding: 0 19px;
  }

  .world-strip {
    padding: 9px 19px;
    font-size: 8px;
  }

  .world-strip > span:first-child {
    letter-spacing: 1px;
    font-size: 7px;
  }

  .world-strip a {
    font-size: 8px;
  }

  .welcome {
    padding: 29px 0 25px;
  }

  .welcome .eyebrow {
    font-size: 7px;
  }

  .welcome h1 {
    letter-spacing: -.9px;
    max-width: 300px;
    font-size: 31px;
    line-height: 1.25;
  }

  .welcome p {
    font-size: 10px;
  }

  .welcome-seal {
    display: none;
  }

  .hero-story {
    min-height: 427px;
  }

  .hero-art {
    object-position: 59% center;
  }

  .hero-top {
    top: 20px;
    left: 21px;
    right: 20px;
  }

  .hero-content {
    bottom: 33px;
    left: 22px;
    right: 20px;
  }

  .hero-content h2 {
    font-size: 37px;
  }

  .hero-content p {
    max-width: 260px;
    font-size: 11px;
  }

  .hero-content .eyebrow {
    font-size: 8px;
  }

  .desktop {
    display: none;
  }

  .hero-aside {
    grid-template-columns: 1fr;
  }

  .camp-panel {
    padding: 21px;
  }

  .camp-panel h2 {
    margin-top: 13px;
  }

  .camp-panel p {
    max-width: 300px;
  }

  .journal-mini {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 14px;
  }

  .journal-mini img {
    width: 85px;
    height: 75px;
  }

  .journal-mini h3 {
    font-size: 19px;
  }

  .quick-links > a {
    gap: 8px;
    padding: 15px 10px;
  }

  .quick-icon {
    margin: 0;
  }

  .quick-icon svg {
    width: 19px;
  }

  .quick-links h3 {
    font-size: 10px;
  }

  .quick-links p {
    font-size: 8px;
  }

  .story-grid, .story-grid.three, .database-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    height: 200px;
  }

  .story-copy h3 {
    font-size: 24px;
  }

  .story-copy p {
    font-size: 12px;
  }

  .card-meta {
    font-size: 9px;
  }

  .upcoming {
    display: block;
  }

  .upcoming > .section-heading {
    margin: 10px 0 20px;
  }

  .upcoming > .text-link {
    margin: 18px 0;
  }

  .source-note {
    margin-top: 10px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading .eyebrow {
    font-size: 7px;
  }

  .section-heading > a {
    font-size: 9px;
  }

  .explore-banner {
    gap: 12px;
    padding: 20px 15px;
  }

  .explore-banner > svg:first-child {
    display: none;
  }

  .explore-banner h3 {
    font-size: 20px;
  }

  .bottom-callout {
    margin-top: 35px;
  }

  .bottom-callout h2 {
    font-size: 24px;
  }

  .bottom-callout p {
    font-size: 10px;
  }

  footer {
    padding: 23px 19px;
  }

  .footer-top {
    gap: 10px;
  }

  .footer-top > a:last-child {
    font-size: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom span:last-child {
    text-align: left;
    font-size: 7px;
  }

  .page-title h1 {
    font-size: 36px;
  }

  .page-title p {
    font-size: 13px;
  }

  .search-form {
    gap: 4px;
    padding: 9px;
  }

  .search-form > svg {
    width: 16px;
  }

  .search-form input:not([type="hidden"]) {
    padding: 8px;
    font-size: 13px;
  }

  .search-form .button {
    gap: 5px;
    padding: 10px;
    font-size: 10px;
  }

  .results-meta {
    flex-direction: column;
    gap: 5px;
  }

  .filters {
    gap: 6px;
  }

  .filters a {
    padding: 6px 12px;
    font-size: 11px;
  }

  .article-image {
    height: 235px;
  }

  .event-card > img {
    width: 85px;
  }

  .event-card > div {
    padding: 16px;
  }

  .event-card h2 {
    font-size: 22px;
  }

  .form-panel {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page {
    padding-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

::view-transition-old(page) {
  animation: .16s ease-in reverse both page-fade;
}

::view-transition-new(page) {
  animation: .26s ease-out 80ms both page-fade;
}

@keyframes page-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

::view-transition {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(*) {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }

  ::view-transition-new(*) {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }

  ::view-transition-group(*) {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }
}

/* [project]/src/app/atlas.css [app-client] (css) */
:root {
  --paper: #ebd9b5;
  --ink: #241c13;
  --paper-muted: #625342;
  --paper-link: #23506b;
  --display: Georgia, "Lora", serif;
}

.atlas-header {
  z-index: 50;
  background: linear-gradient(#101822ee, #171a1fe6);
  border-bottom: 1px solid #b6965555;
  position: relative;
}

.atlas-header.over-landscape {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: linear-gradient(90deg, #121b2290, #111a26dc 40%, #161b25c9);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.atlas-nav {
  align-items: center;
  gap: 30px;
  max-width: 1390px;
  min-height: 74px;
  margin: auto;
  padding: 0 38px;
  display: flex;
}

.atlas-brand {
  align-items: center;
  display: flex;
}

.atlas-brand img {
  filter: drop-shadow(0 1px 3px #000);
  width: auto;
  height: 54px;
}

.atlas-nav nav {
  align-items: center;
  gap: 25px;
  margin-left: auto;
  display: flex;
}

.atlas-nav nav a {
  color: #e3e3df;
  white-space: nowrap;
  border-bottom: 2px solid #0000;
  padding: 27px 0 23px;
  font-size: 12px;
}

.atlas-nav nav a:hover, .atlas-nav nav a[aria-current] {
  color: #edce8f;
  border-color: #be994f;
}

.atlas-sub {
  align-items: center;
  display: flex;
  position: relative;
}

.atlas-submenu {
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  background: #0b1219f2;
  border: 1px solid #9e835d55;
  border-radius: 5px;
  gap: 2px;
  min-width: 246px;
  padding: 8px;
  transition: opacity .16s, transform .16s, visibility .16s;
  display: grid;
  position: absolute;
  top: 100%;
  left: -14px;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0006;
}

.atlas-sub:hover .atlas-submenu, .atlas-sub:focus-within .atlas-submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.atlas-nav nav .atlas-submenu a {
  white-space: normal;
  border-bottom: 0;
  border-radius: 4px;
  gap: 2px;
  padding: 9px 11px;
  display: grid;
}

.atlas-nav nav .atlas-submenu a:hover {
  background: #dabc801a;
}

.atlas-submenu small {
  color: #9aa3a8;
  font-size: 10.5px;
}

.atlas-nav nav .atlas-class-menu a {
  align-items: center;
  gap: 12px;
  min-height: 44px;
  display: flex;
}

.atlas-class-menu img {
  border-radius: 50%;
}

.class-medallion {
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
}

.class-medallion > img.class-medallion-icon {
  object-fit: cover;
  width: 66%;
  height: 66%;
  box-shadow: none;
  border: 0;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  inset: 17%;
}

.class-medallion > img.class-medallion-frame {
  object-fit: contain;
  width: 100%;
  height: 100%;
  box-shadow: none;
  pointer-events: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  position: absolute;
  inset: 0;
}

.atlas-class-disclosure[data-open="false"] > .atlas-class-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.atlas-class-disclosure[data-open="true"] > .atlas-class-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.atlas-class-toggle {
  color: #dabc80;
  cursor: pointer;
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-height: 44px;
  display: inline-flex;
}

.atlas-class-toggle:focus-visible {
  outline-offset: -2px;
  outline: 2px solid #dabc80;
}

.atlas-class-row {
  grid-template-columns: 1fr 36px;
  display: grid;
}

.atlas-class-row[data-selected="true"] {
  background: #dabc8012;
}

.atlas-class-sections {
  background: #0b1219fa;
  border: 1px solid #9e835d55;
  border-radius: 0 5px 5px 0;
  min-width: 185px;
  min-height: 100%;
  padding: 16px 8px 8px;
  display: none;
  position: absolute;
  top: -1px;
  left: 100%;
  box-shadow: 12px 18px 30px #0005;
}

.atlas-class-row[data-selected="true"] > .atlas-class-sections {
  display: block;
}

.atlas-class-sections > span {
  color: #dabc80;
  font: 18px var(--display);
  border-bottom: 1px solid #9e835d33;
  padding: 0 11px 12px;
  display: block;
}

@media (max-width: 1050px) {
  .atlas-class-disclosure {
    grid-template-columns: 1fr 44px;
    display: grid !important;
  }

  .atlas-class-disclosure > .atlas-class-menu {
    grid-column: 1 / -1;
  }

  .atlas-class-disclosure[data-open="false"] > .atlas-class-menu {
    display: none;
  }

  .atlas-class-sections {
    min-height: 0;
    box-shadow: none;
    border: 0;
    border-left: 1px solid #9e835d55;
    grid-column: 1 / -1;
    margin-left: 22px;
    padding-top: 0;
    position: static;
  }

  .atlas-class-sections > span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-submenu {
    transition: none;
  }
}

.atlas-search {
  --well: #0d121bd9;
  --rim: #ad997759;
  --gold: #e8c170;
  --out-quart: cubic-bezier(.25, 1, .5, 1);
  --out-back: cubic-bezier(.34, 1.56, .64, 1);
  isolation: isolate;
  color: #e2c583;
  border-radius: 5px;
  align-items: center;
  gap: 8px;
  width: 260px;
  height: 36px;
  padding: 0 10px 0 12px;
  display: flex;
  position: relative;
}

.search-frame, .search-well {
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
}

.search-frame {
  z-index: -2;
  background: var(--rim);
  inset: 0;
  overflow: hidden;
  box-shadow: 0 0 0 2px #0c132533;
}

.search-frame:before {
  content: "";
  aspect-ratio: 1;
  background: conic-gradient(from 0deg,
    transparent 0 58%,
    #7a5a2a 70%,
    #ffe3a3 84%,
    #fff6dc 86%,
    transparent 92%);
  opacity: 0;
  width: 150%;
  transition: opacity .4s var(--out-quart);
  animation: 3.2s linear infinite paused search-orbit;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.search-frame:after {
  content: "";
  background: linear-gradient(105deg, #0000 30%, #ffe7b04d 48%, #fff3d680 50%, #ffe7b04d 52%, #0000 70%);
  position: absolute;
  inset: 0;
  translate: -110%;
}

.search-well {
  z-index: -1;
  background: radial-gradient(120% 90% at 12% 50%, #e8c1701f, transparent 55%),
    linear-gradient(#0a0f16, var(--well));
  transition: box-shadow .35s var(--out-quart);
  inset: 1px;
  box-shadow: inset 0 1px 4px #000a, inset 0 -1px #e8c17014;
}

.search-well:before {
  content: "";
  opacity: 0;
  transition: opacity .4s var(--out-quart);
  border-radius: 5px;
  position: absolute;
  inset: -1px;
  box-shadow: 0 0 10px #e8b95a66, 0 0 30px 2px #d9973a2e;
}

.search-gem {
  opacity: .55;
  pointer-events: none;
  width: 7px;
  height: 7px;
  transition: scale .45s var(--out-back),
    opacity .3s var(--out-quart),
    box-shadow .4s var(--out-quart);
  background: linear-gradient(135deg, #f7dd9c, #9b7334 60%, #5b4220);
  border: 1px solid #1a130a;
  margin-top: -3.5px;
  position: absolute;
  top: 50%;
  rotate: 45deg;
  scale: .55;
}

.search-gem.left {
  left: -4px;
}

.search-gem.right {
  right: -4px;
}

.search-sigil {
  color: #c9aa6b;
  width: 18px;
  height: 18px;
  transition: rotate .5s var(--out-back),
    scale .5s var(--out-back),
    color .3s var(--out-quart);
  flex: none;
  place-items: center;
  display: grid;
  position: relative;
}

.search-sigil svg {
  transition: filter .3s var(--out-quart);
}

.search-sigil:after {
  content: "";
  border: 1px solid var(--gold);
  opacity: 0;
  border-radius: 50%;
  position: absolute;
  inset: -3px;
  scale: .4;
}

.atlas-search > input {
  color: #f3ecdc;
  caret-color: #ffd98a;
  appearance: none;
  background: none;
  border: 0;
  outline: none;
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  font-size: 11px;
}

.atlas-search input::-webkit-search-cancel-button {
  appearance: none;
}

.atlas-search input::-webkit-search-decoration {
  appearance: none;
}

.atlas-search input::placeholder {
  color: #0000;
}

.search-hint {
  color: #b4b4b3;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  transition: opacity .2s var(--out-quart),
    translate .3s var(--out-quart);
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 38px;
  right: 44px;
  overflow: hidden;
  translate: 0 -50%;
}

.search-hint-word {
  color: #dcc189;
  animation: search-word .5s var(--out-quart) both;
  display: inline-block;
}

.atlas-search > button {
  color: #bbaf92;
  cursor: pointer;
  background: none;
  border: 0;
  flex: none;
  min-width: 26px;
  height: 20px;
  padding: 0;
  display: grid;
  position: relative;
}

.atlas-search > button > * {
  transition: opacity .25s var(--out-quart),
    scale .35s var(--out-back);
  grid-area: 1 / 1;
  place-self: center;
}

.search-kbd {
  font: 600 9px/1 var(--display);
  letter-spacing: .3px;
  color: #a8966f;
  white-space: nowrap;
  background: #ffffff08;
  border: 1px solid #6b5a3a88;
  border-radius: 3px;
  padding: 3px 5px;
}

.search-enter {
  color: #1c1409;
  opacity: 0;
  background: linear-gradient(#f5d894, #b88b3f);
  border-radius: 3px;
  place-items: center;
  width: 22px;
  height: 18px;
  font-size: 12px;
  font-weight: bold;
  display: grid;
  scale: .6;
  box-shadow: 0 0 0 1px #3a2a12, 0 0 10px #e8b95a66;
}

.search-embers {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.search-embers span {
  width: var(--size);
  height: var(--size);
  margin-left: calc(var(--size) / -2);
  animation: search-ember var(--dur) var(--out-quart) forwards;
  background: radial-gradient(circle, #fffaf0 20%, #ffd173 55%, #ff9a2e);
  border-radius: 50%;
  position: absolute;
  top: 58%;
  box-shadow: 0 0 4px 1px #ffc05acc, 0 0 10px 2px #ff9a2e66;
}

.atlas-search:hover .search-frame {
  background: #c9a45f8c;
}

.atlas-search:hover .search-frame:after {
  animation: search-shimmer .9s var(--out-quart);
}

.atlas-search:hover .search-gem {
  opacity: .85;
  scale: .75;
}

.atlas-search:hover .search-sigil {
  color: #e6c47f;
}

.atlas-search:focus-within .search-frame {
  background: #8c6a33b3;
}

.atlas-search:focus-within .search-frame:before {
  opacity: 1;
  animation-play-state: running;
}

.atlas-search:focus-within .search-well {
  box-shadow: inset 0 1px 6px #000c, inset 0 0 18px #e8b95a1f;
}

.atlas-search:focus-within .search-well:before {
  opacity: 1;
}

.atlas-search:focus-within .search-gem {
  opacity: 1;
  animation: 2.4s cubic-bezier(.37, 0, .63, 1) .45s infinite search-gem-pulse;
  scale: 1;
  box-shadow: 0 0 6px #ffcf73, 0 0 14px #e8a23f99;
}

.atlas-search:focus-within .search-sigil {
  color: #ffdf9c;
  rotate: -14deg;
  scale: 1.15;
}

.atlas-search:focus-within .search-sigil svg {
  filter: drop-shadow(0 0 4px #ffc86a);
}

.atlas-search:focus-within .search-sigil:after {
  animation: search-ring .7s var(--out-quart);
}

.atlas-search:focus-within .search-hint {
  opacity: .6;
  translate: 4px -50%;
}

.atlas-search:has(input:not(:placeholder-shown)) .search-hint {
  opacity: 0;
}

.atlas-search:focus-within .search-kbd {
  opacity: 0;
  scale: .6;
}

.atlas-search:has(input:not(:placeholder-shown)) .search-kbd {
  opacity: 0;
  scale: .6;
}

.atlas-search > button:focus-visible .search-enter {
  opacity: 1;
  scale: 1;
}

.atlas-search:has(input:not(:placeholder-shown)) .search-enter {
  opacity: 1;
  scale: 1;
}

.atlas-search > button:hover .search-enter {
  scale: 1.12;
}

.atlas-search > button:focus-visible {
  outline: none;
}

.atlas-search > button:focus-visible .search-enter {
  outline-offset: 2px;
  outline: 2px solid #ffd98a;
}

.atlas-search.is-casting .search-well:before {
  animation: search-cast .6s var(--out-quart);
}

.atlas-search.is-casting .search-frame:after {
  animation: search-shimmer .5s var(--out-quart);
}

@keyframes search-orbit {
  to {
    rotate: 1turn;
  }
}

@keyframes search-shimmer {
  from {
    translate: -110%;
  }

  to {
    translate: 110%;
  }
}

@keyframes search-ring {
  from {
    opacity: .9;
    scale: .5;
  }

  to {
    opacity: 0;
    scale: 2.2;
  }
}

@keyframes search-gem-pulse {
  50% {
    opacity: .8;
    scale: 1.2;
  }
}

@keyframes search-word {
  from {
    opacity: 0;
    filter: blur(2px);
    translate: 0 6px;
  }

  to {
    opacity: 1;
    filter: blur();
    translate: 0;
  }
}

@keyframes search-ember {
  0% {
    opacity: 0;
    transform: translate(0)scale(.6);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--rise)) scale(.2);
  }
}

@keyframes search-cast {
  0% {
    opacity: 1;
    scale: 1;
  }

  30% {
    opacity: 1;
    scale: 1.08;
  }

  100% {
    opacity: 0;
    scale: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-search *, .atlas-search :before, .atlas-search :after {
    transition-duration: .01ms !important;
    animation: none !important;
  }

  .atlas-search:focus-within .search-sigil {
    rotate: none;
    scale: 1;
  }
}

.atlas-menu {
  color: #ecd7ad;
  background: none;
  border: 0;
  display: none;
}

.atlas-home {
  color: var(--ink);
  background: #c6ab7d url("/design/paper-grain.svg");
  padding-bottom: 8px;
}

.landscape-feature {
  background: #1c2630;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.landscape-art {
  object-fit: cover;
  object-position: 50% 30%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.landscape-shade {
  background: linear-gradient(90deg, #090f16a6, #0000 54%), linear-gradient(0deg, #11171085, #0000 24%);
  position: absolute;
  inset: 0;
}

.feature-inner {
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  max-width: 1314px;
  height: 100%;
  margin: auto;
  padding: 140px 0 74px;
  display: flex;
  position: relative;
}

.feature-copy {
  color: #f8f4e9;
  text-shadow: 0 2px 5px #000b;
  align-self: center;
  width: 450px;
}

.feature-ribbon {
  color: #fff8e8;
  font-family: var(--display);
  letter-spacing: 1px;
  background: linear-gradient(#712822, #4b1515);
  border: 1px solid #b58c4f;
  border-radius: 2px;
  padding: 3px 12px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 2px 5px #0008;
}

.feature-copy h1 {
  font-family: var(--display);
  letter-spacing: -1.3px;
  margin: 16px 0 18px;
  font-size: 59px;
  font-weight: bold;
  line-height: 1.02;
}

.feature-copy p {
  color: #f2eee4;
  max-width: 365px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.65;
}

.warcraft-button {
  font-family: var(--display);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #a38b61;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  box-shadow: inset 0 0 0 2px #e4c38424, inset 0 1px #f8d98e88, 0 2px 5px #2416094d;
}

.warcraft-button.crimson {
  color: #fff0d0;
  text-shadow: 0 1px 3px #000;
  background: linear-gradient(#8c3123, #591712);
  border-color: #c7a067;
}

.warcraft-button:hover {
  filter: brightness(1.14);
  transform: translateY(-1px);
}

.warcraft-button.blue {
  color: #fff6e0;
  font-family: var(--font-body);
  background: linear-gradient(#39769c, #1b4868);
  border-color: #678b9d;
  gap: 10px;
  padding: 8px 17px;
  font-size: 11px;
}

.feature-secondary {
  flex-direction: column;
  gap: 8px;
  width: 418px;
  display: flex;
}

.feature-secondary > a {
  color: #f2eee3;
  background: linear-gradient(100deg, #121c22f0, #12171eea);
  border: 1px solid #9d835a99;
  border-radius: 4px;
  align-items: center;
  gap: 13px;
  padding: 9px;
  display: flex;
  box-shadow: inset 0 0 0 2px #0007, 0 2px 5px #0006;
}

.feature-secondary > a:hover {
  border-color: #dec38c;
}

.feature-secondary img {
  object-fit: cover;
  border: 1px solid #63583e;
  border-radius: 2px;
  width: 113px;
  height: 91px;
}

.feature-secondary div > span {
  color: #b2d6ec;
  letter-spacing: .6px;
  background: #173246b3;
  border: 1px solid #47647763;
  padding: 0 4px;
  font-size: 8px;
  line-height: 1.5;
  display: inline-block;
}

.feature-secondary h2 {
  font-family: var(--display);
  margin: 5px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.15;
}

.feature-secondary p {
  color: #d0d0c9;
  font-size: 11px;
  line-height: 1.4;
}

.feature-secondary > a > svg {
  width: 15px;
  margin-right: 7px;
}

.atlas-content {
  max-width: 1400px;
  margin: -32px auto 0;
  padding: 0 30px;
  position: relative;
}

.parchment {
  color: var(--ink);
  background: radial-gradient(at 50% 40%, #fff7df66, #0000 80%), url("/design/paper-grain.svg"), #ecdbb8;
  border: 1px solid #ac8f62;
  border-radius: 5px;
  margin-bottom: 9px;
  padding: 26px 35px 22px;
  position: relative;
  box-shadow: inset 0 0 3px 2px #7251294a, inset 0 0 32px #ae753d2c, 0 3px 6px #412b204f;
}

.parchment:before {
  content: "";
  pointer-events: none;
  border: 1px solid #b6945740;
  border-radius: 2px;
  position: absolute;
  inset: 5px;
}

.paper-heading {
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 22px;
  display: flex;
}

.paper-heading h2 {
  font-family: var(--display);
  letter-spacing: -.7px;
  color: #221a11;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.15;
}

.paper-heading p {
  color: #524634;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
}

.paper-tabs {
  border: 1px solid #a9956d;
  border-radius: 3px;
  flex-shrink: 0;
  align-self: center;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 2px #54331826;
}

.paper-tabs button {
  font-size: 12px;
  font-family: var(--display);
  color: #245270;
  white-space: nowrap;
  background: #d4d6d17a;
  border: 0;
  padding: 7px 23px;
  font-weight: bold;
}

.paper-tabs button + button {
  border-left: 1px solid #a9956d;
}

.paper-tabs button[aria-selected="true"] {
  color: #251c12;
  background: linear-gradient(#fcf0d3, #e8d1a5);
  box-shadow: inset 0 0 0 2px #fffae14d;
}

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

.paper-story {
  display: block;
}

.paper-story > img {
  object-fit: cover;
  border: 1px solid #8a7958;
  border-radius: 3px;
  width: 100%;
  height: 176px;
  transition: filter .2s;
  box-shadow: 0 1px 2px #4e311833;
}

.paper-story:hover > img {
  filter: brightness(1.1);
}

.paper-category {
  color: #544b32;
  letter-spacing: .7px;
  margin-top: 9px;
  font-size: 9px;
  font-weight: 600;
  display: block;
}

.paper-story h3 {
  font-family: var(--display);
  color: #221a10;
  margin: 4px 0 7px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.17;
}

.paper-story:hover h3 {
  color: #7d321c;
}

.paper-byline {
  color: #685944;
  margin: 7px 0;
  font-size: 10px;
}

.paper-byline > span {
  margin: 0 8px;
}

.paper-story > p {
  color: #554735;
  font-size: 13px;
  line-height: 1.6;
}

.paper-news-rows {
  border-top: 1px solid #af905d66;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 23px;
  padding-top: 17px;
  display: grid;
}

.paper-news-rows > a {
  gap: 13px;
  display: flex;
}

.paper-news-rows img {
  object-fit: cover;
  border: 1px solid #bba06b;
  border-radius: 2px;
  width: 91px;
  height: 69px;
}

.paper-news-rows h3 {
  font-size: 15px;
  font-family: var(--display);
  margin: 0 0 4px;
  font-weight: bold;
  line-height: 1.25;
}

.paper-news-rows p {
  color: #66563e;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 11px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.paper-news-footer {
  color: #77664d;
  justify-content: space-between;
  gap: 20px;
  margin-top: 19px;
  font-size: 9px;
  display: flex;
}

.paper-news-footer a {
  color: var(--paper-link);
  align-items: center;
  gap: 7px;
  font-size: 11px;
  display: flex;
}

.official-index {
  min-height: 295px;
}

.official-index > p {
  color: #625238;
  margin-bottom: 15px;
  font-size: 13px;
}

.official-index > a {
  color: #245574;
  border-bottom: 1px solid #b69b7066;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5px;
  display: flex;
}

.official-index small {
  letter-spacing: .7px;
  font-size: 9px;
  display: block;
}

.official-index strong {
  font-family: var(--display);
  font-size: 22px;
}

.inline-heading {
  justify-content: flex-start;
  gap: 24px;
}

.inline-heading p {
  margin: 0;
}

.explore-parchment {
  padding-bottom: 30px;
}

.atlas-directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
}

.directory-group {
  border-right: 1px solid #bba17166;
  gap: 13px;
  padding: 0 20px;
  display: flex;
}

.directory-group:first-child {
  padding-left: 0;
}

.directory-group:last-child {
  border: 0;
  padding-right: 0;
}

.atlas-icon {
  filter: drop-shadow(0 3px 2px #64401c45);
  flex-shrink: 0;
  width: 85px;
  height: 100px;
}

.directory-group h3 {
  font-family: var(--display);
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: bold;
}

.directory-group a {
  margin: 14px 0 0;
  display: block;
}

.directory-group strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  display: block;
}

.directory-group strong > span {
  color: #245574;
  margin-left: 6px;
  font-size: 20px;
}

.directory-group a:hover strong {
  color: #85492c;
}

.directory-group p {
  color: #67573f;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.4;
}

.gallery-heading {
  margin-bottom: 20px;
}

.gallery-heading h2 {
  font-size: 32px;
}

.gallery-actions {
  align-items: center;
  gap: 18px;
  display: flex;
}

.gallery-tabs {
  gap: 16px;
  display: flex;
}

.gallery-tabs button {
  color: #574a36;
  white-space: nowrap;
  background: none;
  border: 0;
  border-bottom: 2px solid #0000;
  padding: 9px 4px;
  font-size: 10px;
}

.gallery-tabs button[aria-selected="true"] {
  color: #235777;
  border-bottom-color: #235777;
}

.community-grid {
  grid-template-columns: 1.65fr 1fr 1fr 1fr;
  gap: 14px;
  display: grid;
}

.community-shot {
  min-width: 0;
}

.shot-open {
  background: #302b24;
  border: 1px solid #907959;
  border-radius: 3px;
  width: 100%;
  padding: 0;
  display: block;
  overflow: hidden;
}

.shot-open img {
  object-fit: cover;
  width: 100%;
  height: 151px;
  transition: transform .4s;
}

.shot-open:hover img {
  transform: scale(1.035);
}

.shot-caption {
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding-top: 7px;
  display: flex;
}

.shot-caption h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.shot-caption p {
  color: #66563e;
  margin-top: 2px;
  font-size: 10px;
}

.applause {
  color: #8c3526;
  background: none;
  border: 0;
  align-items: center;
  gap: 4px;
  padding: 6px;
  font-size: 11px;
  display: flex;
}

.applause[aria-pressed="true"] svg {
  fill: #943b2c;
}

.gallery-footnote {
  color: #766245;
  border-top: 1px solid #b49b7155;
  justify-content: space-between;
  gap: 12px;
  margin-top: 17px;
  padding-top: 10px;
  font-size: 10px;
  display: flex;
}

.gallery-footnote a {
  color: #245574;
}

.gallery-feedback {
  color: #783b25;
  margin-top: 12px;
  font-size: 12px;
}

.community-page {
  background: #c6ab7d url("/design/paper-grain.svg");
  min-height: 75vh;
  padding-top: 40px;
  padding-bottom: 60px;
}

.community-page > .atlas-content {
  margin: 0 auto;
}

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

.community-page .paper-heading {
  flex-wrap: wrap;
}

.image-dialog {
  color: #ece9df;
  background: #181b1d;
  border: 1px solid #b08c51;
  border-radius: 5px;
  width: min(1000px, 95vw);
  max-height: 94vh;
  padding: 20px;
}

.image-dialog::backdrop {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #090d13dc;
}

.image-dialog img {
  object-fit: contain;
  width: 100%;
  max-height: 72vh;
}

.image-dialog h2 {
  font-family: var(--display);
  margin: 12px 0 3px;
  font-size: 24px;
}

.image-dialog p {
  color: #b5b4a9;
  font-size: 12px;
}

.dialog-close {
  float: right;
  color: #e5d2a9;
  background: none;
  border: 0;
  margin-bottom: 8px;
  padding: 0 7px;
  font-size: 24px;
}

.submit-dialog {
  color: #322518;
  background: #f0dfbc url("/design/paper-grain.svg");
  width: min(540px, 94vw);
  padding: 26px;
}

.submit-dialog h2 {
  margin: 4px 0 8px;
}

.submit-dialog > p {
  color: #665138;
  margin-bottom: 20px;
  font-size: 13px;
}

.submit-dialog .dialog-close {
  color: #634729;
}

.submit-dialog form {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.submit-dialog label {
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.submit-dialog input {
  color: #302519;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: #fff7e2;
  border-color: #b19a72;
}

.submit-dialog small {
  color: #64513a;
  font-size: 11px;
}

.submit-dialog .consent {
  flex-direction: row;
  align-items: start;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  display: flex;
}

.submit-dialog .consent input {
  margin-top: 3px;
}

.submit-dialog button[type="submit"] {
  align-self: start;
}

.submit-dialog .feedback {
  color: #783b25;
  background: #ae6a2020;
  border-color: #a17c4855;
}

.submit-dialog input::file-selector-button {
  color: #3e2e1b;
  background: #e0c89e;
  border: 1px solid #ae946b;
  border-radius: 2px;
  margin-right: 10px;
  padding: 5px 8px;
}

.tool-feature {
  border: 1px solid var(--gold-deep, #7d6433);
  background: linear-gradient(140deg, #dabc8014, transparent 55%), var(--panel);
  color: inherit;
  border-radius: 4px;
  margin-bottom: 22px;
  padding: 30px 32px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  display: block;
}

.tool-feature:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.tool-feature-kicker {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 10px;
}

.tool-feature h2 {
  max-width: 22ch;
  margin: 10px 0 12px;
  font-size: 27px;
}

.tool-feature p {
  color: var(--muted);
  max-width: 66ch;
  font-size: 13.5px;
  line-height: 1.7;
}

.tool-feature-points {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 8px 26px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
}

.tool-feature-points li {
  color: #d8d2c3;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.5;
  display: flex;
}

.tool-feature-points svg {
  color: var(--gold);
  flex: none;
  margin-top: 2px;
}

.tool-feature-go {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

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

.tool-directory > a, .tool-directory > div {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 25px;
}

.tool-directory h2 {
  font-size: 24px;
}

.tool-directory h2 span {
  font-family: var(--font-body);
  color: var(--gold);
  margin: 10px 0;
  font-size: 10px;
  display: block;
}

.tool-directory p {
  color: var(--muted);
  font-size: 13px;
}

.tool-directory .text-link {
  margin-top: 12px;
}

.footer-brand {
  font-family: var(--display);
  letter-spacing: -.5px;
  color: #d9b970;
  font-size: 26px;
  font-weight: bold;
}

.footer-brand svg {
  width: 40px;
  height: 40px;
}

.footer-top p {
  display: none;
}

footer {
  padding-top: 28px;
}

.footer-top > a:last-child {
  font-size: 12px;
}

@media (min-width: 1600px) {
  .landscape-feature {
    height: 660px;
  }

  .feature-inner {
    padding-bottom: 83px;
  }

  .landscape-art {
    object-position: 50% 30%;
  }

  .feature-copy h1 {
    font-size: 65px;
  }

  .paper-story > img {
    height: 189px;
  }
}

@media (max-width: 1400px) {
  .atlas-nav {
    gap: 22px;
    padding: 0 30px;
  }

  .atlas-brand img {
    height: 48px;
  }

  .atlas-nav nav {
    gap: 20px;
  }

  .atlas-search {
    width: 225px;
  }

  .feature-inner {
    padding-left: 65px;
    padding-right: 65px;
  }

  .feature-copy h1 {
    font-size: 54px;
  }

  .feature-secondary {
    width: 385px;
  }

  .paper-story h3 {
    font-size: 22px;
  }

  .paper-heading h2 {
    font-size: 30px;
  }

  .gallery-actions {
    gap: 12px;
  }

  .atlas-icon {
    width: 68px;
  }

  .gallery-heading {
    gap: 15px;
  }

  .gallery-tabs {
    gap: 8px;
  }

  .gallery-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 1100px) {
  .atlas-nav {
    gap: 20px;
    padding: 0 24px;
  }

  .atlas-nav nav {
    gap: 17px;
  }

  .atlas-nav nav a {
    font-size: 11px;
  }

  .atlas-search {
    width: 190px;
  }

  .atlas-search > input {
    font-size: 10px;
  }

  .atlas-brand img {
    height: 42px;
  }

  .landscape-feature {
    height: 575px;
  }

  .feature-inner {
    padding-bottom: 68px;
    padding-left: 45px;
    padding-right: 45px;
  }

  .feature-copy {
    width: 350px;
  }

  .feature-copy h1 {
    font-size: 49px;
  }

  .feature-copy p {
    max-width: 320px;
    font-size: 14px;
  }

  .feature-secondary {
    width: 330px;
  }

  .feature-secondary img {
    width: 83px;
    height: 83px;
  }

  .feature-secondary h2 {
    font-size: 16px;
  }

  .feature-secondary p {
    font-size: 10px;
  }

  .atlas-content {
    padding: 0 20px;
  }

  .parchment {
    padding: 23px 26px;
  }

  .paper-news-grid {
    gap: 20px;
  }

  .paper-story > img {
    height: 143px;
  }

  .paper-news-rows {
    gap: 17px;
  }

  .paper-news-rows img {
    width: 65px;
    height: 65px;
  }

  .paper-byline {
    font-size: 9px;
  }

  .paper-tabs button {
    padding: 7px 17px;
  }

  .directory-group {
    gap: 9px;
    padding: 0 12px;
  }

  .atlas-icon {
    width: 59px;
    height: 80px;
  }

  .directory-group h3 {
    font-size: 20px;
  }

  .directory-group strong {
    font-size: 14px;
  }

  .gallery-heading {
    flex-wrap: wrap;
  }

  .gallery-actions {
    margin-left: auto;
  }

  .shot-open img {
    height: 130px;
  }
}

@media (max-width: 850px) {
  .atlas-nav {
    flex-wrap: wrap;
    gap: 0;
    min-height: 65px;
    padding: 12px 22px;
  }

  .atlas-brand img {
    height: 40px;
  }

  .atlas-menu {
    margin-left: auto;
    padding: 5px;
    display: block;
  }

  .atlas-nav nav {
    background: #141d28f5;
    border-bottom: 1px solid #9e835d;
    padding: 15px 24px;
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
  }

  .atlas-nav nav.expanded {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: flex;
  }

  .atlas-nav nav a {
    padding: 10px;
    font-size: 14px;
  }

  .atlas-sub {
    display: block;
  }

  .atlas-submenu {
    opacity: 1;
    visibility: visible;
    min-width: 0;
    box-shadow: none;
    background: none;
    border: 0;
    padding: 0 0 6px 14px;
    position: static;
    transform: none;
  }

  .atlas-search {
    order: 1;
    width: 205px;
    margin-left: 20px;
    margin-right: 14px;
  }

  .atlas-menu {
    order: 2;
  }

  .landscape-feature {
    height: 630px;
  }

  .feature-inner {
    gap: 25px;
    padding: 120px 35px 65px;
  }

  .feature-copy {
    align-self: flex-start;
    width: 330px;
  }

  .feature-copy h1 {
    font-size: 48px;
  }

  .feature-copy p {
    font-size: 13px;
  }

  .feature-secondary {
    width: 285px;
  }

  .feature-secondary img {
    width: 65px;
    height: 77px;
  }

  .feature-secondary p {
    font-size: 10px;
  }

  .feature-secondary > a {
    gap: 9px;
  }

  .feature-secondary > a > svg {
    display: none;
  }

  .paper-heading {
    align-items: flex-start;
  }

  .paper-heading h2 {
    font-size: 29px;
  }

  .paper-heading p {
    font-size: 11px;
  }

  .paper-news-grid {
    gap: 17px;
  }

  .paper-story h3 {
    font-size: 20px;
  }

  .paper-story > p {
    font-size: 12px;
  }

  .paper-story > img {
    height: 130px;
  }

  .paper-byline {
    line-height: 1.7;
  }

  .paper-news-rows img {
    display: none;
  }

  .directory-group {
    padding: 0 18px;
    display: block;
  }

  .atlas-icon {
    float: left;
    width: 49px;
    height: 58px;
    margin-right: 9px;
  }

  .directory-group h3 {
    align-items: center;
    min-height: 55px;
    font-size: 21px;
    display: flex;
  }

  .directory-group a {
    clear: both;
  }

  .inline-heading {
    display: block;
  }

  .inline-heading p {
    margin-top: 8px;
  }

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

  .shot-open img {
    height: 180px;
  }

  .gallery-actions {
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }

  .paper-news-footer {
    align-items: center;
  }

  .paper-news-footer > span {
    max-width: 70%;
  }

  .tool-directory {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .atlas-nav {
    min-height: 64px;
    padding: 10px 16px;
  }

  .atlas-brand img {
    height: 38px;
  }

  .atlas-search {
    display: none;
  }

  .atlas-menu {
    margin-left: auto;
  }

  .atlas-nav nav.expanded {
    top: 63px;
  }

  .landscape-feature {
    height: 775px;
  }

  .landscape-art {
    object-position: 58% 35%;
    opacity: .9;
  }

  .landscape-shade {
    background: linear-gradient(90deg, #071019c9, #0000 100%), linear-gradient(0deg, #0d1420c7, #0000 40%);
  }

  .feature-inner {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 32px;
    padding: 125px 25px 61px;
    display: flex;
  }

  .feature-copy {
    width: auto;
  }

  .feature-copy h1 {
    margin: 15px 0 18px;
    font-size: 48px;
  }

  .feature-copy p {
    max-width: 290px;
    font-size: 14px;
    line-height: 1.6;
  }

  .feature-ribbon {
    font-size: 11px;
  }

  .warcraft-button {
    padding: 10px 20px;
    font-size: 15px;
  }

  .feature-secondary {
    gap: 9px;
    width: auto;
  }

  .feature-secondary img {
    width: 78px;
    height: 71px;
  }

  .feature-secondary > a {
    gap: 12px;
    padding: 8px;
  }

  .feature-secondary h2 {
    font-size: 17px;
  }

  .feature-secondary p {
    font-size: 10px;
  }

  .atlas-content {
    margin-top: -27px;
    padding: 0 10px;
  }

  .parchment {
    border-radius: 4px;
    margin-bottom: 9px;
    padding: 23px 20px;
  }

  .paper-heading {
    margin-bottom: 20px;
    display: block;
  }

  .paper-heading h2 {
    letter-spacing: -.7px;
    font-size: 29px;
  }

  .paper-heading p {
    margin-top: 8px;
    font-size: 12px;
  }

  .paper-tabs {
    margin-top: 15px;
    display: inline-flex;
  }

  .paper-tabs button {
    padding: 7px 20px;
  }

  .paper-news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .paper-story > img {
    height: 180px;
  }

  .paper-story h3 {
    font-size: 24px;
  }

  .paper-story > p {
    font-size: 13px;
  }

  .paper-byline {
    font-size: 10px;
  }

  .paper-category {
    margin-top: 10px;
  }

  .paper-news-rows {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .paper-news-rows img {
    width: 86px;
    height: 64px;
    display: block;
  }

  .paper-news-rows h3 {
    font-size: 17px;
  }

  .paper-news-rows p {
    font-size: 11px;
  }

  .paper-news-footer {
    align-items: start;
    font-size: 9px;
  }

  .paper-news-footer a {
    white-space: nowrap;
    font-size: 10px;
  }

  .atlas-directory {
    grid-template-columns: 1fr;
  }

  .directory-group {
    border: 0;
    border-bottom: 1px solid #b49b7155;
    gap: 20px;
    display: flex;
    padding: 18px 0 23px !important;
  }

  .directory-group:first-child {
    padding-top: 0 !important;
  }

  .directory-group:last-child {
    padding-bottom: 0 !important;
  }

  .atlas-icon {
    float: none;
    width: 70px;
    height: 88px;
    margin: 0;
  }

  .directory-group h3 {
    min-height: 0;
    margin-bottom: 10px;
    font-size: 23px;
    display: block;
  }

  .directory-group strong {
    font-size: 16px;
  }

  .directory-group p {
    font-size: 12px;
  }

  .directory-group a {
    margin-top: 14px;
  }

  .gallery-heading h2 {
    font-size: 28px;
  }

  .gallery-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    display: flex;
  }

  .gallery-tabs {
    gap: 12px;
  }

  .gallery-tabs button {
    padding: 7px 0;
    font-size: 11px;
  }

  .warcraft-button.blue {
    font-size: 11px;
  }

  .community-grid {
    gap: 16px 12px;
  }

  .community-grid .community-shot:first-child, .community-grid .community-shot:last-child:nth-child(4) {
    grid-column: 1 / -1;
  }

  .shot-open img {
    height: 130px;
  }

  .community-shot:first-child .shot-open img, .community-shot:last-child:nth-child(4) .shot-open img {
    height: 185px;
  }

  .shot-caption h3 {
    font-size: 15px;
  }

  .gallery-footnote {
    font-size: 10px;
    display: block;
  }

  .gallery-footnote a {
    margin-top: 6px;
    display: block;
  }

  .footer-brand {
    font-size: 25px;
  }

  .footer-brand svg {
    width: 34px;
    height: 34px;
  }

  .footer-top > a:last-child {
    font-size: 10px;
  }

  .official-index strong {
    font-size: 21px;
  }
}

.parchment {
  background-color: #efdfbc;
  box-shadow: inset 0 0 3px 2px #7251294a, inset 0 0 35px #ac76332a, 0 3px 6px #412b204f;
}

.footer-top > a:not(.footer-brand) {
  color: #b5b3a8;
  font-size: 12px;
}

.footer-top > a:hover {
  color: #e2bd70;
}

@media (max-width: 580px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-brand {
    flex-basis: 100%;
  }

  .footer-top > a:last-child {
    margin-left: 0;
  }

  .footer-top > a:not(.footer-brand) {
    font-size: 11px;
  }
}

.landscape-art {
  object-position: 50% 0%;
  height: calc(100% - 74px);
  top: 74px;
}

@media (max-width: 850px) {
  .landscape-art {
    height: calc(100% - 65px);
    top: 65px;
  }
}

@media (max-width: 580px) {
  .landscape-art {
    object-position: 58% 0%;
    height: calc(100% - 64px);
    top: 64px;
  }
}

.atlas-nav-search {
  align-items: center;
  gap: 8px;
  display: none;
}

.atlas-search.is-open {
  z-index: 40;
}

.search-panel {
  z-index: 3;
  overscroll-behavior: contain;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  width: min(430px, 100vw - 32px);
  max-height: min(70vh, 560px);
  animation: search-panel-in .19s var(--out-quart) both;
  text-align: left;
  background: #0b1119f7;
  border: 1px solid #ad997759;
  border-radius: 7px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  overflow-y: auto;
  box-shadow: 0 26px 60px #000b, 0 0 0 1px #0000004d;
}

@keyframes search-panel-in {
  from {
    opacity: 0;
    translate: 0 -7px;
    scale: .985;
  }
}

.search-status {
  color: #a9b0ab;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 14px 12px;
  font-size: 12px;
  display: flex;
}

.search-spin {
  animation: .9s linear infinite search-spin;
}

@keyframes search-spin {
  to {
    rotate: 1turn;
  }
}

.search-group + .search-group {
  border-top: 1px solid #ffffff0f;
  margin-top: 6px;
  padding-top: 6px;
}

.search-group h2 {
  font: 600 9.5px/1 var(--font-body);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #b49a6a;
  margin: 0;
  padding: 8px 10px 5px;
}

.search-hit {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  animation: search-hit-in .24s var(--out-quart) both;
  animation-delay: calc(var(--hit, 0) * 22ms);
  background: none;
  border: 0;
  border-left: 2px solid #0000;
  border-radius: 5px;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  text-decoration: none;
  transition: background .14s, border-color .14s;
  display: flex;
}

@keyframes search-hit-in {
  from {
    opacity: 0;
    translate: 0 5px;
  }
}

.search-hit.is-active, .search-hit:hover, .search-hit:focus-visible {
  border-left-color: var(--accent, #e8c170);
  background: linear-gradient(90deg, #e8c17017, #e8c17005);
  outline: none;
}

.search-hit-main {
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: grid;
}

.search-hit-title {
  color: var(--accent, #f0e7d5);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12.5px;
  font-weight: 600;
  display: block;
  overflow: hidden;
}

.search-hit-title mark {
  color: #ffd98a;
  background: none;
}

.search-hit-title svg {
  vertical-align: -2px;
  opacity: .7;
  margin-left: 5px;
}

.search-hit-sub {
  color: #9ba59f;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 11px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.search-hit-sub mark {
  color: #cbbfa4;
  background: none;
}

.search-hit-where {
  letter-spacing: .4px;
  color: #9d9787;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  flex: none;
  max-width: 42%;
  padding: 3px 8px;
  font-size: 9.5px;
  overflow: hidden;
}

.search-all {
  color: #dcc189;
  width: 100%;
  font: 600 11px var(--font-body);
  cursor: pointer;
  background: none;
  border: 0;
  border-top: 1px solid #ffffff0f;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 9px;
  display: flex;
}

.search-all:hover {
  color: #ffd98a;
}

.search-page-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 26px;
}

.search-page-group + .search-page-group {
  margin-top: 26px;
}

.search-page-list {
  gap: 4px;
  margin-top: 10px;
  display: grid;
}

.search-page-list .search-hit {
  background: #0f151d80;
  border: 1px solid #ffffff0f;
  border-left: 2px solid #0000;
  border-radius: 7px;
  padding: 11px 12px;
  animation: none;
}

.search-page-list .search-hit-title {
  font-size: 14px;
}

.search-page-list .search-hit-sub {
  font-size: 12px;
}

@media (max-width: 700px) {
  .search-panel {
    width: auto;
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
  }

  .search-hit {
    flex-wrap: wrap;
  }

  .search-hit-where {
    order: 3;
    max-width: 100%;
    margin-left: 2px;
  }

  .search-page-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-panel, .search-hit {
    animation: none;
  }
}

@media (max-width: 580px) {
  .atlas-nav-search {
    display: flex;
  }
}

.search-hit-icon {
  object-fit: cover;
  background: #05090d;
  border: 1px solid #0006;
  border-radius: 4px;
  flex: none;
  width: 26px;
  height: 26px;
}

.search-hit-title.q0 {
  color: #9d9d9d;
}

.search-hit-title.q1 {
  color: #f5f3ee;
}

.search-hit-title.q2 {
  color: #1eff00;
}

.search-hit-title.q3 {
  color: #0070dd;
}

.search-hit-title.q4 {
  color: #a335ee;
}

.search-hit-title.q5 {
  color: #ff8000;
}

.search-hit-title.q6 {
  color: #e6cc80;
}

.search-hit-title.q7 {
  color: #0cf;
}

.search-terms {
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 10px 8px;
  display: flex;
}

.search-terms button {
  color: #d5dbd6;
  font: 11.5px var(--font-body);
  cursor: pointer;
  background: #ffffff08;
  border: 1px solid #ffffff17;
  border-radius: 20px;
  padding: 4px 10px;
}

.search-terms button:hover {
  color: #f2e3c3;
  border-color: #dabc8066;
}

/* [project]/src/app/mirage.css [app-client] (css) */
:root {
  --mirage-gutter: 45px;
}

.site-header-space {
  height: 80px;
}

@media (max-width: 1000px) {
  :root {
    --mirage-gutter: 24px;
  }
}

@media (max-width: 580px) {
  :root {
    --mirage-gutter: 22px;
  }
}

html {
  scroll-padding-top: 86px;
}

.atlas-header.mirage-header {
  background: none;
  border-bottom: 1px solid #0000;
  transition: background .35s, border-color .35s, box-shadow .35s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.mirage-header:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(#05080ae8, #05080ad6 40%, #05080a8c 66%, #05080a00);
  height: 170px;
  transition: opacity .35s;
  position: absolute;
  inset: 0 0 auto;
}

.mirage-header.is-scrolled {
  background: #0d1418;
  border-bottom-color: #8c754345;
  box-shadow: 0 12px 30px -20px #000;
}

.mirage-header.is-scrolled:before {
  opacity: 0;
}

.mirage-header .atlas-nav {
  max-width: 1300px;
  min-height: 70px;
  padding: 0 var(--mirage-gutter);
  gap: 30px;
}

.mirage-header .atlas-brand img {
  height: 54px;
}

@media (min-width: 851px) {
  .mirage-header .atlas-brand {
    transition: opacity .3s, visibility .3s;
  }

  .mirage-header:not(.is-branded) .atlas-brand {
    opacity: 0;
    visibility: hidden;
  }
}

.mirage-header .atlas-nav nav {
  gap: 23px;
}

.mirage-header .atlas-nav nav a {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c3c0b6;
  text-shadow: 0 1px 3px #000000b3;
  font-size: 11px;
}

.mirage-header .atlas-nav nav a:hover, .mirage-header .atlas-nav nav a[aria-current="page"] {
  color: #eac37a;
}

.mirage-header .atlas-nav nav .atlas-submenu a {
  letter-spacing: 0;
  text-transform: none;
  color: #e3e3df;
  font-size: 12.5px;
}

.mirage-header .atlas-nav nav .atlas-submenu a:hover {
  color: #eac37a;
}

.mirage-header .atlas-search {
  --well: #080d1099;
  --rim: #8b7a5a3d;
  max-width: 210px;
}

.mirage-header.is-scrolled .atlas-search {
  --well: #080d10;
  --rim: #69583b77;
}

.mirage-header .atlas-search input {
  font-size: 11px;
}

.mirage-top {
  color: #d8d5cc;
  background: #0d1418;
  padding-bottom: 65px;
  position: relative;
}

.mirage-hero {
  isolation: isolate;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.mirage-art {
  object-fit: cover;
  object-position: center 28%;
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mirage-hero:after {
  content: "";
  z-index: -1;
  background: linear-gradient(0deg, #0d1418 0%, #0d1418ad 13%, #0d141870 26%, #0d141845 39%, #0d14181e 52%, #0d141800 65%), linear-gradient(#0b12169c, #0b121642 14%, #0b121600 32%), radial-gradient(52% 55% at 49% 49%, #04080b9c, #04080b68 55%, #04080b24 100%);
  position: absolute;
  inset: 0;
}

.mirage-hero-inner {
  max-width: 1460px;
  height: 100%;
  padding: 92px var(--mirage-gutter) 70px;
  justify-content: center;
  align-items: center;
  margin: auto;
  display: flex;
  position: relative;
}

.mirage-intro {
  text-align: center;
  width: min(65%, 650px);
}

.mirage-intro > .mirage-eyebrow {
  color: #d8cfbe;
  font-size: 9px !important;
}

.mirage-eyebrow {
  letter-spacing: 2px;
  color: #f6efe4;
  text-transform: uppercase;
  text-shadow: 0 1px 4px #000, 0 0 16px #000000c4;
  font-weight: 600;
  font-size: 10px !important;
}

.mirage-rule {
  --ornament: #d2ae68;
  display: block;
  position: relative;
}

.mirage-rule:after {
  content: "";
  border: 1px solid var(--ornament);
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}

.mirage-rule {
  width: 218px;
  height: 10px;
  margin: 8px auto 0;
}

.mirage-rule:before {
  content: "";
  background: linear-gradient(90deg, #d2ae6800, #d2ae68b8 24% 43%, #d2ae6800 47% 53%, #d2ae68b8 57% 76%, #d2ae6800);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.mirage-wordmark {
  margin-top: 10px;
  display: block;
}

.mirage-wordmark img {
  width: 100%;
  max-width: 590px;
  height: auto;
  margin: auto;
  display: block;
}

.mirage-intro h1 {
  font: 400 41px/1.28 var(--font-title);
  letter-spacing: -.01em;
  color: #f1ebdd;
  text-wrap: balance;
  text-shadow: 0 2px 10px #000, 0 0 26px #000000b3;
  margin: 7px 0 0;
}

.mirage-game {
  right: var(--mirage-gutter);
  text-align: center;
  opacity: .88;
  width: 190px;
  position: absolute;
  top: 50%;
  transform: translateY(-38%);
}

.mirage-game > span {
  color: #f2ece0;
  letter-spacing: 1.3px;
  white-space: nowrap;
  text-shadow: 0 1px 4px #000, 0 0 16px #000000c4;
  font-size: 9px;
}

.mirage-game img {
  filter: drop-shadow(0 8px 16px #000a);
  width: auto;
  height: 118px;
  margin: 8px auto 0;
  display: block;
}

.mirage-scroll-cue {
  z-index: 2;
  color: #e2cfab;
  opacity: .72;
  place-items: center;
  width: 32px;
  height: 32px;
  display: grid;
  position: absolute;
  bottom: 82px;
  left: 50%;
  translate: -50%;
}

.mirage-scroll-glyph {
  animation: 4s ease-in-out infinite mirage-scroll-breathe;
  display: block;
}

@keyframes mirage-scroll-breathe {
  50% {
    opacity: .85;
    transform: translateY(5px);
  }
}

.mirage-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.forever-timeline {
  scroll-margin-top: 30px;
}

.timeline-heading {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.timeline-heading h2, .mirage-news h2 {
  font: 400 29px/1.3 var(--display);
  color: #eadcc2;
  margin: 5px 0 0;
}

.timeline-arrows {
  gap: 8px;
  display: flex;
}

.timeline-arrows button {
  color: #d9bf89;
  cursor: pointer;
  background: #101b21;
  border: 1px solid #8d774c60;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

.timeline-arrows button:disabled {
  opacity: .3;
  cursor: default;
}

.timeline-rail {
  scrollbar-width: thin;
  scrollbar-color: #675738 #111b20;
  scroll-snap-type: x proximity;
  gap: 0;
  padding: 0 0 14px;
  display: flex;
  position: relative;
  overflow-x: auto;
}

.timeline-rail button {
  color: #a6a9a5;
  cursor: pointer;
  scroll-snap-align: center;
  background: none;
  border: 0;
  flex-direction: column;
  flex: 0 0 155px;
  align-items: center;
  padding: 0 10px;
  display: flex;
  position: relative;
}

.milestone-date {
  letter-spacing: .6px;
  color: #aaa99f;
  margin-bottom: 12px;
  font-size: 10px;
}

.timeline-rail img {
  object-fit: cover;
  filter: saturate(.5) brightness(.65);
  border: 1px solid #6a6654;
  width: 49px;
  height: 49px;
  transition: all .2s;
}

.milestone-dot {
  z-index: 1;
  background: #142128;
  border: 1px solid #797364;
  width: 7px;
  height: 7px;
  margin: 17px 0 13px;
  display: block;
  position: relative;
  transform: rotate(45deg);
}

.timeline-rail button:after {
  content: "";
  background: repeating-linear-gradient(90deg, #0000 0 13px, #6b654746 13px 14px);
  border-top: 1px solid #6b654746;
  height: 7px;
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
}

.timeline-rail strong {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.milestone-frame {
  isolation: isolate;
  line-height: 0;
  display: block;
  position: relative;
}

.timeline-rail .selected img {
  filter: none;
  border-color: #e2bb68;
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px #e2bb6817, 0 0 20px #cfad4b40;
}

.timeline-rail .selected .milestone-dot {
  background: #e2bb68;
  border-color: #ffe3a4;
  box-shadow: 0 0 12px #e3be6780;
}

.timeline-rail .selected strong, .timeline-rail .selected .milestone-date {
  color: #e6c583;
  text-shadow: 0 0 14px #d7b46155;
}

.timeline-detail {
  border-bottom: 1px solid #87704438;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 143px;
  padding: 22px 0 20px;
  display: flex;
}

.timeline-detail h3 {
  font: 20px var(--display);
  color: #e4d6bb;
  margin: 7px 0;
}

.timeline-detail p {
  color: #a2a8a7;
  max-width: 670px;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.timeline-detail a {
  white-space: nowrap;
  color: #c2ab7e;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  display: flex;
}

.timeline-note {
  color: #858e90;
  margin: 12px 0 0;
  font-size: 9px;
  line-height: 1.7;
}

.mirage-news {
  margin-top: 50px;
}

.mirage-news-heading {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.mirage-cta {
  color: #e4ddcd;
  letter-spacing: 2px;
  background: linear-gradient(#355568, #1e3746);
  border: 1px solid #80909a66;
  justify-content: center;
  align-items: center;
  gap: 25px;
  min-height: 46px;
  padding: 0 25px;
  font-size: 10px;
  display: flex;
  box-shadow: inset 0 0 0 3px #0b1a2840;
}

.mirage-filters {
  gap: 27px;
  margin: 27px 0 18px;
  display: flex;
}

.mirage-filters button {
  color: #a6adae;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  font-size: 10px;
  display: flex;
}

.mirage-filters button:before {
  content: "◆";
  color: #6f7472;
  font-size: 7px;
}

.mirage-filters button[aria-pressed="true"] {
  color: #e8d7b6;
}

.mirage-filters button[aria-pressed="true"]:before {
  color: #be6a3b;
  text-shadow: 0 0 9px #d9913c;
}

.mirage-news-grid {
  grid-template-rows: 225px 225px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

.mirage-story {
  isolation: isolate;
  background: #152028;
  border: 1px solid #78684a4d;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mirage-story:after {
  content: "";
  z-index: -1;
  background: linear-gradient(0deg, #060e16f5, #07101970 45%, #0000 85%);
  position: absolute;
  inset: 0;
}

.mirage-story > img {
  object-fit: cover;
  z-index: -2;
  width: 100%;
  height: 100%;
  transition: transform .4s;
  position: absolute;
  inset: 0;
}

.mirage-story:hover > img {
  transform: scale(1.04);
}

.mirage-story:hover {
  border-color: #bba46c;
}

.mirage-story > div {
  width: 100%;
  padding: 23px;
}

.mirage-story h3 {
  font: 400 22px/1.25 var(--display);
  color: #f0e7d6;
  margin: 10px 0 0;
}

.mirage-story p {
  color: #c0c6c3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
}

.mirage-story-meta {
  color: #d3cdbd;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  display: flex;
}

.mirage-story-meta b {
  color: #ffead9;
  letter-spacing: 1px;
  background: #883421;
  padding: 4px 6px;
  font-size: 8px;
}

.mirage-read {
  color: #dabc80;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 10px;
  display: none;
}

.mirage-story.story-0 {
  grid-column: span 2;
}

.mirage-story.story-2 {
  grid-area: 1 / 4 / 3;
}

.mirage-story.story-4 {
  grid-column: span 2;
}

.mirage-story.story-1 p, .mirage-story.story-3 p {
  display: none;
}

.mirage-news-grid.filtered {
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
}

.filtered .mirage-story {
  grid-area: auto;
  min-height: 290px;
}

.mirage-all-news {
  color: #c8bb9f;
  letter-spacing: 2px;
  background: #1e262b55;
  border: 1px solid #77634435;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  margin-top: 17px;
  font-size: 10px;
  display: flex;
}

.mirage-all-news:hover {
  background: #2c353a;
}

.mirage-top + .atlas-content {
  padding-top: 40px;
}

.mirage-top button:focus-visible, .mirage-top a:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #eec986;
}

@media (min-width: 1700px) {
  .mirage-hero {
    height: 745px;
  }

  .mirage-hero-inner {
    padding-top: 118px;
  }
}

@media (max-width: 1100px) {
  .mirage-header .atlas-nav {
    padding: 0 var(--mirage-gutter);
    gap: 18px;
  }

  .mirage-header .atlas-brand span {
    display: none;
  }

  .mirage-header .atlas-nav nav {
    gap: 17px;
  }

  .mirage-header .atlas-search {
    max-width: 190px;
  }

  .mirage-wordmark img {
    max-width: 530px;
  }

  .mirage-intro h1 {
    font-size: 34px;
  }

  .mirage-game {
    width: 170px;
  }

  .mirage-game img {
    height: 104px;
  }

  .mirage-story > div {
    padding: 17px;
  }
}

@media (max-width: 850px) {
  .mirage-intro {
    width: 60%;
  }

  .mirage-header .atlas-brand span {
    display: block;
  }

  .mirage-header .atlas-nav nav {
    gap: 0;
  }

  .mirage-header .atlas-nav {
    min-height: 64px;
  }

  .mirage-hero {
    height: 640px;
  }

  .mirage-hero-inner {
    padding: 92px var(--mirage-gutter) 56px;
  }

  .mirage-wordmark img {
    max-width: 320px;
  }

  .mirage-rule {
    width: 210px;
  }

  .mirage-intro h1 {
    margin-top: 14px;
    font-size: 26px;
  }

  .mirage-intro > .mirage-eyebrow {
    letter-spacing: 1px;
    font-size: 8px !important;
  }

  .mirage-game {
    width: 130px;
  }

  .mirage-game > span {
    letter-spacing: 1px;
    font-size: 7px;
  }

  .mirage-game img {
    height: 82px;
  }

  .mirage-news-grid {
    grid-template-rows: 220px 220px;
    gap: 10px;
  }

  .mirage-story h3 {
    font-size: 20px;
  }

  .mirage-story-meta {
    gap: 6px;
    font-size: 8px;
  }

  .mirage-story > div {
    padding: 12px;
  }

  .timeline-detail a {
    white-space: normal;
  }

  .mirage-news h2 {
    font-size: 25px;
  }
}

@media (max-width: 580px) {
  .mirage-header .atlas-nav {
    padding: 0 var(--mirage-gutter);
  }

  .mirage-header .atlas-brand {
    font-size: 23px;
  }

  .mirage-header .atlas-search {
    max-width: none;
  }

  .mirage-hero {
    height: auto;
    min-height: 720px;
  }

  .mirage-art {
    object-position: 50% 0%;
    object-fit: cover;
    height: 520px;
  }

  .mirage-hero:after {
    background: linear-gradient(0deg, #0d1418 25%, #0d141880 56%, #0d141826 70%, #0d141800 84%);
  }

  .mirage-hero-inner {
    min-height: 720px;
    padding: 235px var(--mirage-gutter) 92px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
  }

  .mirage-intro {
    width: 100%;
  }

  .mirage-wordmark img {
    max-width: 280px;
  }

  .mirage-rule {
    width: 170px;
    margin-top: 10px;
  }

  .mirage-intro > .mirage-eyebrow {
    line-height: 1.7;
    font-size: 7px !important;
  }

  .mirage-intro h1 {
    margin-top: 12px;
    font-size: 23px;
  }

  .mirage-game {
    width: 130px;
    padding-top: 0;
    position: static;
    transform: none;
  }

  .mirage-game > span {
    font-size: 7px;
  }

  .mirage-game img {
    height: 76px;
    margin: 4px auto 0;
  }

  .mirage-scroll-cue {
    bottom: 43px;
  }

  .mirage-body {
    margin-top: 0;
    padding: 0 20px;
  }

  .timeline-heading h2 {
    font-size: 25px;
  }

  .timeline-heading {
    margin-bottom: 25px;
  }

  .timeline-rail button {
    flex-basis: 135px;
  }

  .timeline-detail {
    min-height: 195px;
    display: block;
  }

  .timeline-detail a {
    margin-top: 15px;
  }

  .timeline-note {
    font-size: 8px;
  }

  .mirage-news {
    margin-top: 35px;
  }

  .mirage-news-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .mirage-news h2 {
    font-size: 26px;
  }

  .mirage-cta {
    min-height: 41px;
    padding: 0 20px;
    font-size: 9px;
  }

  .mirage-news-grid, .mirage-news-grid.filtered {
    flex-direction: column;
    gap: 14px;
    display: flex;
  }

  .mirage-story, .filtered .mirage-story {
    min-height: 245px;
  }

  .mirage-story.story-2 {
    min-height: 330px;
  }

  .mirage-story > div {
    padding: 22px;
  }

  .mirage-story h3, .mirage-story.story-1 h3, .mirage-story.story-3 h3 {
    font-size: 24px;
  }

  .mirage-story-meta {
    font-size: 10px;
  }

  .mirage-story p {
    font-size: 12px;
  }

  .mirage-top {
    padding-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mirage-top *, .mirage-header, .mirage-header:before, .mirage-header .atlas-brand {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.mirage-filters button:before {
  content: "";
  background: #6f7472;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

.mirage-filters button[aria-pressed="true"]:before {
  background: #be6a3b;
  box-shadow: 0 0 9px #d9913c;
}

.mirage-body {
  max-width: 1560px;
  margin-top: -50px;
  padding-inline: clamp(20px, 4vw, 64px);
}

.mirage-header .atlas-nav {
  max-width: 1460px;
}

.mirage-hero-inner {
  max-width: 1460px;
  padding-inline: var(--mirage-gutter);
}

.mirage-art {
  object-position: center 40%;
}

.mirage-news-grid {
  grid-template-rows: 310px 245px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.mirage-story.story-0, .mirage-story.story-1 {
  grid-area: auto / span 3;
}

.mirage-story.story-2, .mirage-story.story-3, .mirage-story.story-4 {
  grid-area: auto / span 2;
}

.mirage-story.story-1 h3, .mirage-story.story-3 h3 {
  font-size: 24px;
}

.mirage-story h3 {
  font-size: 26px;
}

.mirage-story.story-0 h3, .mirage-story.story-1 h3 {
  font-size: 30px;
}

.mirage-story > div {
  padding: 28px;
}

.mirage-story.story-1 p {
  display: -webkit-box;
}

.mirage-story.story-2 .mirage-read {
  display: none;
}

.mirage-story-meta {
  font-size: 11px;
}

.mirage-story-meta b {
  font-size: 9px;
}

.mirage-news-grid.filtered .mirage-story {
  grid-area: auto;
  min-height: 310px;
}

.mirage-news-bulletins {
  min-width: 0;
}

.mirage-dispatch-grid {
  grid-template-columns: minmax(0, 2.4fr) repeat(2, minmax(0, .6fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 45px;
  display: grid;
}

.mirage-dispatch-grid > section {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.mirage-dispatch-small {
  background: #14212a;
  border: 1px solid #7a725133;
  padding: 18px;
}

.mirage-dispatch-small h3 {
  color: #e4d5b9;
  font: 22px var(--display);
  margin: 7px 0 5px;
}

.mirage-dispatch-small > p {
  color: #a8ada9;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.5;
}

.mirage-dispatch-list {
  display: grid;
}

.mirage-dispatch-list a {
  color: #e3d7bc;
  border-top: 1px solid #7a725133;
  gap: 5px;
  min-width: 0;
  padding: 14px 0;
  display: grid;
}

.mirage-dispatch-list a:hover strong, .mirage-dispatch-more:hover {
  color: #f2c985;
}

.mirage-dispatch-list time, .mirage-dispatch-list small {
  color: #929b9e;
  font-size: 11px;
  line-height: 1.4;
}

.mirage-dispatch-list strong {
  font: 17px/1.3 var(--display);
  overflow-wrap: anywhere;
}

.mirage-dispatch-more {
  color: #dabc80;
  letter-spacing: .06em;
  text-transform: uppercase;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 18px 0 2px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

@media (max-width: 1100px) {
  .mirage-dispatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mirage-news-bulletins {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .mirage-dispatch-grid {
    grid-template-columns: 1fr;
  }

  .mirage-news-bulletins {
    grid-column: auto;
  }
}

.mirage-news-bulletins > h3 {
  font: 25px var(--display);
  color: #e4d5b9;
  margin: 0 0 20px;
}

.mirage-bulletin {
  border-top: 1px solid #7a725133;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  transition: background .2s, color .2s;
  display: flex;
}

.mirage-bulletin:hover {
  background: #23323b60;
}

.mirage-bulletin > img {
  object-fit: cover;
  border: 1px solid #78684660;
  flex-shrink: 0;
  width: 175px;
  height: 98px;
}

.mirage-bulletin-mark {
  color: #bba67b;
  background: #16222a;
  border: 1px solid #78684660;
  flex-shrink: 0;
  place-items: center;
  width: 175px;
  height: 98px;
  display: grid;
}

.mirage-bulletin > div {
  flex: 1;
}

.mirage-bulletin > svg {
  color: #bba67b;
  flex-shrink: 0;
  margin-right: 20px;
}

.bulletin-meta {
  letter-spacing: 1px;
  color: #83b3d1;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  display: flex;
}

.bulletin-meta time {
  color: #929b9e;
  letter-spacing: 0;
}

.mirage-bulletin h4 {
  font: 23px/1.4 var(--display);
  color: #e3d7bc;
  margin: 10px 0 0;
}

.mirage-all-news {
  min-height: 52px;
  margin-top: 26px;
}

.event-popovers {
  z-index: 5;
  padding-top: 18px;
  position: relative;
}

.event-popovers .timeline-rail {
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding-top: 16px;
  padding-bottom: 12px;
}

.event-popovers .timeline-rail::-webkit-scrollbar {
  display: none;
}

.event-popovers .timeline-rail button {
  flex-basis: 165px;
  padding: 0 12px;
}

.event-popovers .timeline-rail img {
  border-radius: 2px;
  transition: transform .25s, filter .25s, box-shadow .25s;
}

.event-popovers .timeline-rail .selected img {
  transform: scale(1.2);
  box-shadow: 0 0 22px #e5bd574a;
}

.event-popovers .timeline-rail .selected strong {
  color: #f4d999;
  text-shadow: 0 0 15px #d7b46155;
}

.event-popovers .milestone-date {
  margin-bottom: 18px;
  transition: color .2s;
}

.event-popovers .timeline-rail button:after {
  top: 102px;
}

.timeline-bottom {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  display: flex;
}

.timeline-bottom .timeline-note {
  margin: 0;
  font-size: 9px;
}

.event-popup.timeline-detail {
  z-index: 8;
  background: #101c24;
  border: 1px solid #bb9557;
  width: 360px;
  max-width: 100%;
  min-height: 0;
  padding: 0;
  animation: .22s ease-out event-enter;
  display: block;
  position: absolute;
  bottom: calc(100% - 16px);
  box-shadow: 0 15px 55px #000b, 0 0 0 4px #11191bc9;
}

.event-popup-content {
  animation: .2s ease-out event-enter;
}

.event-popup-content > img {
  object-fit: cover;
  width: 100%;
  height: 92px;
  -webkit-mask-image: linear-gradient(#000 40%, #0000);
  mask-image: linear-gradient(#000 40%, #0000);
}

.event-popup-content > div {
  margin-top: -12px;
  padding: 0 22px 22px;
  position: relative;
}

.event-popup.timeline-detail p {
  color: #bcc3c4;
  font-size: 12px;
  line-height: 1.65;
}

.event-popup.timeline-detail a {
  color: #e3c586;
  margin-top: 14px;
  font-size: 11px;
  display: inline-flex;
}

.event-popup-close {
  color: #ead8b2;
  cursor: pointer;
  background: #0b141edc;
  border: 1px solid #af965e80;
  place-items: center;
  width: 28px;
  height: 28px;
  display: grid;
  position: absolute;
  top: 8px;
  right: 8px;
}

.event-countdown {
  color: #efd392;
  font-variant-numeric: tabular-nums;
  margin-top: 12px;
  font-size: 12px;
  display: block;
}

@keyframes event-enter {
  from {
    opacity: 0;
    transform: translateY(12px)scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.mirage-news[data-motion-ready] .motion-reveal {
  opacity: 0;
  transition: opacity .65s, transform .65s cubic-bezier(.2, .65, .3, 1), border-color .2s;
  transform: translateY(28px);
}

.mirage-news[data-motion-ready] .mirage-bulletin.motion-reveal {
  transform: translateX(-38px);
}

.mirage-news[data-motion-ready] .motion-reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

@media (min-width: 1700px) {
  .mirage-body {
    margin-top: -65px;
  }
}

@media (max-width: 1000px) {
  .mirage-news-grid {
    grid-template-rows: 280px 250px;
    gap: 14px;
  }

  .mirage-story > div {
    padding: 20px;
  }

  .mirage-story h3, .mirage-story.story-3 h3 {
    font-size: 21px;
  }

  .mirage-story.story-0 h3, .mirage-story.story-1 h3 {
    font-size: 25px;
  }

  .mirage-bulletin h4 {
    font-size: 20px;
  }

  .mirage-hero-inner {
    padding-inline: var(--mirage-gutter);
  }
}

@media (max-width: 580px) {
  .mirage-body {
    margin-top: 0;
    padding-inline: 20px;
  }

  .mirage-hero-inner {
    padding: 235px var(--mirage-gutter) 92px;
  }

  .mirage-art {
    object-position: 35% 25%;
  }

  .mirage-hero:after {
    background: linear-gradient(0deg, #0d1418 25%, #0d141880 60%, #0d141826 76%, #0d141800 92%);
  }

  .mirage-news-grid {
    gap: 16px;
  }

  .mirage-story, .mirage-story.story-2 {
    min-height: 270px;
  }

  .mirage-story h3, .mirage-story.story-0 h3, .mirage-story.story-1 h3, .mirage-story.story-3 h3 {
    font-size: 25px;
  }

  .event-popovers .timeline-rail button {
    flex-basis: 136px;
  }

  .timeline-bottom {
    gap: 10px;
  }

  .timeline-bottom .timeline-note {
    font-size: 8px;
    line-height: 1.7;
  }

  .timeline-arrows button {
    width: 32px;
    height: 32px;
  }

  .event-popup.timeline-detail {
    bottom: calc(100% - 10px);
  }

  .event-popup-content > img {
    height: 65px;
  }

  .event-popup-content > div {
    padding: 0 18px 18px;
  }

  .event-popup.timeline-detail h3 {
    font-size: 20px;
  }

  .mirage-bulletin {
    gap: 14px;
    padding: 19px 0;
  }

  .mirage-bulletin > img {
    width: 86px;
    height: 80px;
  }

  .mirage-bulletin h4 {
    margin-top: 7px;
    font-size: 16px;
  }

  .bulletin-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 8px;
  }

  .mirage-bulletin > svg {
    display: none;
  }

  .mirage-news-bulletins > h3 {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mirage-news[data-motion-ready] .motion-reveal, .mirage-news[data-motion-ready] .mirage-bulletin.motion-reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .event-popup, .event-popup-content {
    animation: none !important;
  }

  .event-popovers .timeline-rail img {
    transition: none;
  }
}

@media (min-width: 851px) {
  .mirage-news-grid:not(.filtered) {
    grid-template-rows: 220px 220px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .mirage-news-grid:not(.filtered):not(:has(.story-4)) .story-3 {
    grid-column: 1 / 7;
  }

  .mirage-news-grid:not(.filtered):not(:has(.story-2)) .story-1 {
    grid-row: 1 / 3;
  }

  .mirage-news-grid:not(.filtered):not(:has(.story-1)) .story-0 {
    grid-column: 1 / 7;
  }

  .mirage-news-grid:not(.filtered) .story-0 {
    grid-area: 1 / 1 / 3 / 5;
  }

  .mirage-news-grid:not(.filtered) .story-1 {
    grid-area: 1 / 5 / auto / 7;
  }

  .mirage-news-grid:not(.filtered) .story-2 {
    grid-area: 2 / 5 / auto / 7;
  }

  .mirage-news-grid:not(.filtered) .story-3 {
    grid-area: 3 / 1 / auto / 4;
  }

  .mirage-news-grid:not(.filtered) .story-4 {
    grid-area: 3 / 4 / auto / 7;
  }

  .mirage-news-grid:not(.filtered) .story-0 h3 {
    font-size: 36px;
  }

  .mirage-news-grid:not(.filtered) .story-1 h3, .mirage-news-grid:not(.filtered) .story-2 h3 {
    font-size: 23px;
  }

  .mirage-news-grid:not(.filtered) .story-1 p, .mirage-news-grid:not(.filtered) .story-2 p {
    display: none;
  }
}

.event-popup.timeline-detail {
  width: 280px;
}

.event-popup-content > img {
  height: 42px;
}

.event-popup-content > div {
  margin-top: -7px;
  padding: 0 15px 14px;
}

.event-popup.timeline-detail .mirage-eyebrow {
  letter-spacing: 1.3px;
  font-size: 8px !important;
}

.event-popup.timeline-detail h3 {
  margin: 6px 0;
  font-size: 18px;
}

.event-popup.timeline-detail p {
  font-size: 11px;
  line-height: 1.5;
}

.event-popup.timeline-detail a {
  margin-top: 10px;
  font-size: 10px;
}

.event-countdown {
  margin-top: 8px;
  font-size: 11px;
}

@media (max-width: 580px) {
  .event-popovers {
    margin-top: 28px;
  }
}

.event-popovers .timeline-rail {
  --milestone-min: 165px;
  scroll-snap-type: none;
  padding-inline: 0;
  display: block;
  overflow: hidden;
}

.timeline-track {
  display: flex;
}

.timeline-track[data-ready] {
  transition: transform .45s cubic-bezier(.25, 1, .5, 1);
}

.event-popovers .timeline-track button {
  flex: 0 0 var(--item-width, var(--milestone-min));
  min-width: 0;
}

.event-popup.timeline-detail {
  translate: -50%;
}

.event-popup.timeline-detail:after {
  content: "";
  height: 42px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 580px) {
  .event-popovers .timeline-rail {
    --milestone-min: 136px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-track[data-ready] {
    transition: none;
  }
}

.mirage-video {
  object-position: center 50%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.25, 1, .5, 1);
}

.mirage-video.is-playing {
  opacity: 1;
}

.mirage-video-toggle {
  z-index: 2;
  color: #e8d3a4;
  cursor: pointer;
  opacity: .7;
  background: #0b121a8c;
  border: 1px solid #e8c17055;
  border-radius: 50%;
  place-items: center;
  width: 32px;
  height: 32px;
  transition: opacity .2s, border-color .2s;
  display: grid;
  position: absolute;
  bottom: 22px;
  right: 24px;
}

.mirage-video-toggle:hover, .mirage-video-toggle:focus-visible {
  opacity: 1;
  border-color: #e8c170;
}

.mirage-video-toggle:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #ffd98a;
}

.mirage-header .atlas-nav {
  min-height: 80px;
}

@media (max-width: 1050px) {
  .site-header-space {
    height: 64px;
  }

  .mirage-header .atlas-nav {
    flex-wrap: wrap;
    gap: 0;
    min-height: 64px;
  }

  .mirage-header .atlas-brand {
    opacity: 1;
    visibility: visible;
  }

  .mirage-header .atlas-menu {
    order: 2;
    margin-left: auto;
    padding: 5px;
    display: block;
  }

  .mirage-header .atlas-search {
    order: 1;
    margin-left: auto;
    margin-right: 20px;
  }

  .mirage-header .atlas-nav nav {
    background: #0d1418;
    border-bottom: 1px solid #8c754366;
    padding: 15px 24px;
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
  }

  .mirage-header .atlas-nav nav.expanded {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 64px);
    display: flex;
    overflow-y: auto;
  }

  .mirage-header .atlas-nav nav a {
    padding: 13px 10px;
  }
}

.countdown {
  text-shadow: 0 2px 12px #000, 0 0 24px #000000b3;
  margin-top: 18px;
}

.countdown-label {
  color: #c9a86a;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.countdown-figures {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 460px);
  margin: 11px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.countdown-figures li {
  justify-items: center;
  display: grid;
  position: relative;
}

.countdown-figures li + li:before {
  content: "";
  background: linear-gradient(#0000, #e5d1a84d 35% 65%, #0000);
  width: 1px;
  position: absolute;
  top: 5px;
  bottom: 8px;
  left: 0;
}

.countdown-figures strong {
  color: #f2e6cd;
  min-width: 2ch;
  font-family: var(--display, inherit);
  font-variant-numeric: tabular-nums;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  line-height: 1;
}

.countdown-figures small {
  color: #c3b59a;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 7px;
  font-size: 9px;
}

.countdown-figures li:last-child strong {
  color: #e2bf75;
}

.countdown-when {
  color: #cbbd9f;
  letter-spacing: .12em;
  white-space: nowrap;
  opacity: 1;
  margin-top: 14px;
  font-size: 11px;
  transition: opacity .26s;
}

.countdown-when.is-fading {
  opacity: 0;
}

.countdown-done {
  color: #f2e6cd;
  margin-top: 8px;
  font-size: 16px;
}

@media (max-width: 640px) {
  .countdown {
    margin-top: 16px;
  }

  .countdown-figures {
    width: min(100%, 345px);
  }

  .countdown-figures strong {
    font-size: clamp(29px, 9vw, 39px);
  }

  .countdown-figures small {
    letter-spacing: .1em;
    font-size: 8px;
  }

  .countdown-when {
    letter-spacing: .09em;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mirage-scroll-glyph {
    animation: none;
  }

  .countdown-when {
    transition: none;
  }
}

@property --milestone-orbit {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.timeline-rail .headline img {
  filter: saturate(.9) brightness(.9);
  border-color: #c19a4f;
}

.timeline-rail .headline .milestone-frame:before {
  content: "";
  z-index: -1;
  background: conic-gradient(from var(--milestone-orbit),
    transparent 0 54%,
    #7a5a2a 68%,
    #ffe3a3 83%,
    #fff6dc 86%,
    transparent 93%);
  opacity: .75;
  transition: opacity .35s;
  animation: 4.5s linear infinite milestone-orbit;
  position: absolute;
  inset: -3px;
}

.timeline-rail .headline .milestone-dot {
  background: #e2bb68;
  border-color: #ffe3a4;
  width: 9px;
  height: 9px;
  margin: 16px 0 12px;
  box-shadow: 0 0 12px #e3be6766;
}

.timeline-rail .headline strong {
  font-family: var(--display);
  color: #eccf98;
  text-shadow: 0 0 16px #e3be6740;
  font-size: 14px;
}

.timeline-rail .headline.selected strong {
  color: #ffe3b0;
}

.timeline-rail .headline .milestone-date {
  color: #e0bd7c;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.timeline-rail .headline .milestone-date:before {
  content: "";
  vertical-align: 1px;
  border: 1px solid #d2ae68;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  display: inline-block;
  rotate: 45deg;
}

.timeline-rail .headline.selected .milestone-date {
  color: #ffdfa5;
}

.milestone-glow {
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(60% 46% at 50% 34%, #e3be6714, #0000 72%);
  position: absolute;
  inset: -2px -6px;
}

.timeline-rail .headline.selected img {
  filter: none;
  border-color: #ffe3a4;
  box-shadow: 0 0 0 3px #e2bb6817, 0 0 26px #cfad4b52, inset 0 0 22px #ffe3a41a;
}

.timeline-rail .headline.selected .milestone-frame:before {
  opacity: 1;
  inset: -4px;
}

.timeline-rail .headline.selected .milestone-glow {
  background: radial-gradient(58% 46% at 50% 34%, #e3be6733, #0000 74%);
}

@keyframes milestone-orbit {
  to {
    --milestone-orbit: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-rail .headline .milestone-frame:before {
    background: #c9a45f;
    animation: none;
  }
}

.event-when {
  gap: 3px;
  margin: 9px 0 0;
  padding: 0;
  font-size: 12.5px;
  list-style: none;
  display: grid;
}

.event-when li {
  color: #d5c8ae;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  display: grid;
}

.event-when span {
  color: #938a79;
  letter-spacing: .14em;
  text-transform: uppercase;
  align-self: center;
  font-size: 10.5px;
}

.mirage-empty-stories {
  color: #aeb5b5;
  grid-column: 1 / -1;
  margin: 12px 0;
  padding: 24px 0;
}

/* [project]/src/app/forever-home.css [app-client] (css) */
.atlas-home {
  color: #e4d5b9;
  background: #0d1418;
  padding-bottom: 0;
}

.forever-lower, .forever-footer-inner {
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.forever-lower {
  padding-top: 30px;
  padding-bottom: 90px;
}

.forever-explore {
  border-top: 1px solid #8c754345;
  padding-top: 56px;
}

.forever-section-heading {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
  display: flex;
}

.forever-section-heading h2, .forever-party h2, .forever-gallery .paper-heading h2 {
  font: 400 clamp(28px, 2.7vw, 40px)/1.2 var(--display);
  color: #e9ddc6;
  letter-spacing: -.5px;
  margin: 12px 0 0;
}

.forever-section-heading > p, .forever-party p, .forever-gallery .paper-heading p {
  color: #aeb5b5;
  font-size: 14px;
  line-height: 1.8;
}

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

.forever-path {
  background: #111c22;
  border: 1px solid #7e70523d;
  flex-direction: column;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  display: flex;
}

.forever-path:hover, .forever-path:focus-within {
  border-color: #bc985b99;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px #0003;
}

.forever-path-art {
  flex-shrink: 0;
  height: 215px;
  position: relative;
  overflow: hidden;
}

.forever-path-art:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#111c2200 0%, #111c2205 24%, #111c2214 42%, #111c2238 58%, #111c226e 72%, #111c22ad 85%, #111c22 100%);
  position: absolute;
  inset: 0;
}

.forever-path-art img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .7s;
}

.forever-path:hover img {
  transform: scale(1.045);
}

.forever-path-art > span {
  z-index: 1;
  font: 38px var(--display);
  color: #e6c78b99;
  position: absolute;
  bottom: 8px;
  left: 26px;
}

.forever-path-copy {
  background: #111c22;
  flex-direction: column;
  flex: 1;
  margin-top: -1px;
  padding: 18px 26px 26px;
  display: flex;
  position: relative;
}

.forever-path-copy .mirage-eyebrow {
  letter-spacing: 1.7px;
  font-size: 9px;
}

.forever-path h3 {
  font: 400 27px/1.25 var(--display);
  color: #e9ddc6;
  margin: 13px 0;
}

.forever-path p {
  color: #aeb5b5;
  min-height: 76px;
  font-size: 14px;
  line-height: 1.8;
}

.forever-path-links {
  border-top: 1px solid #8c754333;
  margin-top: auto;
  padding-top: 6px;
}

.forever-path-links a {
  color: #d9bb80;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  font-size: 13px;
  display: flex;
}

.forever-path-links a:hover {
  color: #ffe4b0;
}

.forever-path-links svg, .forever-shortcuts > a > svg:last-child {
  flex-shrink: 0;
  transition: transform .25s;
}

.forever-path-links a:hover svg, .forever-shortcuts > a:hover > svg:last-child {
  transform: translateX(4px);
}

.forever-shortcuts {
  border-block: 1px solid #8c754333;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  display: grid;
}

.forever-shortcuts > a {
  color: #b99a62;
  align-items: center;
  gap: 18px;
  padding: 27px 22px;
  transition: background .25s;
  display: flex;
}

.forever-shortcuts > a + a {
  border-left: 1px solid #8c754333;
}

.forever-shortcuts > a:hover {
  background: #1a262c;
}

.forever-shortcuts > a > div {
  flex: 1;
}

.forever-shortcuts h3 {
  font: 400 20px var(--display);
  color: #e4d5b9;
  margin: 0;
}

.forever-shortcuts p {
  color: #9fa8aa;
  margin: 7px 0 0;
  font-size: 12px;
}

.forever-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-block: 72px;
  display: grid;
}

.forever-party {
  background: radial-gradient(at 0 0, #79502726, #0000 70%), #121c21;
  border: 1px solid #a17b454d;
  flex-direction: column;
  align-items: start;
  gap: 26px;
  padding: 38px;
  display: flex;
}

.forever-party-mark {
  color: #d8b572;
  border: 1px solid #ba965d66;
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  width: 82px;
  height: 82px;
  display: grid;
  box-shadow: 0 0 35px #b96c1920, inset 0 0 25px #b96c1915;
}

.forever-party h2 {
  font-size: clamp(26px, 2.2vw, 31px);
}

.forever-party p {
  margin-top: 12px;
}

.forever-party > .mirage-cta {
  flex-shrink: 0;
  margin-top: auto;
}

.mirage-cta {
  isolation: isolate;
  gap: 18px;
  transition: transform .25s, border-color .25s, box-shadow .3s, background .3s;
  position: relative;
  overflow: hidden;
}

.mirage-cta:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, #0000 40%, #ffe7b52b 50%, #0000 60%);
  transition: transform .65s;
  position: absolute;
  inset: -100% -60%;
  transform: translateX(-65%);
}

.mirage-cta:hover, .mirage-cta:focus-visible {
  border-color: #f0ca80;
  transform: translateY(-2px);
  box-shadow: 0 5px 24px #c7983926, inset 0 0 16px #d9b86612;
}

.mirage-cta:hover:before, .mirage-cta:focus-visible:before {
  transform: translateX(65%);
}

.mirage-cta svg {
  flex-shrink: 0;
  transition: transform .3s;
}

.mirage-cta:hover svg, .mirage-cta:focus-visible svg {
  transform: translateX(4px);
}

.mirage-cta:active {
  transform: translateY(0);
}

.forever-gallery {
  border-top: 1px solid #8c754345;
  padding-top: 48px;
}

.forever-gallery .paper-heading {
  align-items: start;
  margin-bottom: 30px;
}

.forever-gallery .paper-heading p {
  margin-top: 14px;
}

.forever-gallery .gallery-actions {
  flex-direction: column-reverse;
  align-items: end;
  gap: 14px;
}

.forever-gallery .gallery-tabs button {
  color: #aeb5b5;
  min-height: 44px;
  font-size: 11px;
}

.forever-gallery .gallery-tabs button[aria-selected="true"] {
  color: #e8c78b;
  border-color: #bf9555;
}

.forever-gallery .community-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.forever-gallery .community-shot {
  grid-column: auto;
}

.forever-gallery .shot-open {
  background: #111c22;
  border-color: #8c754366;
  border-radius: 0;
}

.forever-gallery .community-shot .shot-open img {
  height: 210px;
}

.forever-gallery .shot-caption {
  align-items: start;
  padding-top: 15px;
}

.forever-gallery .shot-caption h3 {
  color: #e4d5b9;
  font: 400 21px/1.3 var(--display);
}

.forever-gallery .shot-caption p {
  color: #9fa8aa;
  margin-top: 7px;
  font-size: 11px;
}

.forever-gallery .applause {
  color: #e0b97b;
}

.forever-gallery .gallery-footnote {
  color: #9fa8aa;
  border-color: #8c754333;
  margin-top: 28px;
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.8;
}

.forever-gallery .gallery-footnote a {
  color: #e0bd7c;
  white-space: nowrap;
}

.forever-gallery .gallery-feedback {
  color: #e0bd7c;
}

.forever-gallery .submit-dialog {
  color: #e9ddc6;
  background: #111c22;
}

.forever-gallery .submit-dialog > p, .forever-gallery .submit-dialog small {
  color: #aeb5b5;
}

.forever-gallery .submit-dialog .dialog-close {
  color: #e0bd7c;
}

.forever-gallery .submit-dialog input {
  color: #e9ddc6;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  background: #0b141a;
  border-color: #8c754366;
}

.forever-gallery .submit-dialog input::file-selector-button {
  color: #e9ddc6;
  background: #263945;
  border-color: #8c754366;
}

.forever-gallery .submit-dialog .feedback {
  color: #edcc91;
}

.forever-lower a:focus-visible, .forever-lower button:focus-visible, .forever-footer a:focus-visible {
  outline-offset: 5px;
  outline: 2px solid #eec986;
}

.forever-explore:focus {
  outline: none;
}

footer.forever-footer {
  color: #aeb5b5;
  background: #090f13;
  border-top: 1px solid #8c754345;
  max-width: none;
  margin: 0;
  padding: 0;
}

.forever-footer-top {
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 45px;
  padding-block: 60px 48px;
  display: grid;
}

.forever-footer-intro img {
  width: 230px;
  height: auto;
}

.forever-footer-intro p {
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.8;
}

.forever-preview {
  color: #949d9f;
  font-size: 10px;
}

.forever-footer-group h2 {
  font: 400 21px var(--display);
  color: #e4d5b9;
  margin: 12px 0 18px;
}

.forever-footer-group a {
  width: fit-content;
  padding-block: 9px;
  font-size: 13px;
  transition: color .2s;
  display: block;
}

.forever-footer a:hover {
  color: #f0ca80;
}

.forever-footer-bottom {
  border-top: 1px solid #8c75432e;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 25px;
  display: flex;
}

.forever-footer-bottom p {
  color: #929b9e;
  max-width: 800px;
  font-size: 11px;
  line-height: 1.8;
}

.forever-footer-bottom a {
  color: #d9bb80;
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 12px;
  display: flex;
}

@media (max-width: 1100px) {
  .forever-paths {
    gap: 16px;
  }

  .forever-path-copy {
    padding: 16px 20px 20px;
  }

  .forever-path h3 {
    font-size: 24px;
  }

  .forever-shortcuts > a {
    gap: 12px;
    padding-inline: 14px;
  }

  .forever-shortcuts > a > svg:first-child {
    display: none;
  }

  .forever-duo {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .forever-party {
    gap: 22px;
    padding: 32px;
  }

  .forever-gallery .paper-heading {
    flex-direction: column;
  }

  .forever-gallery .gallery-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .forever-gallery .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .forever-footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 25px;
  }

  .forever-footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .forever-lower {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .forever-explore {
    padding-top: 38px;
  }

  .forever-section-heading {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  .forever-paths {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .forever-path-art {
    height: 230px;
  }

  .forever-path p {
    min-height: 0;
  }

  .forever-path h3 {
    font-size: 28px;
  }

  .forever-shortcuts {
    grid-template-columns: 1fr;
  }

  .forever-shortcuts > a + a {
    border-top: 1px solid #8c754333;
    border-left: 0;
  }

  .forever-shortcuts > a > svg:first-child {
    display: block;
  }

  .forever-duo {
    margin-block: 44px;
  }

  .forever-party {
    padding: 28px 24px;
  }

  .forever-party-mark {
    width: 60px;
    height: 60px;
  }

  .forever-party h2 {
    font-size: 27px;
  }

  .forever-gallery {
    padding-top: 35px;
  }

  .forever-gallery .gallery-actions {
    flex-direction: column;
    align-items: start;
    margin: 0;
  }

  .forever-gallery .community-grid {
    gap: 22px 14px;
  }

  .forever-gallery .community-shot .shot-open img {
    height: 150px;
  }

  .forever-gallery .shot-caption h3 {
    font-size: 19px;
  }

  .forever-gallery .gallery-footnote {
    display: block;
  }

  .forever-gallery .gallery-footnote a {
    margin-top: 12px;
    display: block;
  }

  .forever-footer-top {
    grid-template-columns: 1fr 1fr;
    padding-block: 38px;
  }

  .forever-footer-group:last-child {
    grid-column: 1 / -1;
  }

  .forever-footer-bottom {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .forever-lower *, .forever-lower :before, .mirage-cta, .mirage-cta:before, .mirage-cta svg {
    transition: none !important;
    animation: none !important;
  }

  .forever-path:hover, .forever-path:focus-within, .forever-path:hover img, .mirage-cta:hover, .mirage-cta:focus-visible, .mirage-cta:hover svg, .mirage-cta:focus-visible svg {
    transform: none;
  }
}

.forever-party-points {
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.forever-party-points li {
  color: #c0c6c3;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  line-height: 1.6;
  display: flex;
}

.forever-party-points svg {
  color: #dabc80;
  flex-shrink: 0;
}

/* [project]/src/app/community.css [app-client] (css) */
:root {
  --h-bg: #0d1418;
  --h-panel: #111c22;
  --h-panel-2: #15222a;
  --h-raised: #1a2932;
  --h-line: #8c754338;
  --h-line-strong: #8c754370;
  --h-ink: #e9ddc6;
  --h-muted: #aeb5b5;
  --h-faint: #7f8a8c;
  --h-gold: #dabc80;
  --h-gold-deep: #bb9557;
  --h-blue: #83b3d1;
  --h-green: #9ec48a;
  --h-red: #e0937c;
}

.sr-only {
  clip-path: inset(50%);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.hub-btn.small {
  min-height: 32px;
  padding: 6px 12px;
  font-size: 12px;
}

.hub-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  filter: none;
  transform: none;
}

.section-kicker {
  color: var(--h-gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  display: inline-flex;
}

.section-kicker:after {
  content: "";
  background: var(--h-gold-deep);
  width: 28px;
  height: 1px;
}

.md {
  color: var(--h-ink);
  overflow-wrap: anywhere;
  font-size: 14.5px;
  line-height: 1.65;
}

.md > * + * {
  margin-top: .7em;
}

.md a {
  color: var(--h-gold);
  text-underline-offset: 3px;
  -webkit-text-decoration: underline #dabc8066;
  text-decoration: underline #dabc8066;
}

.md a:hover {
  -webkit-text-decoration-color: var(--h-gold);
  text-decoration-color: var(--h-gold);
}

.md code {
  background: #ffffff10;
  border-radius: 4px;
  padding: 1px 5px;
  font: 12.5px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.md mark, .post-body mark {
  color: #f4e3bd;
  background: #dabc8030;
  border-radius: 3px;
  padding: 0 3px;
}

.md blockquote {
  border-left: 2px solid var(--h-line-strong);
  color: var(--h-muted);
  padding: 2px 0 2px 14px;
}

.md ul {
  padding-left: 20px;
}

.md-spoiler {
  color: #0000;
  cursor: help;
  background: #3a4146;
  border-radius: 3px;
  padding: 0 4px;
  transition: color .15s, background .15s;
}

.md-spoiler:hover, .md-spoiler:focus-visible {
  color: inherit;
  background: #ffffff12;
}

.md-out:after {
  content: "";
  opacity: .55;
  vertical-align: baseline;
  width: .62em;
  height: .62em;
  -webkit-mask: var(--out-arrow) center / contain no-repeat;
  -webkit-mask: var(--out-arrow) center / contain no-repeat;
  mask: var(--out-arrow) center / contain no-repeat;
  background: currentColor;
  margin-left: .28em;
  display: inline-block;
}

.md-out:hover:after, .md-out:focus-visible:after {
  opacity: 1;
}

:root {
  --out-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E");
}

.md-item {
  vertical-align: text-bottom;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  display: inline-flex;
  text-decoration: none !important;
}

.md-item-icon {
  object-fit: cover;
  background: #0a1013;
  border: 1px solid #ffffff1f;
  border-radius: 3px;
  width: 18px;
  height: 18px;
}

.md-item:hover .md-item-icon {
  border-color: var(--h-gold);
}

.md-item.q0 {
  color: #9d9d9d !important;
}

.md-item.q1 {
  color: #fff !important;
}

.md-item.q2 {
  color: #1eff00 !important;
}

.md-item.q3 {
  color: #0070dd !important;
}

.md-item.q4 {
  color: #a335ee !important;
}

.md-item.q5 {
  color: #ff8000 !important;
}

.md-way {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.md-way > span {
  color: var(--h-muted);
}

.copy-chip {
  border: 1px solid var(--h-line-strong);
  max-width: 100%;
  color: var(--h-gold);
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: #dabc800d;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 4px 5px 4px 11px;
  transition: border-color .25s, background .25s, color .25s;
  display: inline-flex;
}

.copy-chip:hover {
  border-color: var(--h-gold);
  background: #dabc8017;
}

.copy-chip:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: 2px;
}

.copy-chip code {
  color: var(--h-ink);
  background: none;
  padding: 0;
}

.copy-chip-pin {
  flex: none;
}

.copy-chip-note {
  min-width: 0;
  color: var(--h-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.copy-chip-say {
  color: var(--h-ink);
  font: 600 11px var(--font-body);
  background: #ffffff0f;
  border-radius: 999px;
  flex: none;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  transition: background .25s, color .25s;
  display: inline-flex;
}

.copy-chip:hover .copy-chip-say {
  color: #f4e3bd;
  background: #dabc8026;
}

.copy-chip-mark {
  place-items: center;
  display: inline-grid;
}

.copy-chip.is-done {
  color: var(--h-green);
  background: #9ec48a14;
  border-color: #9ec48a88;
}

.copy-chip.is-done .copy-chip-say, .copy-block.is-done .copy-chip-btn {
  color: var(--h-green);
  background: #9ec48a24;
}

.copy-chip.is-done .copy-chip-mark svg, .copy-block.is-done .copy-chip-mark svg {
  animation: .28s cubic-bezier(.2, .9, .3, 1) copy-tick;
}

@keyframes copy-tick {
  from {
    opacity: 0;
    transform: scale(.6);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .copy-chip, .copy-chip-say, .copy-chip-btn {
    transition: none;
  }

  .copy-chip.is-done .copy-chip-mark svg, .copy-block.is-done .copy-chip-mark svg {
    animation: none;
  }
}

.copy-chip-btn {
  color: var(--h-ink);
  font: 600 11px var(--font-body);
  cursor: pointer;
  background: #ffffff0f;
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  transition: background .25s, color .25s;
  display: inline-flex;
}

.copy-chip-btn:hover {
  color: #f4e3bd;
  background: #dabc8026;
}

.copy-block {
  background: #0a0f12;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  transition: border-color .25s;
  position: relative;
}

.copy-block.is-done {
  border-color: #9ec48a55;
}

.copy-block pre {
  margin: 0;
  padding: 12px 88px 12px 14px;
  overflow-x: auto;
}

.copy-block code {
  white-space: pre;
  background: none;
  padding: 0;
}

.copy-block .copy-chip-btn {
  position: absolute;
  top: 8px;
  right: 8px;
}

.post-status {
  color: var(--h-muted);
  background: #ffffff06;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 1.5;
  animation: .22s ease-out status-in;
  display: flex;
}

.post-status > svg {
  flex: none;
  margin-top: 2px;
}

.post-status strong {
  color: var(--h-ink);
  font-weight: 600;
  display: block;
}

.post-status p {
  margin: 1px 0 0;
}

.post-status.is-checking, .post-status.is-published {
  border-radius: 999px;
  align-items: center;
  width: fit-content;
  padding: 6px 12px 6px 8px;
}

.post-status.is-published {
  color: var(--h-green);
  border-color: #9ec48a55;
}

.post-status.is-review {
  border-color: #83b3d140;
}

.post-status.is-review > svg {
  color: var(--h-blue);
}

.post-status.is-edit {
  background: #dabc800c;
  border-color: #dabc8066;
}

.post-status.is-edit > svg {
  color: var(--h-gold);
}

.post-status.is-blocked {
  border-color: #e0937c55;
}

.post-status.is-blocked > svg {
  color: var(--h-red);
}

.post-status.is-error > svg {
  color: var(--h-muted);
}

.post-status-action {
  border: 1px solid var(--h-line-strong);
  color: var(--h-gold);
  font: 600 12px var(--font-body);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-radius: 4px;
  align-self: center;
  margin-left: auto;
  padding: 5px 11px;
}

.post-status-action:hover {
  border-color: var(--h-gold);
}

.post-status-rune {
  border: 1.5px solid #dabc8033;
  border-top-color: var(--h-gold);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .9s linear infinite rune;
  position: relative;
}

.post-status-rune:after {
  content: "";
  background: var(--h-gold);
  border-radius: 1px;
  animation: .9s linear infinite reverse rune;
  position: absolute;
  inset: 4.5px;
  transform: rotate(45deg);
}

.post-status-check {
  background: var(--h-green);
  color: #0d1418;
  border-radius: 50%;
  place-items: center;
  width: 18px;
  height: 18px;
  animation: .32s cubic-bezier(.22, 1, .36, 1) pop;
  display: grid;
}

@keyframes rune {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(.4);
  }
}

@keyframes status-in {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-status, .post-status-check {
    animation: none;
  }

  .post-status-rune, .post-status-rune:after {
    animation: 1.6s ease-in-out infinite pulse;
  }

  @keyframes pulse {
    50% {
      opacity: .45;
    }
  }
}

.discuss {
  border-top: 1px solid var(--h-line);
  margin-top: 56px;
  padding-top: 34px;
}

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

.discuss-head h2 {
  font: 400 26px/1.2 var(--font-title);
  color: var(--h-ink);
  margin-top: 6px;
}

.discuss-sort {
  border: 1px solid #ffffff12;
  border-radius: 999px;
  gap: 4px;
  padding: 3px;
  display: flex;
}

.discuss-sort button {
  color: var(--h-muted);
  font: 500 12px var(--font-body);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 999px;
  padding: 5px 13px;
}

.discuss-sort button[aria-pressed="true"] {
  color: var(--h-gold);
  background: #dabc801f;
}

.discuss-note {
  color: var(--h-muted);
  border: 1px dashed #ffffff1c;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
}

.discuss-note a {
  color: var(--h-gold);
  text-decoration: underline;
}

.discuss-list, .discuss-replies {
  margin: 0;
  padding: 0;
  list-style: none;
}

.discuss-list {
  gap: 26px;
  margin-top: 26px;
  display: grid;
}

.discuss-replies {
  border-left: 1px solid #ffffff10;
  gap: 16px;
  margin-top: 16px;
  padding-left: 16px;
  display: grid;
}

.comment {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  scroll-margin-top: 90px;
  display: grid;
}

.comment:target > .comment-main, .comment.is-linked > .comment-main {
  border-radius: 8px;
  animation: 2.4s ease-out flash;
}

@keyframes flash {
  from {
    background: #dabc8018;
  }
}

.comment.is-reply {
  grid-template-columns: 28px minmax(0, 1fr);
}

.comment-avatar {
  object-fit: cover;
  background: #1a2932;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.comment.is-reply .comment-avatar {
  width: 28px;
  height: 28px;
}

.comment.is-pending > .comment-main > .md {
  opacity: .7;
}

.comment-meta {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin-bottom: 4px;
  font-size: 12.5px;
  display: flex;
}

.comment-meta strong {
  color: var(--h-ink);
  font-size: 13.5px;
  font-weight: 600;
}

.comment-staff {
  color: var(--h-gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #dabc801f;
  border-radius: 3px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 600;
}

.comment-time, .comment-edited {
  color: var(--h-faint);
}

.comment-time:hover {
  color: var(--h-muted);
}

.comment-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  margin-top: 8px;
  display: flex;
}

.comment.is-gone .comment-main {
  gap: 8px;
  display: grid;
}

.comment-gone-mark {
  width: 36px;
  height: 36px;
  color: var(--h-faint);
  border: 1px dashed #ffffff26;
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.comment.is-gone.is-reply .comment-gone-mark {
  width: 28px;
  height: 28px;
}

.comment-gone-note {
  color: var(--h-muted);
  background: #ffffff04;
  border: 1px dashed #ffffff1c;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 13px;
  font-style: italic;
}

.sub-gone {
  color: var(--h-muted);
  background: #ffffff04;
  border: 1px dashed #ffffff1c;
  border-radius: 10px;
  margin: 18px 0;
  padding: 16px 18px;
  font-size: 14.5px;
  font-style: italic;
}

.modmenu {
  position: relative;
}

.modmenu-open[aria-expanded="true"] {
  filter: brightness(1.12);
}

.modmenu-panel {
  z-index: 40;
  border: 1px solid var(--h-line-strong);
  background: var(--h-panel);
  border-radius: 10px;
  gap: 10px;
  width: min(330px, 100vw - 32px);
  padding: 13px;
  display: grid;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  box-shadow: 0 18px 42px #000b;
}

.modmenu-panel .seg {
  justify-self: start;
}

.modmenu-panel .field small {
  color: var(--h-faint);
  font-size: 11.5px;
  line-height: 1.4;
}

.modmenu-foot {
  justify-content: flex-end;
  gap: 8px;
  display: flex;
}

@media (max-width: 560px) {
  .modmenu-panel {
    left: auto;
    right: 0;
  }
}

.comment-actions > button, .comment-unfold {
  color: var(--h-faint);
  font: 500 12px var(--font-body);
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 5px;
  padding: 3px 0;
  display: inline-flex;
}

.comment-actions > button:hover, .comment-unfold:hover {
  color: var(--h-gold);
}

.comment-vote {
  align-items: center;
  gap: 2px;
  margin-right: 2px;
  display: inline-flex;
}

.comment-vote button {
  width: 26px;
  height: 26px;
  color: var(--h-faint);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 5px;
  place-items: center;
  display: grid;
}

.comment-vote button:hover:not(:disabled) {
  color: var(--h-ink);
  background: #ffffff0d;
}

.comment-vote button[aria-pressed="true"] {
  color: var(--h-gold);
}

.comment-vote button[aria-pressed="true"] svg {
  fill: currentColor;
}

.comment-vote button:disabled {
  opacity: .35;
  cursor: default;
}

.comment-vote span {
  text-align: center;
  min-width: 18px;
  color: var(--h-muted);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  font-weight: 600;
}

.comment-vote span.up {
  color: var(--h-green);
}

.comment-vote span.down {
  color: var(--h-red);
}

.comment-error, .composer-error {
  color: var(--h-red);
  font-size: 12.5px;
}

.composer {
  gap: 8px;
  display: grid;
}

.composer.is-reply {
  margin-top: 12px;
}

.composer-box {
  background: #0a1013;
  border: 1px solid #ffffff1c;
  border-radius: 9px;
  transition: border-color .15s;
  position: relative;
}

.composer-box:focus-within {
  border-color: var(--h-gold-deep);
}

.composer-box.plain {
  background: none;
  border: 0;
}

.itag {
  z-index: 40;
  border: 1px solid var(--h-line-strong);
  background: var(--h-panel);
  border-radius: 9px;
  max-width: 460px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 4px);
  left: 8px;
  right: 8px;
  box-shadow: 0 18px 42px #000b;
}

.itag-head {
  color: var(--h-faint);
  padding: 2px 6px 6px;
  font-size: 12px;
}

.itag ul {
  gap: 1px;
  max-height: 260px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  overflow-y: auto;
}

.itag button {
  width: 100%;
  color: var(--h-ink);
  font: 13.5px var(--font-body);
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  align-items: center;
  gap: 9px;
  padding: 6px 7px;
  display: flex;
}

.itag button:hover, .itag button.is-on {
  background: #dabc8017;
}

.itag button img {
  background: #0a1013;
  border: 1px solid #ffffff1f;
  border-radius: 3px;
  flex: none;
  width: 22px;
  height: 22px;
}

.itag button span {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  font-weight: 600;
  overflow: hidden;
}

.itag button small {
  color: var(--h-faint);
  font-variant-numeric: tabular-nums;
  font-size: 11.5px;
}

.itag .q0 {
  color: #9d9d9d;
}

.itag .q1 {
  color: #fff;
}

.itag .q2 {
  color: #1eff00;
}

.itag .q3 {
  color: #0070dd;
}

.itag .q4 {
  color: #a335ee;
}

.itag .q5 {
  color: #ff8000;
}

.composer-tools {
  border-bottom: 1px solid #ffffff0f;
  gap: 2px;
  padding: 5px 6px;
  display: flex;
}

.composer-tools button {
  width: 28px;
  height: 26px;
  color: var(--h-faint);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 5px;
  place-items: center;
  display: grid;
}

.composer-tools button:hover {
  color: var(--h-ink);
  background: #ffffff0d;
}

.composer-tools button:has(span) {
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: auto;
  min-height: 28px;
  padding: 3px 7px;
  font-size: 11px;
  display: inline-flex;
}

.composer-tools button:focus-visible {
  outline-offset: 1px;
  outline: 2px solid #e5c57f;
}

@media (max-width: 480px) {
  .composer-tools {
    flex-wrap: wrap;
    gap: 3px;
  }

  .composer-tools button:has(span) {
    min-height: 34px;
  }
}

.composer textarea {
  width: 100%;
  min-height: 84px;
  color: var(--h-ink);
  font: 14px/1.6 var(--font-body);
  resize: vertical;
  background: none;
  border: 0;
  padding: 11px 13px;
  display: block;
}

.composer textarea:focus {
  outline: none;
}

.composer textarea::placeholder {
  color: var(--h-faint);
}

.composer textarea:disabled {
  opacity: .6;
}

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

.composer-count {
  color: var(--h-faint);
  margin-right: auto;
  font-size: 12px;
}

.report-dialog {
  border: 1px solid var(--h-line-strong);
  background: var(--h-panel);
  width: min(440px, 100vw - 32px);
  color: var(--h-ink);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 24px 60px #000a;
}

.report-dialog::backdrop {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #05080acc;
}

.report-dialog form {
  gap: 16px;
  padding: 20px 22px 22px;
  display: grid;
}

.report-dialog header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.report-dialog h2 {
  font: 400 22px var(--font-title);
}

.report-dialog p {
  color: var(--h-muted);
  font-size: 14px;
  line-height: 1.55;
}

.report-close {
  width: 32px;
  height: 32px;
  color: var(--h-muted);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  place-items: center;
  display: grid;
}

.report-close:hover {
  color: var(--h-ink);
  background: #ffffff10;
}

.report-dialog fieldset {
  border: 0;
  gap: 2px;
  margin: 0;
  padding: 0;
  display: grid;
}

.report-dialog legend {
  color: var(--h-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
}

.report-dialog fieldset label {
  cursor: pointer;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  font-size: 14px;
  display: flex;
}

.report-dialog fieldset label:hover {
  background: #ffffff08;
}

.report-dialog input[type="radio"] {
  accent-color: var(--h-gold);
}

.report-detail {
  color: var(--h-muted);
  gap: 6px;
  font-size: 13px;
  display: grid;
}

.report-detail textarea {
  color: var(--h-ink);
  font: 14px var(--font-body);
  resize: vertical;
  background: #0a1013;
  border: 1px solid #ffffff1c;
  border-radius: 7px;
  padding: 9px 11px;
}

.report-foot {
  justify-content: flex-end;
  gap: 8px;
  display: flex;
}

@media (max-width: 640px) {
  .discuss-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .discuss-replies {
    padding-left: 10px;
  }

  .comment {
    gap: 10px;
  }
}

.post-page {
  --post-w: 820px;
  background: var(--h-bg);
  color: var(--h-ink);
  padding-bottom: 80px;
}

.post-preview-bar {
  z-index: 30;
  color: #f4e3bd;
  text-align: center;
  background: #2a2210;
  padding: 9px 16px;
  font-size: 13px;
  position: sticky;
  top: 0;
}

.post-preview-bar a {
  color: var(--h-gold);
  text-decoration: underline;
}

.post-hero {
  isolation: isolate;
  align-items: end;
  min-height: min(68vh, 640px);
  padding: 120px 24px 48px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.post-hero.no-cover {
  min-height: 0;
  padding-top: 140px;
}

.post-hero-art {
  z-index: -2;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.post-hero:after {
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, #0d141800 20%, #0d1418b3 62%, var(--h-bg) 100%), linear-gradient(90deg, #0d1418cc, #0d141800 70%);
  position: absolute;
  inset: 0;
}

.post-hero-inner {
  justify-items: start;
  gap: 14px;
  width: min(1224px, 100%);
  margin: 0 auto;
  display: grid;
}

.post-back-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  display: flex;
}

.post-back-row .post-back + .post-back {
  border-left: 1px solid var(--h-line);
  padding-left: 18px;
}

.post-back {
  color: var(--h-muted);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: inline-flex;
}

.post-back:hover {
  color: var(--h-gold);
}

.post-hero h1 {
  max-width: 880px;
  font: 400 clamp(34px, 5vw, 62px)/1.05 var(--font-title);
  letter-spacing: -.01em;
  text-wrap: balance;
  text-shadow: 0 2px 24px #000a;
}

.post-dek {
  color: #e4dccb;
  text-wrap: pretty;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.55;
}

.post-byline {
  color: var(--h-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  margin-top: 6px;
  font-size: 13px;
  display: flex;
}

.post-byline > span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.post-guide-meta {
  color: var(--h-ink);
  flex-wrap: wrap;
  gap: 7px 16px;
  font-size: 12px;
  display: flex;
}

.post-guide-meta span {
  border: 1px solid var(--h-line-strong);
  background: #0d1418aa;
  border-radius: 4px;
  padding: 5px 9px;
}

.pe-guide-review {
  border: 1px solid var(--h-line);
  border-radius: 6px;
  gap: 7px;
  padding: 12px;
  display: grid;
}

.pe-guide-review strong {
  color: var(--h-ink);
  font-size: 13px;
}

.pe-guide-review p {
  color: var(--h-muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.pe-guide-review button {
  justify-self: start;
}

.pe-locked {
  border: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.pe-history {
  max-width: 1224px;
  color: var(--h-muted);
  margin: 32px auto 80px;
  padding: 0 24px;
}

.pe-history > div {
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  display: flex;
}

.pe-history h2 {
  font: 400 25px var(--font-title);
  color: var(--h-ink);
  margin: 0;
}

.pe-history > p {
  margin: 8px 0 16px;
  font-size: 13px;
}

.pe-history a {
  color: var(--h-gold);
  font-size: 12px;
}

.pe-history details {
  border-top: 1px solid var(--h-line);
  padding: 10px 0;
}

.pe-history summary {
  cursor: pointer;
  color: var(--h-ink);
}

.pe-history ol {
  overflow-wrap: anywhere;
  margin: 8px 0;
  padding-left: 25px;
  line-height: 1.6;
}

.post-author {
  color: var(--h-ink);
  font-weight: 500;
}

.post-author img {
  border-radius: 50%;
}

.post-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  width: min(1272px, 100%);
  margin: 36px auto 0;
  padding: 0 24px;
  display: grid;
}

.post-layout.has-toc .post-toc {
  grid-area: 1 / 2;
  position: static;
}

.post-layout.has-toc {
  grid-template-rows: auto 1fr;
  row-gap: 30px;
}

.post-layout.has-toc .post-main {
  grid-area: 1 / 1 / span 2;
}

.post-layout.has-toc .related-rail {
  grid-area: 2 / 2;
}

@media (min-width: 1700px) {
  .post-layout.has-toc .post-toc {
    grid-area: 1 / 1 / span 2;
    justify-self: start;
    width: 160px;
    margin: 0 0 0 -196px;
    position: sticky;
  }

  .post-layout.has-toc .related-rail {
    grid-row: 1 / span 2;
  }
}

.post-layout .post-main {
  max-width: var(--post-w);
}

.post-toc {
  align-self: start;
  position: sticky;
  top: 96px;
}

.post-toc ol {
  border-left: 1px solid var(--h-line);
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.post-toc a {
  color: var(--h-muted);
  border-left: 1px solid #0000;
  margin-left: -1px;
  padding: 6px 0 6px 14px;
  font-size: 13px;
  line-height: 1.4;
  display: block;
}

.post-toc a:hover {
  color: var(--h-gold);
  border-left-color: var(--h-gold);
}

.post-main {
  min-width: 0;
}

.related-rail section {
  scroll-margin-top: 96px;
}

.related-rail {
  grid-column: -2;
  align-self: start;
  gap: 28px;
  display: grid;
  position: sticky;
  top: 96px;
}

.post-body {
  color: #ddd6c6;
  font-size: 17px;
  line-height: 1.75;
}

.post-body > * + * {
  margin-top: 1.1em;
}

.post-body a {
  color: var(--h-gold);
  text-underline-offset: 3px;
  -webkit-text-decoration: underline #dabc8066;
  text-decoration: underline #dabc8066;
}

.post-body strong {
  color: var(--h-ink);
}

.post-chapter {
  font: 400 30px/1.2 var(--font-title);
  color: var(--h-ink);
  padding-top: 10px;
  scroll-margin-top: 90px;
  margin-top: 2.2em !important;
}

.post-chapter:before {
  content: "";
  background: var(--h-gold-deep);
  width: 36px;
  height: 2px;
  margin-bottom: 16px;
  display: block;
}

.post-body h3 {
  font: 600 19px/1.3 var(--font-body);
  color: var(--h-ink);
  margin-top: 1.8em !important;
}

.post-body ul, .post-body ol {
  padding-left: 22px;
}

.post-body li + li {
  margin-top: .35em;
}

.post-body li::marker {
  color: var(--h-gold-deep);
}

.post-body .font-serif {
  font-family: var(--font-title);
}

.post-body .font-display {
  font: 400 1.35em/1.4 var(--font-title);
  letter-spacing: .01em;
}

.post-body .size-large {
  font-size: 1.15em;
}

.post-body .size-lead {
  color: var(--h-ink);
  font-size: 1.3em;
  line-height: 1.55;
}

.post-body .color-gold {
  color: #e8cf98;
}

.post-body .color-blue {
  color: #9cc6e2;
}

.post-body .color-green {
  color: #b4d6a2;
}

.post-body .color-red {
  color: #eaa996;
}

.post-body .color-muted {
  color: var(--h-muted);
}

.post-figure {
  margin: 2em 0 !important;
}

.post-figure.is-full {
  margin-inline: calc(50% - min(50vw, 560px) + 12px) !important;
}

.post-figure.is-inline {
  max-width: 420px;
  margin-inline: auto !important;
}

.post-figure figcaption, .post-gallery figcaption {
  color: var(--h-muted);
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.55;
}

.post-figure figcaption strong {
  color: var(--h-ink);
  font-weight: 600;
}

.post-credit {
  color: var(--h-faint);
  margin-top: 3px;
  font-size: 12px;
  display: block;
}

.post-media-button {
  cursor: zoom-in;
  background: #0a1013;
  border: 0;
  border-radius: 10px;
  width: 100%;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.post-media-button img, .post-media-button video {
  width: 100%;
  height: auto;
  transition: transform .5s, filter .3s;
  display: block;
}

.post-media-button:hover img {
  filter: brightness(1.06);
  transform: scale(1.015);
}

.post-video, .post-youtube {
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.post-video img, .post-video video {
  object-fit: cover;
  height: 100%;
}

.play-mark {
  color: #f4e3bd;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #0d1418b3;
  border: 1px solid #f4e3bd80;
  border-radius: 50%;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  transition: transform .2s, background .2s;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
}

.play-mark svg {
  margin-left: 3px;
}

.post-media-button:hover .play-mark {
  color: #1b150c;
  background: #dabc80;
  transform: scale(1.08);
}

.post-youtube-art {
  background: radial-gradient(120% 90% at 20% 10%, #3b2a14, #0000 60%), radial-gradient(90% 80% at 90% 90%, #16303d, #0000 60%), #0e161b;
  position: absolute;
  inset: 0;
}

.post-youtube-thumb {
  object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.post-youtube-thumb + .post-youtube-art {
  background: linear-gradient(0deg, #071116d9, #0000 58%);
}

.post-youtube-copy {
  text-align: left;
  color: var(--h-ink);
  gap: 4px;
  display: grid;
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
}

.post-youtube-copy svg {
  color: #ff5b5b;
}

.post-youtube-copy strong {
  font: 400 21px/1.25 var(--font-title);
}

.post-youtube-copy small {
  color: var(--h-muted);
  font-size: 12px;
}

.post-gallery {
  margin: 2em 0 !important;
}

.post-gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  display: grid;
}

.post-gallery-grid.n1 {
  grid-template-columns: 1fr;
}

.post-gallery-grid.n3 > :first-child {
  grid-row: span 2;
}

.post-gallery-grid.n3, .post-gallery-grid.n4 {
  grid-template-columns: 2fr 1fr;
}

.post-gallery-grid.n4 {
  grid-template-columns: repeat(2, 1fr);
}

.post-gallery-grid .post-media-button {
  aspect-ratio: 4 / 3;
  height: 100%;
}

.post-gallery-grid img {
  object-fit: cover;
  height: 100%;
}

.post-callout {
  background: #ffffff05;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  gap: 14px;
  padding: 16px 18px;
  font-size: 15.5px;
  display: flex;
}

.post-callout > svg {
  flex: none;
  margin-top: 4px;
}

.post-callout strong {
  color: var(--h-ink);
  margin-bottom: 2px;
  display: block;
}

.post-callout p {
  margin: 0;
}

.post-callout.tone-note > svg {
  color: var(--h-muted);
}

.post-callout.tone-tip {
  background: #9ec48a0a;
  border-color: #9ec48a40;
}

.post-callout.tone-tip > svg {
  color: var(--h-green);
}

.post-callout.tone-warning {
  background: #e0937c0a;
  border-color: #e0937c50;
}

.post-callout.tone-warning > svg {
  color: var(--h-red);
}

.post-callout.tone-blizzard {
  background: #83b3d10c;
  border-color: #83b3d150;
}

.post-callout.tone-blizzard > svg {
  color: var(--h-blue);
}

.post-callout.tone-highlight {
  background: linear-gradient(135deg, #dabc8014, #dabc8004);
  border-color: #dabc8066;
}

.post-callout.tone-highlight > svg {
  color: var(--h-gold);
}

.post-quote {
  border-left: 2px solid var(--h-gold-deep);
  padding: 4px 0 4px 26px;
  margin: 2em 0 !important;
}

.post-quote p {
  font: italic 400 23px/1.5 var(--font-title);
  color: var(--h-ink);
}

.post-quote cite {
  color: var(--h-muted);
  letter-spacing: .04em;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  display: block;
}

.post-quote cite:before {
  content: "· ";
}

.post-copy {
  gap: 6px;
  display: grid;
}

.post-copy-label {
  color: var(--h-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.post-copy .copy-block {
  font-size: 14px;
}

.post-links {
  gap: 8px;
  display: grid;
}

.post-links a {
  background: #ffffff05;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  transition: border-color .15s, background .15s;
  display: flex;
  text-decoration: none !important;
}

.post-links a:hover {
  border-color: var(--h-line-strong);
  background: #dabc8008;
}

.post-links span {
  gap: 2px;
  display: grid;
}

.post-links strong {
  color: var(--h-ink);
  font-size: 15.5px;
}

.post-links small {
  color: var(--h-muted);
  font-size: 13px;
  line-height: 1.45;
}

.post-links .post-link-host {
  color: var(--h-faint);
  font-size: 12px;
}

.post-links svg {
  color: var(--h-faint);
  flex: none;
}

.post-facts {
  background: #ffffff14;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  display: grid;
  overflow: hidden;
  margin: 2em 0 !important;
}

.post-facts div {
  background: var(--h-bg);
  padding: 13px 16px;
}

.post-facts dt {
  color: var(--h-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.post-facts dd {
  color: var(--h-ink);
  margin: 3px 0 0;
  font-size: 15px;
}

.post-divider {
  border: 0;
  border-top: 1px solid var(--h-line-strong);
  width: 60px;
  margin: 2.4em auto !important;
}

.post-foot {
  border-top: 1px solid var(--h-line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  padding: 20px 0 0 !important;
}

.post-tags {
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.post-tags a {
  color: var(--h-muted);
  border: 1px solid #ffffff14;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12.5px;
  display: inline-block;
}

.post-tags a:hover {
  border-color: var(--h-line-strong);
  color: var(--h-gold);
}

.post-source {
  color: var(--h-gold);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: inline-flex;
}

.related-title {
  color: var(--h-faint);
  font: 600 10.5px var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.related-talk {
  border: 1px solid var(--h-line-strong);
  color: var(--h-gold);
  background: #dabc800a;
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  display: flex;
}

.related-talk span {
  flex: 1;
  display: grid;
}

.related-talk strong {
  color: var(--h-ink);
  font-size: 14px;
  font-weight: 600;
}

.related-talk small {
  color: var(--h-muted);
  font-size: 12px;
}

.related-talk:hover {
  background: #dabc8014;
}

.related-posts, .related-community {
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.related-posts a, .related-community a {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  display: grid;
}

.related-posts img, .related-community img, .related-note-mark {
  object-fit: cover;
  background: #1a2932;
  border-radius: 6px;
  width: 72px;
  height: 50px;
}

.related-note-mark {
  color: var(--h-gold);
  place-items: center;
  display: grid;
}

.related-posts span, .related-community span {
  gap: 2px;
  display: grid;
}

.related-posts small, .related-community small {
  color: var(--h-faint);
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  display: inline-flex;
}

.related-posts strong, .related-community strong {
  color: var(--h-ink);
  font: 400 14.5px/1.3 var(--font-title);
}

.related-posts a:hover strong, .related-community a:hover strong {
  color: var(--h-gold);
}

.related-empty {
  color: var(--h-faint);
  margin-top: 10px;
  font-size: 13px;
}

.related-share {
  color: var(--h-muted);
  background: #ffffff04;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  gap: 11px;
  margin-top: 12px;
  padding: 13px 14px;
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .15s;
  display: flex;
}

.related-share:hover, .related-share:focus-visible {
  border-color: var(--h-gold);
  background: #dabc800d;
  transform: translateY(-1px);
}

.related-share svg {
  color: var(--h-gold);
  flex: none;
  margin-top: 2px;
}

.related-share strong {
  color: var(--h-ink);
  margin-bottom: 2px;
  font-size: 14px;
  display: block;
}

.related-share small {
  font-size: 12.5px;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .related-share:hover, .related-share:focus-visible {
    transform: none;
  }
}

html.theatre-locked {
  overflow: hidden;
}

.theatre {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  color: var(--h-ink);
  background: #05080af2;
  border: 0;
  margin: 0;
  padding: 0;
}

.theatre::backdrop {
  background: #000c;
}

.theatre-inner {
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  width: min(1280px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 18px 24px 24px;
  display: grid;
}

.theatre header {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  display: flex;
}

.theatre h2 {
  font: 400 22px/1.2 var(--font-title);
}

.theatre-count {
  color: var(--h-faint);
  letter-spacing: .08em;
  font-size: 12px;
}

.theatre-icon {
  width: 42px;
  height: 42px;
  color: var(--h-ink);
  cursor: pointer;
  background: #ffffff08;
  border: 1px solid #fff2;
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.theatre-icon:hover {
  border-color: var(--h-gold);
  color: var(--h-gold);
}

.theatre-stage {
  place-items: center;
  min-height: 0;
  display: grid;
  position: relative;
}

.theatre-stage img, .theatre-stage video {
  object-fit: contain;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
}

.theatre-stage iframe {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 0;
  border-radius: 8px;
  width: 100%;
  max-height: 100%;
}

.theatre-step {
  width: 46px;
  height: 46px;
  color: var(--h-ink);
  cursor: pointer;
  background: #0d1418cc;
  border: 1px solid #fff2;
  border-radius: 50%;
  place-items: center;
  margin-top: -23px;
  display: grid;
  position: absolute;
  top: 50%;
}

.theatre-step:hover {
  border-color: var(--h-gold);
  color: var(--h-gold);
}

.theatre-step.prev {
  left: 8px;
}

.theatre-step.next {
  right: 8px;
}

.theatre footer {
  max-width: 760px;
}

.theatre footer p {
  color: #e4dccb;
  font-size: 15px;
  line-height: 1.55;
}

.theatre footer small {
  color: var(--h-faint);
  margin-top: 4px;
  font-size: 12px;
  display: block;
}

.theatre footer a {
  color: var(--h-gold);
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .post-layout, .post-layout.has-toc {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
  }

  .post-page {
    --post-w: none;
  }

  .post-main {
    grid-column: 1;
  }

  .related-rail {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .post-layout, .post-layout.has-toc {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 16px;
  }

  .post-layout.has-toc .post-toc {
    display: none;
  }

  .post-layout.has-toc .post-main, .post-layout.has-toc .related-rail {
    grid-area: auto / 1;
  }

  .related-rail {
    grid-column: 1;
    position: static;
  }

  .post-hero {
    min-height: 58vh;
    padding: 110px 16px 32px;
  }

  .post-body {
    font-size: 16px;
  }

  .post-figure.is-full {
    margin-inline: -16px !important;
  }

  .post-figure.is-full .post-media-button {
    border-radius: 0;
  }

  .theatre-inner {
    padding: 12px;
  }
}

.editor-desk {
  background: var(--h-bg);
  min-height: 100vh;
  color: var(--h-ink);
  padding: 92px 24px 80px;
}

.ed {
  width: min(1320px, 100%);
  margin: 0 auto;
}

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

.ed-head h1 {
  font: 400 34px/1.1 var(--font-title);
  margin-top: 6px;
}

.ed-tabs {
  border-bottom: 1px solid var(--h-line);
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
  display: flex;
}

.ed-tabs a {
  color: var(--h-muted);
  border-bottom: 2px solid #0000;
  align-items: center;
  gap: 7px;
  margin-bottom: -1px;
  padding: 10px 14px;
  font-size: 13.5px;
  display: inline-flex;
}

.ed-tabs a:hover {
  color: var(--h-ink);
}

.ed-tabs a[aria-current="page"] {
  border-bottom-color: var(--h-gold);
  color: var(--h-gold);
}

.ed-count {
  background: var(--h-crimson, #883421);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  min-width: 20px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 600;
}

.ed-subtabs {
  gap: 6px;
  margin-bottom: 18px;
  display: flex;
}

.ed-subtabs a {
  color: var(--h-muted);
  border: 1px solid #ffffff14;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
}

.ed-subtabs a[aria-current="page"] {
  border-color: var(--h-line-strong);
  color: var(--h-gold);
  background: #dabc8014;
}

.ed-post-filters {
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  margin: 18px 0;
  display: flex;
}

.ed-new-post {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.ed-post-filters label {
  color: var(--h-muted);
  gap: 5px;
  font-size: 12px;
  display: grid;
}

.ed-post-filters input, .ed-post-filters select {
  border: 1px solid var(--h-line);
  background: var(--h-panel);
  max-width: 220px;
  min-height: 36px;
  color: var(--h-ink);
  font: inherit;
  border-radius: 4px;
  padding: 5px 8px;
}

.ed-post-filters input:focus-visible, .ed-post-filters select:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: 2px;
}

.ed-post-count {
  color: var(--h-faint);
  margin-bottom: 8px;
  font-size: 12px;
}

.ed-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.ed-post-pages {
  color: var(--h-muted);
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  display: flex;
}

.ed-post-pages a {
  color: var(--h-gold);
}

.ed-empty {
  color: var(--h-muted);
  text-align: center;
  border: 1px dashed #ffffff1c;
  border-radius: 12px;
  justify-items: center;
  gap: 10px;
  padding: 60px 20px;
  display: grid;
}

.ed-empty svg {
  color: var(--h-green);
}

.ed-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.ed-table th {
  border-bottom: 1px solid var(--h-line);
  color: var(--h-faint);
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
}

.ed-table td {
  vertical-align: top;
  border-bottom: 1px solid #ffffff0b;
  padding: 12px;
}

.ed-row-action {
  justify-items: start;
  gap: 3px;
  display: grid;
}

.ed-row-action small[role="alert"] {
  color: var(--h-red);
}

.ed-confirm {
  border: 1px solid var(--h-line-strong);
  background: var(--h-panel);
  width: min(440px, 100vw - 32px);
  color: var(--h-ink);
  border-radius: 12px;
  margin: auto;
  padding: 24px;
  box-shadow: 0 20px 80px #0009;
}

.ed-confirm::backdrop {
  background: #05090dbb;
}

.ed-confirm h2 {
  font: 400 25px/1.2 var(--font-title);
  margin: 0 0 12px;
}

.ed-confirm p {
  color: var(--h-muted);
  line-height: 1.55;
}

.ed-confirm p strong {
  color: var(--h-ink);
}

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

.ed-confirm-body {
  color: var(--h-muted);
  padding: 20px;
  line-height: 1.55;
}

.ed-table tr:hover td {
  background: #ffffff04;
}

.ed-title {
  color: var(--h-ink);
  font: 400 17px/1.3 var(--font-title);
  display: block;
}

.ed-title:hover {
  color: var(--h-gold);
}

.ed-table small {
  color: var(--h-faint);
  font-size: 12px;
}

.ed-table .ed-mobile-change {
  display: none;
}

.pe-status {
  color: var(--h-muted);
  letter-spacing: .04em;
  background: #ffffff10;
  border-radius: 999px;
  margin: 0 6px 4px 0;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}

.pe-status.is-live {
  color: var(--h-green);
  background: #9ec48a22;
}

.pe-status.is-scheduled {
  color: var(--h-blue);
  background: #83b3d122;
}

.pe-status.is-highlight {
  color: var(--h-gold);
  background: #dabc8022;
}

.pe-status.is-archived {
  color: var(--h-faint);
  background: #ffffff08;
}

.hub-faint {
  color: var(--h-faint);
  font-size: 12.5px;
}

.pe-link {
  color: var(--h-gold);
  font: 500 12.5px var(--font-body);
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
}

.pe-link.danger {
  color: var(--h-red);
}

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

.field > span {
  color: var(--h-muted);
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.field small {
  color: var(--h-faint);
  font-size: 11.5px;
  line-height: 1.45;
}

.field input, .field select, .field textarea, .pe-style select, .queue-actions select, .pe-row input {
  min-height: 34px;
  color: var(--h-ink);
  font: 13.5px var(--font-body);
  background: #0a1013;
  border: 1px solid #ffffff1c;
  border-radius: 6px;
  padding: 6px 10px;
}

.field textarea {
  resize: vertical;
  line-height: 1.5;
}

.field input:focus, .field select:focus, .field textarea:focus, .pe-row input:focus {
  border-color: var(--h-gold-deep);
  outline: none;
}

.field input:disabled, .field textarea:disabled {
  opacity: .5;
}

.seg {
  border: 1px solid #ffffff12;
  border-radius: 8px;
  gap: 2px;
  padding: 3px;
  display: inline-flex;
}

.seg button {
  color: var(--h-muted);
  font: 500 12.5px var(--font-body);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  padding: 5px 11px;
}

.seg button[aria-pressed="true"] {
  color: var(--h-gold);
  background: #dabc801f;
}

.drop-target {
  position: relative;
}

.drop-target:hover, .drop-target:focus-within {
  border-color: var(--h-gold-deep);
}

.drop-target.is-dragging {
  border-color: var(--h-gold);
}

.drop-target.is-dragging:after {
  content: attr(data-drop);
  z-index: 5;
  border: 2px dashed var(--h-gold);
  border-radius: inherit;
  color: var(--h-gold);
  font: 400 clamp(17px, 2.4vw, 24px) var(--font-title);
  text-align: center;
  background: #0d1418e6;
  place-items: center;
  gap: 6px;
  animation: .18s ease-out drop-in;
  display: grid;
  position: absolute;
  inset: 0;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: scale(.99);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drop-target.is-dragging:after {
    animation: none;
  }
}

.library {
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  display: flex;
  position: relative;
}

.library-bar, .library-uploads, .library-foot {
  flex: none;
}

.library-bar {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.library-search {
  min-width: 220px;
  color: var(--h-faint);
  background: #0a1013;
  border: 1px solid #ffffff1c;
  border-radius: 8px;
  flex: 1;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  display: flex;
}

.library-search input {
  min-height: 36px;
  color: var(--h-ink);
  font: 13.5px var(--font-body);
  background: none;
  border: 0;
  flex: 1;
}

.library-search input:focus {
  outline: none;
}

.library-uploads {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.upload-pill {
  color: var(--h-muted);
  border: 1px solid #ffffff14;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  font-size: 12px;
  display: inline-flex;
}

.upload-pill.is-done {
  color: var(--h-green);
  border-color: #9ec48a55;
}

.upload-pill.is-error {
  color: var(--h-red);
  border-color: #e0937c55;
}

.library-body {
  flex: 1;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 0;
  display: grid;
}

.library-body.has-details {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.library.is-picker .library-body {
  align-items: stretch;
}

.library.is-picker .library-grid-wrap, .library.is-picker .library-details {
  overscroll-behavior: contain;
  min-height: 0;
  overflow-y: auto;
}

.library.is-picker .library-grid-wrap {
  padding-right: 4px;
}

.library.is-picker .library-details {
  position: static;
}

.library-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.library-tile {
  text-align: left;
  cursor: pointer;
  background: #0a1013;
  border: 2px solid #0000;
  border-radius: 9px;
  width: 100%;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.library-tile img, .library-video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  display: block;
}

.library-video {
  color: var(--h-faint);
  place-items: center;
  display: grid;
}

.library-tile.is-on {
  border-color: var(--h-gold);
}

.library-tile:hover img {
  filter: brightness(1.08);
}

.library-tile-meta {
  color: var(--h-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  font-size: 11.5px;
  display: flex;
  overflow: hidden;
}

.library-tile-meta svg {
  flex: none;
}

.library-tick {
  background: var(--h-gold);
  color: #1b150c;
  border-radius: 50%;
  padding: 3px;
  position: absolute;
  top: 6px;
  right: 6px;
}

.library-empty {
  color: var(--h-muted);
  text-align: center;
  padding: 40px;
}

.library-more {
  margin: 16px auto 0;
  display: flex;
}

.library-details {
  background: var(--h-panel);
  border: 1px solid #ffffff14;
  border-radius: 12px;
  gap: 12px;
  padding: 14px;
  display: grid;
  position: sticky;
  top: 90px;
}

.library-preview img, .library-preview video {
  object-fit: contain;
  background: #05080a;
  border-radius: 8px;
  width: 100%;
  max-height: 220px;
  display: block;
}

.library-facts {
  color: var(--h-faint);
  font-size: 12px;
}

.library-details-foot {
  justify-content: flex-end;
  gap: 8px;
  display: flex;
}

.library-foot {
  border-top: 1px solid var(--h-line);
  background: var(--h-panel);
  color: var(--h-muted);
  align-items: center;
  gap: 12px;
  padding: 12px 0 0;
  font-size: 13px;
  display: flex;
}

.library-foot > span {
  flex: 1;
}

.library-foot .hub-btn:disabled {
  opacity: 1;
  color: var(--h-faint);
  box-shadow: none;
  background: #ffffff07;
  border-color: #ffffff12;
}

.library-foot .hub-btn:not(:disabled):not(.ghost) {
  animation: .22s ease-out use-wake;
}

@keyframes use-wake {
  from {
    transform: scale(.97);
  }

  to {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .library-foot .hub-btn:not(:disabled):not(.ghost) {
    animation: none;
  }
}

.pe-dialog .library-foot {
  margin: 0 -18px;
  padding: 12px 18px;
}

.post-editor {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.pe-bar {
  z-index: 20;
  border-bottom: 1px solid var(--h-line);
  background: var(--h-bg);
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  display: flex;
  position: sticky;
  top: 64px;
}

.pe-back {
  color: var(--h-muted);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: inline-flex;
}

.pe-back:hover {
  color: var(--h-gold);
}

.pe-bar .pe-status {
  margin: 0;
}

.pe-dirty {
  color: var(--h-faint);
  font-size: 12.5px;
}

.pe-actions {
  gap: 8px;
  margin-left: auto;
  display: flex;
}

.pe-message {
  border-radius: 8px;
  margin-top: 12px;
  padding: 9px 13px;
  font-size: 13.5px;
}

.pe-message.is-ok {
  color: var(--h-green);
  background: #9ec48a14;
}

.pe-message.is-error {
  color: var(--h-red);
  background: #e0937c14;
}

.pe-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 36px;
  margin-top: 24px;
  display: grid;
}

.pe-canvas {
  gap: 10px;
  min-width: 0;
  max-width: 820px;
  display: grid;
}

.pe-intro-field {
  gap: 4px;
  min-width: 0;
  display: grid;
}

.pe-intro-field > span {
  color: var(--h-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.pe-intro-field small {
  color: var(--h-faint);
  font-size: 11.5px;
}

.pe-title, .pe-summary {
  border: 1px solid var(--h-line-strong);
  resize: none;
  overflow-wrap: anywhere;
  field-sizing: content;
  background: #ffffff06;
  border-radius: 8px;
  width: 100%;
  min-width: 0;
  display: block;
}

.pe-title {
  min-height: 94px;
  color: var(--h-ink);
  font: 400 clamp(28px, 4vw, 40px)/1.15 var(--font-title);
  padding: 10px 13px;
}

.pe-summary {
  min-height: 72px;
  color: var(--h-ink);
  font: 16px/1.5 var(--font-body);
  padding: 10px 13px;
}

.pe-title::placeholder, .pe-summary::placeholder {
  color: var(--h-faint);
}

.pe-title:focus-visible, .pe-summary:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: 2px;
  border-color: var(--h-gold);
}

.pe-chapter:focus, .pe-heading:focus {
  outline: none;
}

.pe-block {
  border: 1px solid #0000;
  border-radius: 10px;
  padding: 10px 12px 4px;
  transition: border-color .15s, background .15s;
  position: relative;
}

.pe-block:hover, .pe-block:focus-within {
  background: #ffffff03;
  border-color: #ffffff12;
}

.pe-block-head {
  color: var(--h-faint);
  letter-spacing: .12em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 10.5px;
  font-weight: 600;
  display: flex;
}

.pe-block-head div {
  opacity: .35;
  gap: 2px;
  transition: opacity .15s;
  display: flex;
}

.pe-block:hover .pe-block-head div, .pe-block:focus-within .pe-block-head div {
  opacity: 1;
}

.pe-block-head button {
  width: 26px;
  height: 24px;
  color: var(--h-muted);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 5px;
  place-items: center;
  display: grid;
}

.pe-block-head button:hover:not(:disabled) {
  color: var(--h-ink);
  background: #ffffff10;
}

.pe-block-head button:disabled {
  opacity: .3;
}

.pe-chapter {
  border: 0;
  border-bottom: 1px solid var(--h-line);
  width: 100%;
  color: var(--h-ink);
  font: 400 26px var(--font-title);
  background: none;
  padding: 4px 0;
}

.pe-heading {
  width: 100%;
  color: var(--h-ink);
  font: 600 18px var(--font-body);
  background: none;
  border: 0;
  padding: 4px 0;
}

.pe-text {
  width: 100%;
  color: var(--h-ink);
  font: 15px/1.65 var(--font-body);
  resize: vertical;
  background: none;
  border: 0;
  padding: 10px 12px;
  display: block;
}

.pe-text:focus {
  outline: none;
}

.pe-code {
  width: 100%;
  color: var(--h-ink);
  background: #0a0f12;
  border: 1px solid #ffffff1c;
  border-radius: 6px;
  padding: 10px 12px;
  font: 13px ui-monospace, Menlo, monospace;
}

.pe-style {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  display: flex;
}

.pe-style select {
  min-height: 28px;
  padding: 3px 8px;
  font-size: 12px;
}

.pe-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  display: grid;
}

.pe-grid .field {
  min-width: 0;
}

.pe-grid .field input {
  width: 100%;
  min-width: 0;
}

.pe-grid .wide, .pe-gallery .wide {
  grid-column: 1 / -1;
}

.pe-media-row {
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  display: grid;
}

.pe-media-fields {
  gap: 10px;
  display: grid;
}

.pe-media {
  width: 100%;
  color: var(--h-muted);
  cursor: pointer;
  background: #0a1013;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.pe-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  display: block;
}

.pe-media > span {
  aspect-ratio: 16 / 10;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  display: flex;
}

.pe-media small {
  color: var(--h-ink);
  background: #0d1418d9;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.pe-gallery {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  display: grid;
}

.pe-gallery-item {
  position: relative;
}

.pe-gallery-item img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  display: block;
}

.pe-gallery-swap {
  cursor: pointer;
  background: none;
  border: 2px solid #0000;
  border-radius: 6px;
  width: 100%;
  padding: 0;
  display: block;
}

.pe-gallery-swap:hover, .pe-gallery-swap:focus-visible {
  border-color: var(--h-gold);
  outline: none;
}

.pe-gallery-drop {
  width: 22px;
  height: 22px;
  color: var(--h-ink);
  cursor: pointer;
  background: #0d1418d9;
  border: 0;
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  top: 4px;
  right: 4px;
}

.pe-gallery-add {
  aspect-ratio: 1;
  color: var(--h-muted);
  font: 12px var(--font-body);
  cursor: pointer;
  background: none;
  border: 1px dashed #ffffff26;
  border-radius: 6px;
  place-items: center;
  gap: 4px;
  display: grid;
}

.pe-gallery-add:hover {
  border-color: var(--h-gold);
  color: var(--h-gold);
}

.pe-rows {
  justify-items: start;
  gap: 6px;
  display: grid;
}

.pe-row {
  grid-template-columns: 1fr 1.3fr 1.3fr 30px;
  gap: 6px;
  width: 100%;
  display: grid;
}

.pe-row.two {
  grid-template-columns: 1fr 1.6fr 30px;
}

.pe-row button {
  color: var(--h-faint);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 5px;
}

.pe-row button:hover {
  color: var(--h-red);
}

.pe-check {
  color: var(--h-muted);
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  font-size: 13px;
  display: inline-flex;
}

.pe-note {
  color: var(--h-faint);
  font-size: 11.5px;
  line-height: 1.45;
  display: block;
}

.pe-divider {
  border: 0;
  border-top: 1px solid var(--h-line-strong);
  margin: 10px 0;
}

.pe-adder {
  justify-content: center;
  height: 20px;
  margin: 2px 0;
  display: flex;
  position: relative;
}

.pe-adder:before {
  content: "";
  border-top: 1px dashed #0000;
  transition: border-color .15s;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.pe-adder:hover:before, .pe-adder.is-open:before {
  border-top-color: var(--h-line-strong);
}

.pe-adder-toggle {
  background: var(--h-bg);
  width: 22px;
  height: 22px;
  color: var(--h-faint);
  cursor: pointer;
  opacity: .45;
  border: 1px solid #ffffff1c;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  line-height: 1;
  transition: opacity .15s;
  display: inline-flex;
  position: relative;
}

.pe-adder-toggle svg {
  flex: none;
  display: block;
}

.pe-adder:hover .pe-adder-toggle, .pe-adder-toggle:focus-visible, .pe-adder.is-open .pe-adder-toggle {
  opacity: 1;
  border-color: var(--h-gold);
  color: var(--h-gold);
}

.pe-adder-menu {
  z-index: 10;
  border: 1px solid var(--h-line-strong);
  background: var(--h-panel);
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  width: min(560px, 90vw);
  padding: 8px;
  display: flex;
  position: absolute;
  top: 26px;
  box-shadow: 0 16px 40px #000a;
}

.pe-adder-menu button {
  color: var(--h-ink);
  font: 12.5px var(--font-body);
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff12;
  border-radius: 6px;
  padding: 6px 11px;
}

.pe-adder-menu button:hover {
  border-color: var(--h-gold);
  color: var(--h-gold);
}

.pe-side {
  gap: 22px;
  max-height: calc(100vh - 150px);
  padding-right: 4px;
  display: grid;
  position: sticky;
  top: 130px;
  overflow-y: auto;
}

.pe-side section {
  gap: 12px;
  display: grid;
}

.pe-side h2 {
  color: var(--h-faint);
  font: 600 10.5px var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pe-cover {
  width: 100%;
  color: var(--h-muted);
  cursor: pointer;
  background: #0a1013;
  border: 1px dashed #ffffff26;
  border-radius: 9px;
  padding: 0;
  display: block;
  overflow: hidden;
}

.pe-cover img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  display: block;
}

.pe-cover span {
  aspect-ratio: 16 / 9;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  display: flex;
}

.pe-cover:hover {
  border-color: var(--h-gold);
}

.pe-slug {
  background: #0a1013;
  border: 1px solid #ffffff1c;
  border-radius: 6px;
  align-items: center;
  display: flex;
}

.pe-slug small {
  color: var(--h-faint);
  padding-left: 10px;
  font-size: 13px;
}

.pe-slug input {
  flex: 1;
  min-width: 0;
  background: none !important;
  border: 0 !important;
  padding-left: 2px !important;
}

.pe-topics {
  gap: 4px;
  display: grid;
}

.pe-topics label {
  color: var(--h-ink);
  align-items: center;
  gap: 8px;
  font-size: 13px;
  display: flex;
}

.pe-tags {
  background: #0a1013;
  border: 1px solid #ffffff1c;
  border-radius: 6px;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px;
  display: flex;
}

.pe-tags button {
  color: var(--h-gold);
  font: 12px var(--font-body);
  cursor: pointer;
  background: #dabc801f;
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  display: inline-flex;
}

.pe-tags input {
  flex: 1;
  min-width: 90px;
  background: none !important;
  border: 0 !important;
  min-height: 26px !important;
}

.pe-dialog {
  border: 1px solid var(--h-line-strong);
  background: var(--h-panel);
  width: min(1180px, 100vw - 32px);
  height: min(820px, 100dvh - 32px);
  color: var(--h-ink);
  border-radius: 0;
  padding: 0;
  box-shadow: 0 30px 80px #000c;
}

.pe-dialog .library-tile, .pe-dialog .library-details, .pe-dialog .library-preview img, .pe-dialog .library-preview video, .pe-dialog .library-search, .pe-dialog .seg, .pe-dialog .seg button, .pe-dialog .field input, .pe-dialog .field textarea {
  border-radius: 0;
}

.pe-dialog[open] {
  grid-template-rows: auto minmax(0, 1fr);
  display: grid;
}

.pe-dialog::backdrop {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #05080acc;
}

.pe-dialog > header {
  border-bottom: 1px solid var(--h-line);
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  display: flex;
}

.pe-dialog > header h2 {
  font: 400 22px var(--font-title);
}

.pe-dialog .library {
  padding: 16px 18px 0;
  overflow: hidden;
}

.queue {
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.queue-item {
  background: var(--h-panel);
  border: 1px solid #ffffff14;
  border-radius: 12px;
  gap: 10px;
  padding: 16px 18px;
  display: grid;
}

.queue-head {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  font-size: 13px;
  display: flex;
}

.queue-head time {
  margin-left: auto;
}

.queue-kind {
  color: var(--h-muted);
  background: #ffffff10;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
}

.queue-kind.is-review {
  color: var(--h-blue);
  background: #83b3d122;
}

.queue-kind.is-error, .queue-kind.is-checking {
  background: #ffffff10;
}

.queue-kind.is-published {
  color: var(--h-green);
  background: #9ec48a22;
}

.queue-kind.is-removed, .queue-kind.is-blocked {
  color: var(--h-red);
  background: #e0937c22;
}

.queue-why {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.queue-chip {
  color: var(--h-gold);
  border: 1px solid #dabc8040;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  font-size: 12px;
  display: inline-flex;
}

.queue-chip.is-report {
  color: var(--h-red);
  border-color: #e0937c55;
}

.queue-content {
  background: #0a1013;
  border-radius: 8px;
  padding: 12px 14px;
}

.queue-content h3 {
  font: 400 18px var(--font-title);
  margin-bottom: 6px;
}

.queue-image {
  border-radius: 6px;
  max-width: 100%;
  max-height: 360px;
  margin-bottom: 10px;
  display: block;
}

.queue-yt {
  color: var(--h-gold);
  margin-bottom: 8px;
  text-decoration: underline;
  display: inline-block;
}

.queue-signals summary {
  color: var(--h-faint);
  cursor: pointer;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  display: inline-flex;
}

.queue-signals pre {
  max-height: 200px;
  color: var(--h-muted);
  background: #0a0f12;
  border-radius: 6px;
  margin-top: 6px;
  padding: 10px;
  font-size: 11.5px;
  overflow: auto;
}

.queue-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.queue-actions select {
  min-height: 32px;
  font-size: 12.5px;
}

.queue-more {
  border-top: 1px solid #ffffff0d;
  gap: 10px;
  padding-top: 10px;
  display: grid;
}

.ed-settings, .ed-team {
  gap: 18px;
  max-width: 900px;
  display: grid;
}

.ed-card {
  background: var(--h-panel);
  border: 1px solid #ffffff14;
  border-radius: 12px;
  gap: 10px;
  margin: 0;
  padding: 18px;
  display: grid;
}

.ed-card legend, .ed-card h3 {
  font: 400 19px var(--font-title);
  padding: 0 4px;
}

.ed-spotlight {
  max-width: 900px;
}

.ed-spotlight h2 {
  font: 400 23px var(--font-title);
  color: var(--h-ink);
}

.ed-spotlight > p {
  max-width: 720px;
  line-height: 1.55;
}

.ed-spotlight-fields {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
  display: grid;
}

.ed-spotlight-wide {
  grid-column: 1 / -1;
}

.ed-spotlight-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.ed-spotlight-actions .hub-btn:disabled {
  color: var(--h-faint);
  opacity: 1;
  background: #ffffff08;
  border-color: #ffffff12;
}

.ed-mode {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 8px;
  gap: 12px;
  padding: 10px 12px;
  display: flex;
}

.ed-mode.is-on {
  border-color: var(--h-line-strong);
  background: #dabc800a;
}

.ed-mode input {
  accent-color: var(--h-gold);
  margin-top: 3px;
}

.ed-mode span {
  gap: 2px;
  display: grid;
}

.ed-mode strong {
  font-size: 14px;
  font-weight: 600;
}

.ed-mode small {
  color: var(--h-muted);
  font-size: 13px;
  line-height: 1.45;
}

.ed-ok {
  color: var(--h-green);
  font-size: 13.5px;
}

.ed-warn {
  color: var(--h-gold);
  font-size: 13.5px;
}

.ed-lists {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.ed-lists textarea {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12.5px;
}

.ed-people {
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.ed-people li {
  border: 1px solid #ffffff0d;
  border-radius: 10px;
  grid-template-columns: 34px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  display: grid;
}

.ed-people img {
  border-radius: 50%;
}

.ed-people span {
  display: grid;
}

.ed-people strong {
  font-size: 14px;
  font-weight: 600;
}

.ed-people small {
  color: var(--h-faint);
  font-size: 12px;
}

.ed-switch {
  color: var(--h-ink);
  cursor: pointer;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  display: inline-flex;
}

.ed-switch input {
  accent-color: var(--h-gold);
}

@media (max-width: 980px) {
  .library-body, .pe-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .library-details, .pe-side {
    max-height: none;
    position: static;
  }

  .pe-media-row, .pe-grid, .ed-lists {
    grid-template-columns: minmax(0, 1fr);
  }

  .pe-row, .pe-row.two {
    grid-template-columns: 1fr 30px;
  }

  .pe-bar {
    flex-wrap: wrap;
    top: 56px;
  }

  .editor-desk {
    padding: 84px 16px 60px;
  }

  .ed-people li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .ed-table th:nth-child(3), .ed-table td:nth-child(3), .ed-table th:nth-child(4), .ed-table td:nth-child(4), .ed-table th:nth-child(5), .ed-table td:nth-child(5) {
    display: none;
  }

  .ed-table .ed-mobile-change {
    margin-top: 4px;
    display: block;
  }

  .ed-head {
    flex-wrap: wrap;
    align-items: start;
  }
}

.community-hall {
  background: var(--h-bg);
}

.hall-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 4px;
  display: flex;
}

.hall-body {
  width: min(var(--page-w), 100%);
  padding: 40px var(--page-gutter) 90px;
  gap: 48px;
  margin: 0 auto;
  display: grid;
}

.hall-feature-row {
  gap: 24px;
  display: grid;
}

.hall-feature-row.has-pick {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.hall-prompt {
  background: radial-gradient(circle at 90% 12%, #dabc8026, #0000 42%), linear-gradient(140deg, #19252a, #10191f 72%);
  border: 1px solid #dabc803d;
  border-radius: 14px;
  align-content: center;
  gap: 20px;
  min-height: 380px;
  padding: clamp(24px, 4vw, 54px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.hall-prompt:after {
  content: "";
  pointer-events: none;
  border: 1px solid #dabc8026;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: -110px;
  right: -55px;
  box-shadow: 0 0 0 48px #dabc8007, 0 0 0 96px #dabc8005;
}

.hall-prompt > * {
  z-index: 1;
  position: relative;
}

.hall-prompt-mark {
  width: 40px;
  height: 40px;
  color: var(--h-gold);
  border: 1px solid #dabc8050;
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.hall-prompt h2 {
  max-width: 560px;
  font: 400 clamp(28px, 3vw, 42px)/1.13 var(--font-title);
  color: var(--h-ink);
  margin: 11px 0 12px;
}

.hall-prompt p {
  max-width: 570px;
  color: var(--h-muted);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
}

.hall-pick {
  grid-template-rows: auto 1fr;
  min-width: 0;
  display: grid;
}

.hall-pick .hall-head {
  align-content: start;
}

.hall-pick .hall-head p, .hall-editorial .hall-head p {
  color: var(--h-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hall-pick .sub-card {
  max-width: 100%;
}

.hall-pick .sub-card-art img {
  max-height: 310px;
}

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

.hall-editorial-card {
  border: 1px solid var(--h-line);
  background: var(--h-panel);
  border-radius: 12px;
  min-width: 0;
  overflow: hidden;
}

.hall-editorial-card video, .hall-editorial-play {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a1013;
  width: 100%;
  display: block;
}

.hall-editorial-play {
  cursor: pointer;
  border: 0;
  padding: 0;
  position: relative;
}

.hall-editorial-play img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.hall-editorial-play-icon {
  width: 48px;
  height: 48px;
  color: var(--h-gold);
  background: #111a20d9;
  border: 1px solid #dabc8099;
  border-radius: 50%;
  place-items: center;
  margin: -24px;
  transition: transform .15s, background .15s;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
}

.hall-editorial-play:hover .hall-editorial-play-icon {
  background: #111a20;
  transform: scale(1.08);
}

.hall-editorial-copy {
  align-content: start;
  gap: 8px;
  padding: 16px;
  display: grid;
}

.hall-editorial-copy h3 {
  font: 400 21px/1.25 var(--font-title);
  color: var(--h-ink);
}

.hall-editorial-copy p {
  color: var(--h-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hall-editorial-copy a {
  width: fit-content;
  color: var(--h-gold);
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.hall-editorial-copy a:hover {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.hall-head {
  gap: 6px;
  margin-bottom: 18px;
  display: grid;
}

.hall-head h2 {
  font: 400 30px/1.15 var(--font-title);
  color: var(--h-ink);
}

.hall-top-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  display: grid;
}

.hall-top-grid > :first-child {
  grid-row: span 2;
}

.hall-top-grid > :first-child .sub-card-art img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}

.hall-top-grid > :first-child .sub-card-link {
  flex: 1;
}

.hall-top-grid > :first-child h3 {
  font-size: 24px;
}

.hall-toolbar {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.hall-toolbar .seg {
  max-width: 100%;
  overflow-x: auto;
}

.hall-toolbar .seg a {
  color: var(--h-muted);
  white-space: nowrap;
  border-radius: 6px;
  padding: 6px 13px;
  font-size: 13px;
}

.hall-toolbar .seg a[aria-current="page"] {
  color: var(--h-gold);
  background: #dabc801f;
}

.hall-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  display: grid;
}

.hall-empty {
  text-align: center;
  border: 1px dashed #ffffff1c;
  border-radius: 14px;
  padding: 40px;
}

.hall-empty h3 {
  font: 400 26px var(--font-title);
  color: var(--h-ink);
}

.hall-empty > p {
  color: var(--h-muted);
  margin-top: 6px;
}

.hall-ideas {
  text-align: left;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.hall-ideas li {
  color: var(--h-muted);
  background: #ffffff04;
  border: 1px solid #ffffff12;
  border-radius: 10px;
  gap: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
}

.hall-ideas svg {
  color: var(--h-gold);
  flex: none;
  margin-top: 2px;
}

.hall-ideas strong {
  color: var(--h-ink);
  display: block;
}

.sub-card {
  background: var(--h-panel);
  border: 1px solid #ffffff12;
  border-radius: 12px;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
  display: flex;
  overflow: hidden;
}

.sub-card:hover {
  border-color: var(--h-line-strong);
  transform: translateY(-2px);
}

.sub-card-link {
  display: flex;
}

.sub-card-art {
  background: #0a1013;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.sub-card-art img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  transition: transform .6s;
  display: block;
}

.sub-card:hover .sub-card-art img {
  transform: scale(1.03);
}

.play-mark.small {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
}

.sub-rank {
  width: 30px;
  height: 30px;
  color: var(--h-gold);
  font: 400 17px var(--font-title);
  border: 1px solid var(--h-line-strong);
  background: #0d1418d9;
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  top: 10px;
  left: 12px;
}

.sub-card-note {
  color: #d9d0bd;
  width: 100%;
  min-height: 150px;
  font: italic 400 16px/1.55 var(--font-title);
  background: radial-gradient(120% 120% at 0 0, #dabc800f, #0000 60%), #0e161b;
  gap: 10px;
  padding: 18px;
  display: flex;
}

.sub-card-note svg {
  color: var(--h-gold);
  flex: none;
  margin-top: 4px;
}

.sub-card-body {
  gap: 6px;
  padding: 12px 14px;
  display: grid;
}

.sub-card-kind {
  color: var(--h-faint);
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  display: flex;
}

.sub-card-kind a {
  color: var(--h-muted);
}

.sub-card-kind a:hover {
  color: var(--h-gold);
}

.sub-card h3 {
  font: 400 18px/1.3 var(--font-title);
  color: var(--h-ink);
}

.sub-card h3 a:hover {
  color: var(--h-gold);
}

.sub-card-foot {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  display: flex;
}

.sub-author {
  min-width: 0;
  color: var(--h-muted);
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  display: inline-flex;
}

.sub-author img {
  border-radius: 50%;
}

.sub-stats {
  color: var(--h-faint);
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 12.5px;
  display: inline-flex;
}

.sub-stats > span {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.like-btn {
  color: var(--h-muted);
  font: 600 13px var(--font-body);
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff1c;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  transition: color .15s, border-color .15s, background .15s;
  display: inline-flex;
}

.like-btn.is-compact {
  padding: 3px 9px;
  font-size: 12px;
}

.like-btn:hover:not(:disabled) {
  color: #f0a896;
  border-color: #e0937c80;
}

.like-btn.is-on {
  color: #f0a896;
  background: #e0937c14;
  border-color: #e0937c80;
}

.like-btn.is-on svg {
  fill: currentColor;
}

.like-btn:disabled {
  cursor: default;
  opacity: .7;
}

.favorite-action {
  align-items: center;
  gap: 8px;
  display: inline-flex;
  position: relative;
}

.favorite-btn {
  color: var(--h-muted);
  font: 600 13px var(--font-body);
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff1c;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  transition: color .15s, border-color .15s, background .15s;
  display: inline-flex;
}

.favorite-btn:hover:not(:disabled), .favorite-btn.is-on {
  color: #f47780;
  background: #f477801a;
  border-color: #f4778080;
}

.favorite-btn.is-compact {
  padding: 3px 7px;
}

.favorite-btn.is-on svg {
  fill: currentColor;
}

.favorite-btn:disabled {
  opacity: .65;
  cursor: wait;
}

.favorite-error {
  color: var(--h-red);
  font-size: 12px;
}

.community-sign-in-notice {
  z-index: 1000;
  bottom: max(20px, env(safe-area-inset-bottom));
  border: 1px solid var(--h-line-strong);
  width: max-content;
  max-width: calc(100vw - 32px);
  color: var(--h-ink);
  font: 500 14px/1.4 var(--font-body);
  background: #172128;
  border-radius: 12px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 14px 40px #0008;
}

.community-sign-in-notice a {
  color: var(--h-gold);
  text-underline-offset: 3px;
  flex: none;
  font-weight: 700;
  text-decoration: underline;
}

.community-sign-in-notice button {
  width: 28px;
  height: 28px;
  color: var(--h-muted);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  flex: none;
  place-items: center;
  display: grid;
}

.community-sign-in-notice button:hover {
  color: var(--h-ink);
  background: #ffffff12;
}

@media (max-width: 430px) {
  .community-sign-in-notice {
    gap: 9px;
    font-size: 12px;
  }
}

.account-favorites {
  gap: 0;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

#favorites {
  scroll-margin-top: 100px;
}

.account-favorites li {
  border-top: 1px solid var(--h-line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  display: flex;
}

.account-favorites li > div {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.account-favorites a {
  color: var(--h-ink);
  overflow-wrap: anywhere;
  font-weight: 600;
}

.account-favorites a:hover {
  color: var(--h-gold);
}

.account-favorites small, .account-favorites li > div > span {
  color: var(--h-muted);
}

.account-favorite-pages {
  color: var(--h-muted);
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 13px;
  display: flex;
}

.account-favorite-pages a {
  border: 1px solid var(--h-line);
  width: 34px;
  height: 34px;
  color: var(--h-ink);
  border-radius: 4px;
  place-items: center;
  font-size: 24px;
  text-decoration: none;
  display: grid;
}

.account-favorite-pages a:hover:not([aria-disabled="true"]) {
  border-color: var(--h-gold);
  color: var(--h-gold);
}

.account-favorite-pages a[aria-disabled="true"] {
  opacity: .35;
  pointer-events: none;
}

.like-btn {
  position: relative;
}

.like-btn.is-on svg {
  animation: .42s cubic-bezier(.2, .9, .3, 1) like-bounce;
}

.like-btn.is-on .like-count {
  animation: .32s ease-out count-lift;
}

.like-burst {
  pointer-events: none;
  border: 2px solid #f0a896;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -1px;
  animation: .52s ease-out forwards like-ring;
  position: absolute;
  top: 50%;
  left: 13px;
}

.like-btn.is-compact .like-burst {
  width: 14px;
  height: 14px;
  margin: -7px 0 0;
  left: 9px;
}

.action-float {
  z-index: 2;
  border: 1px solid var(--h-line-strong);
  color: var(--h-ink);
  font: 700 11px var(--font-body);
  white-space: nowrap;
  pointer-events: none;
  background: #172128;
  border-radius: 5px;
  padding: 3px 7px;
  animation: 1.4s ease-out forwards action-float;
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
}

@keyframes action-float {
  0% {
    opacity: 0;
    transform: translate(-50%, 4px);
  }

  15%, 65% {
    opacity: 1;
    transform: translate(-50%, -6px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -12px);
  }
}

@keyframes like-bounce {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.32);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes count-lift {
  from {
    opacity: .5;
    transform: translateY(3px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes like-ring {
  from {
    opacity: .75;
    transform: scale(.5);
  }

  to {
    opacity: 0;
    transform: scale(2.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .like-btn.is-on svg, .like-btn.is-on .like-count {
    animation: none;
  }

  .like-burst {
    display: none;
  }

  .action-float {
    opacity: 1;
    animation: none;
  }
}

.sub-page {
  background: var(--h-bg);
  min-height: 70vh;
  color: var(--h-ink);
  padding: 100px 24px 90px;
}

.sub-wrap {
  gap: 16px;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
}

.sub-layout {
  grid-template-columns: minmax(0, 860px) 300px;
  justify-content: space-between;
  width: 100%;
  margin-top: 4px;
  padding: 0;
}

.sub-layout .post-main {
  grid-column: 1;
  max-width: none;
}

.sub-layout .related-rail {
  grid-column: 2;
}

.sub-media {
  cursor: zoom-in;
}

.sub-media img {
  object-fit: contain;
  background: #05080a;
  max-height: 70vh;
}

.sub-head {
  gap: 10px;
  margin-top: 22px;
  display: grid;
}

.sub-head h1 {
  font: 400 clamp(28px, 4vw, 44px)/1.1 var(--font-title);
}

.sub-head .post-byline a {
  color: var(--h-gold);
}

.sub-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.sub-text {
  margin-top: 20px;
}

.sub-text .md {
  font-size: 16px;
}

.share-wrap {
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
}

.share-wrap h1 {
  font: 400 40px/1.1 var(--font-title);
}

.share-intro {
  color: var(--h-muted);
}

.share-intro a, .share-consent a {
  color: var(--h-gold);
  text-decoration: underline;
}

.share-form {
  gap: 18px;
  margin-top: 12px;
  display: grid;
}

.share-kinds {
  border: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  display: grid;
}

.share-kinds label {
  cursor: pointer;
  background: #ffffff04;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  gap: 4px;
  padding: 14px;
  transition: border-color .15s, background .15s;
  display: grid;
  position: relative;
}

.share-kinds label:hover {
  border-color: var(--h-line-strong);
}

.share-kinds label.is-on {
  border-color: var(--h-gold);
  background: #dabc800d;
}

.share-kinds input {
  opacity: 0;
  position: absolute;
}

.share-kinds label:has(input:focus-visible) {
  outline: 2px solid var(--h-gold);
  outline-offset: 2px;
}

.share-kinds svg {
  color: var(--h-gold);
}

.share-kinds strong {
  font-size: 14.5px;
}

.share-kinds small {
  color: var(--h-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.share-drop {
  background: #0a1013;
  border: 1px dashed #ffffff2a;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.share-drop:hover, .share-drop:focus-within {
  border-color: var(--h-gold-deep);
}

.share-form .composer-box, .share-form .composer-box textarea {
  width: 100%;
  min-width: 0;
}

.share-form .composer-box textarea {
  box-sizing: border-box;
  display: block;
}

.blue-video-trigger {
  border: 1px solid var(--h-line-strong);
  color: #fff;
  cursor: pointer;
  background: #0a1013;
  border-radius: 10px;
  width: min(100%, 640px);
  margin: 16px 0;
  padding: 0;
  display: grid;
  position: relative;
  overflow: hidden;
}

.blue-video-trigger img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  display: block;
}

.blue-video-trigger span {
  text-shadow: 0 2px 8px #000;
  background: #09121855;
  place-items: center;
  font-weight: 700;
  display: grid;
  position: absolute;
  inset: 0;
}

.blue-video-trigger:hover, .blue-video-trigger:focus-visible {
  border-color: var(--h-gold);
}

.share-drop > button {
  width: 100%;
  color: var(--h-muted);
  text-align: center;
  cursor: pointer;
  background: none;
  border: 0;
  justify-items: center;
  gap: 8px;
  padding: 42px 20px;
  display: grid;
}

.share-drop > button:hover {
  color: var(--h-ink);
}

.share-drop > button svg {
  color: var(--h-gold);
}

.share-drop strong {
  color: var(--h-ink);
  font-size: 15px;
}

.share-drop small {
  max-width: 460px;
  font-size: 12.5px;
  line-height: 1.5;
}

.share-drop.has-image {
  border-style: solid;
}

.share-drop img {
  object-fit: contain;
  width: 100%;
  max-height: 460px;
  display: block;
}

.share-remove {
  width: 34px;
  height: 34px;
  color: var(--h-ink);
  cursor: pointer;
  background: #0d1418d9;
  border: 0;
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  top: 10px;
  right: 10px;
}

.share-attach {
  color: var(--h-muted);
  background: #dabc800d;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
}

.share-attach strong {
  color: var(--h-ink);
}

.share-consent {
  color: var(--h-muted);
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
}

.share-consent input {
  accent-color: var(--h-gold);
  margin-top: 3px;
}

.share-form > .hub-btn {
  justify-self: start;
}

.share-after {
  gap: 8px;
  display: flex;
}

.rules h2 {
  font: 400 24px var(--font-title);
  margin-top: 18px;
}

.rules p, .rules li {
  color: #d6cfbf;
  font-size: 15.5px;
  line-height: 1.7;
}

.rules ul {
  padding-left: 20px;
}

.rules li::marker {
  color: var(--h-gold-deep);
}

@media (max-width: 900px) {
  .hall-feature-row.has-pick {
    grid-template-columns: 1fr;
  }

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

  .hall-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hall-top-grid > :first-child {
    grid-area: auto / span 2;
  }

  .hall-top-grid > :first-child .sub-card-art img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .hall-ideas, .share-kinds {
    grid-template-columns: 1fr;
  }

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

  .sub-layout .related-rail {
    grid-column: 1;
  }

  .hall-body {
    padding: 28px var(--page-gutter) 70px;
  }

  .sub-page {
    padding: 88px 16px 70px;
  }
}

@media (max-width: 560px) {
  .hall-editorial-grid, .ed-spotlight-fields {
    grid-template-columns: 1fr;
  }

  .hall-prompt {
    min-height: 0;
  }

  .hall-top-grid {
    grid-template-columns: 1fr;
  }

  .hall-top-grid > :first-child {
    grid-column: auto;
  }
}

.related-rail.is-embedded {
  grid-column: auto;
  margin-top: 22px;
  position: static;
}

.class-discuss {
  width: min(860px, 100% - 32px);
  margin: 0 auto 40px;
}

.notify-settings {
  gap: 18px;
  margin-top: 8px;
  display: grid;
}

.notify-settings .ed-card p {
  color: var(--h-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  display: flex;
}

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

.notify-table th, .notify-table td {
  text-align: center;
  border-bottom: 1px solid #ffffff0d;
  padding: 12px 10px;
}

.notify-table thead th {
  color: var(--h-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.notify-table tbody th {
  text-align: left;
  font-weight: 400;
}

.notify-table tbody th strong {
  color: var(--h-ink);
  font-size: 14px;
  display: block;
}

.notify-table tbody th small {
  color: var(--h-faint);
  font-size: 12.5px;
}

.notify-table input {
  width: 17px;
  height: 17px;
  accent-color: var(--h-gold);
}

.home-community {
  padding: 80px 0 100px;
}

.home-community .forever-section-heading p a {
  color: var(--h-gold);
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  display: inline-flex;
}

.home-community-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  display: grid;
}

.home-community .hall-empty {
  justify-items: center;
  gap: 10px;
  margin-top: 28px;
  display: grid;
}

@media (max-width: 1000px) {
  .home-community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .home-community-grid {
    grid-template-columns: 1fr;
  }
}

.sub-initial {
  width: 20px;
  height: 20px;
  color: var(--h-gold);
  background: #dabc8026;
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  display: grid;
}

.mod-dash {
  max-width: 900px;
  margin-bottom: 18px;
}

.mod-dash-head {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.mod-state {
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12px;
  font-weight: 600;
}

.mod-state.is-ok {
  color: var(--h-green);
  background: #9ec48a22;
}

.mod-state.is-off, .mod-state.is-failing {
  color: var(--h-gold);
  background: #dabc8022;
}

.mod-state.is-expired {
  color: var(--h-red);
  background: #e0937c22;
}

.mod-tiles {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  display: grid;
}

.mod-tiles > div {
  background: #0a1013;
  border: 1px solid #ffffff0f;
  border-radius: 10px;
  gap: 3px;
  padding: 12px 14px;
  display: grid;
}

.mod-tiles svg {
  color: var(--h-gold);
}

.mod-tiles span {
  color: var(--h-faint);
  font-size: 11.5px;
}

.mod-tiles strong {
  color: var(--h-ink);
  font: 400 20px/1.2 var(--font-title);
}

.mod-tiles small {
  color: var(--h-muted);
  font-size: 12px;
}

.mod-tiles small.is-warn {
  color: var(--h-gold);
}

.mod-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.mod-table th, .mod-table td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid #ffffff0b;
  padding: 8px 10px;
}

.mod-table thead th {
  color: var(--h-faint);
  font-size: 11px;
  font-weight: 600;
}

.mod-table th[scope="row"], .mod-table thead th:first-child {
  text-align: left;
  color: var(--h-muted);
  font-weight: 500;
}

.mod-test {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

@media (max-width: 760px) {
  .mod-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .mod-table {
    display: block;
    overflow-x: auto;
  }
}

.modlog td {
  vertical-align: top;
}

.modlog-when {
  color: var(--h-faint);
  white-space: nowrap;
  font-size: 12.5px;
}

.modlog-action {
  font-size: 13.5px;
  display: block;
}

.modlog-action.is-remove {
  color: var(--h-red);
}

.modlog-action.is-restore, .modlog-action.is-approve {
  color: var(--h-green);
}

.modlog td small {
  color: var(--h-faint);
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
  display: block;
}

.modlog-note {
  font-style: italic;
}

.modlog-what {
  font-size: 13.5px;
}

.modlog-excerpt {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 42ch;
  overflow: hidden;
}

/* [project]/src/app/hub.css [app-client] (css) */
.hub {
  --h-bg: #0d1418;
  --h-panel: #111c22;
  --h-panel-2: #15222a;
  --h-raised: #1a2932;
  --h-line: #8c754338;
  --h-line-strong: #8c754370;
  --h-ink: #e9ddc6;
  --h-muted: #aeb5b5;
  --h-faint: #7f8a8c;
  --h-gold: #dabc80;
  --h-gold-deep: #bb9557;
  --h-blue: #83b3d1;
  --h-green: #9ec48a;
  --h-red: #e0937c;
  --h-crimson: #883421;
  background: radial-gradient(1200px 380px at 12% -80px, #dabc8012, transparent 70%),
    var(--h-bg);
  color: var(--h-ink);
  min-height: 70vh;
  padding: 36px 0 110px;
  overflow-x: clip;
}

.hub a:focus-visible, .hub button:focus-visible, .hub input:focus-visible, .hub select:focus-visible, .hub textarea:focus-visible, .hub summary:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #eec986;
}

.hub .sr-only {
  clip-path: inset(50%);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.hub-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.hub-narrow {
  max-width: 880px;
}

.hub-head {
  border-bottom: 1px solid var(--h-line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  padding: 18px 0 30px;
  display: flex;
}

.hub-kicker {
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--h-gold);
  align-items: center;
  gap: 10px;
  font-size: 10px;
  display: inline-flex;
}

.hub-kicker:before {
  content: "";
  border: 1px solid var(--h-gold);
  width: 7px;
  height: 7px;
  rotate: 45deg;
}

.hub-head h1 {
  font-family: var(--font-title);
  color: #f3e8d2;
  margin: 12px 0 10px;
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 400;
  line-height: 1.08;
}

.hub-head p {
  color: var(--h-muted);
  max-width: 680px;
  line-height: 1.75;
}

.hub-head-actions {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.hub-crumb {
  color: var(--h-muted);
  align-items: center;
  gap: 6px;
  font-size: 12px;
  display: inline-flex;
}

.hub-crumb:hover {
  color: var(--h-gold);
}

.hub-btn {
  border: 1px solid var(--h-gold-deep);
  color: #1b150c;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(#e2c68c, #c9a664);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.hub-btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.hub-btn.ghost {
  color: var(--h-gold);
  border-color: var(--h-line-strong);
  background: none;
}

.hub-btn.ghost:hover {
  border-color: var(--h-gold);
  background: #dabc8010;
}

.hub-btn.danger {
  color: var(--h-red);
  background: none;
  border-color: #e0937c55;
}

.hub-btn.danger:hover {
  background: #e0937c14;
}

.hub-btn.discord {
  color: #fff;
  background: #5865f2;
  border-color: #6c78ff;
}

.hub-btn.small {
  min-height: 32px;
  padding: 5px 11px;
  font-size: 11.5px;
}

.hub-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.hub-grid {
  gap: 22px;
  display: grid;
}

.hub-grid.two {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
  align-items: start;
}

.hub-grid.cards {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.hub-grid.stats {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.hub-panel {
  background: linear-gradient(180deg, var(--h-panel-2), var(--h-panel));
  border: 1px solid var(--h-line);
  border-radius: 6px;
  min-width: 0;
  padding: 22px;
}

.hub-panel > h2, .hub-section-title {
  font-family: var(--font-title);
  color: #f3e8d2;
  margin: 0 0 6px;
  font-size: 23px;
  font-weight: 400;
}

.hub-panel > .hub-sub, .hub-sub {
  color: var(--h-muted);
  margin: 0 0 16px;
  font-size: 12.5px;
  line-height: 1.65;
}

.hub-section {
  margin-top: 40px;
}

.hub-section-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
  display: flex;
}

.hub-stat {
  background: var(--h-panel);
  border: 1px solid var(--h-line);
  border-radius: 6px;
  padding: 14px 16px;
}

.hub-stat span {
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--h-faint);
  font-size: 10px;
  display: block;
}

.hub-stat strong {
  font-family: var(--font-title);
  color: #f3e8d2;
  margin-top: 4px;
  font-size: 27px;
  font-weight: 400;
  display: block;
}

.hub-stat small {
  color: var(--h-muted);
  font-size: 11.5px;
}

.hub-badge {
  letter-spacing: .4px;
  border: 1px solid var(--h-line-strong);
  color: var(--h-gold);
  white-space: nowrap;
  background: #dabc800d;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  font-size: 10.5px;
  font-weight: 500;
  display: inline-flex;
}

.hub-badge.ok {
  color: var(--h-green);
  background: #9ec48a10;
  border-color: #9ec48a55;
}

.hub-badge.warn {
  color: #f0c46c;
  background: #f0c46c10;
  border-color: #f0c46c55;
}

.hub-badge.bad {
  color: var(--h-red);
  background: #e0937c12;
  border-color: #e0937c66;
}

.hub-badge.blue {
  color: var(--h-blue);
  background: #83b3d110;
  border-color: #83b3d155;
}

.hub-badge.muted {
  color: var(--h-muted);
  background: none;
  border-color: #aeb5b533;
}

.hub-form {
  gap: 16px;
  display: grid;
}

.hub-form fieldset {
  border: 1px solid var(--h-line);
  border-radius: 6px;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  display: grid;
}

.hub-form legend {
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--h-gold);
  padding: 0 6px;
  font-size: 11px;
}

.hub-field {
  color: #d8d2c3;
  align-content: start;
  gap: 6px;
  min-width: 0;
  font-size: 12px;
  display: grid;
}

.hub-field--narrow {
  max-width: 180px;
}

.hub-field small {
  color: var(--h-faint);
  font-size: 11px;
  line-height: 1.5;
}

.hub input:not([type="checkbox"]):not([type="radio"]), .hub select, .hub textarea {
  width: 100%;
  min-height: 40px;
  color: var(--h-ink);
  background: #0a1216;
  border: 1px solid #2d3b41;
  border-radius: 4px;
  padding: 8px 11px;
  font-size: 13px;
}

.hub textarea {
  resize: vertical;
  line-height: 1.55;
}

.hub input:hover, .hub select:hover, .hub textarea:hover {
  border-color: #3f5058;
}

.hub-row {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  display: grid;
}

.hub-check {
  color: #d8d2c3;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.5;
  display: flex;
}

.hub-check input {
  accent-color: var(--h-gold);
  margin-top: 3px;
}

.hub-alert {
  color: #f1c1b1;
  background: #e0937c12;
  border: 1px solid #e0937c55;
  border-radius: 5px;
  padding: 11px 14px;
  font-size: 12.5px;
  line-height: 1.6;
}

.hub-alert.ok {
  color: #cfe5c3;
  background: #9ec48a10;
  border-color: #9ec48a55;
}

.hub-alert.info {
  color: #cfe2ee;
  background: #83b3d10f;
  border-color: #83b3d155;
}

.hub-alert.gold {
  border-color: var(--h-line-strong);
  color: #eadbbd;
  background: #dabc800c;
}

.hub-table-wrap {
  border: 1px solid var(--h-line);
  border-radius: 6px;
  overflow-x: auto;
}

.hub-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12.5px;
}

.hub-table th, .hub-table td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #8c754322;
  padding: 10px 12px;
}

.hub-table th {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--h-faint);
  white-space: nowrap;
  background: #0b1317;
  font-size: 10px;
  font-weight: 500;
}

.hub-table tr:last-child td {
  border-bottom: 0;
}

.hub-table td.num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hub-table code, .hub code {
  color: #e3cfa3;
  background: #dabc800f;
  border-radius: 3px;
  padding: 1px 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
}

.hub-muted {
  color: var(--h-muted);
}

.hub-faint {
  color: var(--h-faint);
  font-size: 11.5px;
}

.hub-link {
  color: var(--h-gold);
  text-underline-offset: 3px;
  -webkit-text-decoration: underline #dabc8055;
  text-decoration: underline #dabc8055;
}

.hub-link:hover {
  -webkit-text-decoration-color: var(--h-gold);
  text-decoration-color: var(--h-gold);
}

.hub-empty {
  text-align: center;
  color: var(--h-muted);
  border: 1px dashed var(--h-line-strong);
  border-radius: 6px;
  padding: 38px 20px;
  font-size: 13px;
  line-height: 1.7;
}

.hub-empty strong {
  font-family: var(--font-title);
  color: #f3e8d2;
  margin-bottom: 4px;
  font-size: 21px;
  font-weight: 400;
  display: block;
}

.hub-tabs a {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--h-muted);
  border-bottom: 2px solid #0000;
  margin-bottom: -1px;
  padding: 10px 14px;
  font-size: 12px;
}

.hub-tabs a[aria-current] {
  color: var(--h-gold);
  border-color: var(--h-gold);
}

.hub-list {
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.hub-picks .hub-btn {
  justify-content: flex-start;
  width: 100%;
}

.hub-picked {
  background: var(--h-panel);
  border: 1px solid var(--h-line);
  border-radius: 4px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  display: flex;
}

.hub-picked .hub-btn {
  margin-left: auto;
}

.pl-card {
  background: var(--h-panel);
  border: 1px solid var(--h-line);
  color: inherit;
  border-radius: 6px;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  transition: border-color .2s, transform .2s;
  display: grid;
}

.pl-card:hover {
  border-color: var(--h-line-strong);
  transform: translateY(-1px);
}

.pl-date {
  text-align: center;
  border: 1px solid var(--h-line);
  background: #0a1216;
  border-radius: 5px;
  place-content: center;
  padding: 8px 4px;
  display: grid;
}

.pl-date span {
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--h-gold);
  font-size: 10px;
}

.pl-date strong {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}

.pl-date small {
  color: var(--h-muted);
  font-size: 11px;
}

.pl-card h3 {
  font-family: var(--font-title);
  color: #f3e8d2;
  margin: 4px 0;
  font-size: 20px;
  font-weight: 400;
}

.pl-meta {
  color: var(--h-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  font-size: 12px;
  display: flex;
}

.pl-fill {
  background: #ffffff10;
  border-radius: 2px;
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
}

.pl-fill i {
  background: linear-gradient(90deg, var(--h-gold-deep), var(--h-gold));
  height: 100%;
  display: block;
}

.pl-hero {
  border: 1px solid var(--h-line);
  background: linear-gradient(90deg, #0d1418 30%, #0d1418cc 60%, #0d141866), url("/art/crier-quest-1920.webp") right 30% / cover no-repeat;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: clamp(20px, 4vw, 36px);
  position: relative;
  overflow: hidden;
}

.pl-hero.raid {
  background: linear-gradient(90deg, #0d1418 30%, #0d1418cc 60%, #0d141866), url("/hearth/quest-hero-1400.webp") 100% / cover no-repeat;
}

.pl-hero.has-picture {
  background: linear-gradient(90deg, #0d1418 30%, #0d1418cc 60%, #0d141866),
    var(--picture) right center / cover no-repeat;
}

.pl-hero h1 {
  font-family: var(--font-title);
  color: #f6ecd6;
  margin: 10px 0 8px;
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 400;
}

.pl-hero .cancelled {
  opacity: .7;
  text-decoration: line-through;
}

.pl-when {
  color: #efe3c8;
  font-size: 15px;
}

.pl-roles {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  display: flex;
}

.pl-role {
  border: 1px solid var(--h-line);
  background: #0a1216cc;
  border-radius: 5px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  display: inline-flex;
}

.pl-role strong {
  font-variant-numeric: tabular-nums;
}

.pl-role.full {
  border-color: #9ec48a66;
}

.pl-roster {
  gap: 18px;
  display: grid;
}

.pl-group h3 {
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--h-gold);
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.pl-people {
  gap: 6px;
  display: grid;
}

.pl-person {
  background: #0a1216;
  border: 1px solid #8c754322;
  border-radius: 5px;
  grid-template-columns: 4px 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 0;
  display: grid;
  overflow: hidden;
}

.pl-person > i {
  background: var(--class, #8c7543);
  align-self: stretch;
}

.pl-person > img {
  border: 1px solid #000;
  box-shadow: 0 0 0 1px #5a6b7844;
}

.pl-person.mine {
  border-color: var(--h-line-strong);
  background: #dabc8009;
}

.pl-person-name {
  color: #f1e6cf;
  overflow-wrap: anywhere;
  font-size: 13.5px;
}

.pl-person-name small {
  color: var(--h-muted);
  font-size: 11.5px;
  display: block;
}

.pl-person-tools {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  display: flex;
}

.pl-person-tools select {
  width: auto !important;
  min-height: 30px !important;
  padding: 3px 6px !important;
  font-size: 11.5px !important;
}

.pl-live {
  color: var(--h-green);
  align-items: center;
  gap: 6px;
  font-size: 11px;
  display: inline-flex;
}

.pl-live:before {
  content: "";
  background: currentColor;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2.4s infinite pl-pulse;
  box-shadow: 0 0;
}

@keyframes pl-pulse {
  70% {
    box-shadow: 0 0 0 7px #0000;
  }
}

.pl-segment {
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  display: grid;
}

.pl-segment label {
  position: relative;
}

.pl-segment input {
  opacity: 0;
  position: absolute;
}

.pl-segment span {
  min-height: 38px;
  color: var(--h-muted);
  cursor: pointer;
  text-align: center;
  border: 1px solid #2d3b41;
  border-radius: 4px;
  place-items: center;
  padding: 4px;
  font-size: 12px;
  display: grid;
}

.pl-segment input:checked + span {
  border-color: var(--h-gold);
  color: var(--h-gold);
  background: #dabc800f;
}

.pl-segment input:focus-visible + span {
  outline-offset: 2px;
  outline: 2px solid #eec986;
}

.hub details.hub-disclosure {
  border: 1px solid var(--h-line);
  background: var(--h-panel);
  border-radius: 6px;
}

.hub details.hub-disclosure > summary {
  cursor: pointer;
  color: #eadbbd;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  font-size: 13px;
  list-style: none;
  display: flex;
}

.hub details.hub-disclosure > summary::-webkit-details-marker {
  display: none;
}

.hub details.hub-disclosure > summary:after {
  content: "+";
  color: var(--h-gold);
}

.hub details.hub-disclosure[open] > summary:after {
  content: "–";
}

.hub details.hub-disclosure > div {
  padding: 0 16px 16px;
}

.account-chip {
  color: #efe3c8;
  white-space: nowrap;
  background: #0d121bb3;
  border: 1px solid #ad997759;
  border-radius: 999px;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 3px 10px 3px 3px;
  font-size: 12px;
  display: inline-flex;
}

.account-chip img {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.account-chip.signin {
  padding: 3px 12px;
}

.account-chip:hover {
  color: #e8c170;
  border-color: #e8c170;
}

.account-menu {
  flex-shrink: 0;
  position: relative;
}

.account-menu > summary {
  cursor: pointer;
  list-style: none;
}

.account-menu > summary::-webkit-details-marker {
  display: none;
}

.account-menu-panel {
  z-index: 20;
  background: #101711;
  border: 1px solid #ad997780;
  border-radius: 10px;
  width: 168px;
  padding: 6px;
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  box-shadow: 0 14px 30px #0009;
}

.account-menu-panel:before {
  content: "";
  position: absolute;
  inset: -10px 0 100%;
}

.account-menu-panel a, .account-menu-panel button {
  color: #efe3c8;
  text-align: left;
  width: 100%;
  font: inherit;
  background: none;
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  display: block;
}

.account-menu-panel a:hover, .account-menu-panel button:hover {
  color: #f1cb77;
  background: #d6b9761f;
}

.identity-list {
  gap: 10px;
  margin-top: 16px;
  display: grid;
}

.identity-row {
  background: #0d121a66;
  border: 1px solid #ffffff12;
  border-radius: 9px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 11px;
  display: grid;
}

.identity-row > img, .identity-mark {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.identity-row > img {
  object-fit: cover;
}

.identity-mark {
  color: #fff;
  background: #5865f2;
  place-items: center;
  font-weight: 700;
  display: grid;
}

.identity-mark.battlenet {
  background: #0a6fd6;
}

.identity-row h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.identity-row p {
  color: var(--h-faint);
  font-size: 12px;
  line-height: 1.45;
}

.identity-state {
  letter-spacing: .02em;
  vertical-align: middle;
  border: 1px solid #0000;
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  margin-left: 7px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.identity-state.is-on {
  color: var(--h-green);
  background: #9ec48a14;
  border-color: #9ec48a4d;
}

.identity-state.is-warn {
  color: #e6ae70;
  background: #e0a05c1a;
  border-color: #e0a05c66;
}

.identity-state.is-off {
  color: var(--h-faint);
  background: #ffffff08;
  border-color: #ffffff1c;
}

.identity-row > .identity-mark svg {
  color: #fff;
  width: 21px;
  height: 21px;
}

.identity-action {
  align-items: end;
  gap: 8px;
  display: flex;
}

.identity-action label {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--h-faint);
  gap: 4px;
  font-size: 10px;
  display: grid;
}

.identity-action select {
  border: 1px solid var(--h-line-strong);
  color: #efe3c8;
  min-height: 32px;
  font: 11.5px var(--font-body);
  background: #101711;
  border-radius: 4px;
  padding: 0 6px;
}

.identity-unlink {
  color: var(--h-faint);
  font: 11.5px var(--font-body);
  cursor: pointer;
  background: none;
  border: 0;
  margin-top: 7px;
  padding: 0;
  text-decoration: underline;
}

.identity-unlink:hover:enabled {
  color: var(--h-gold);
}

.identity-unlink:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.identity-note {
  color: var(--h-faint);
  margin-top: 6px;
  font-size: 11.5px;
}

.identity-note.alert {
  color: var(--h-red);
}

.identity-row p a {
  color: var(--h-gold);
}

@media (max-width: 560px) {
  .identity-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .identity-row > .identity-action, .identity-row > .hub-btn {
    grid-column: 2;
    justify-self: start;
  }
}

.bq {
  color: #e6ecef;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.75;
}

.bq p {
  margin: 0 0 12px;
}

.bq a {
  color: var(--h-blue);
  text-underline-offset: 3px;
  text-decoration: underline;
}

.bq aside.quote, .bq blockquote {
  color: var(--h-muted);
  background: #83b3d10a;
  border-left: 3px solid #83b3d155;
  border-radius: 0 4px 4px 0;
  margin: 10px 0 14px;
  padding: 10px 14px;
}

.bq aside.quote blockquote {
  background: none;
  border: 0;
  margin: 4px 0 0;
  padding: 0;
}

.bq aside.quote .title {
  color: var(--h-faint);
  font-size: 12px;
}

.bq ul, .bq ol {
  padding-left: 22px;
}

.bq pre {
  background: #0a1216;
  border-radius: 4px;
  padding: 10px;
  overflow-x: auto;
}

.blue-card {
  background: var(--h-panel);
  color: inherit;
  border: 1px solid #83b3d12e;
  border-left: 3px solid #3fa7f5;
  border-radius: 6px;
  padding: 16px 18px;
  display: block;
}

.blue-card:hover {
  border-color: #83b3d166 #83b3d166 #83b3d166 #3fa7f5;
}

.blue-card h3 {
  font-family: var(--font-title);
  color: #eef3f6;
  margin: 6px 0;
  font-size: 18px;
  font-weight: 400;
}

.blue-card p {
  color: var(--h-muted);
  font-size: 13px;
  line-height: 1.65;
}

.blue-author {
  color: #62b8ff;
  font-weight: 600;
}

.adm-dot {
  background: var(--h-faint);
  vertical-align: middle;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
}

.adm-dot.ok {
  background: var(--h-green);
}

.adm-dot.warn {
  background: #f0c46c;
}

.adm-dot.bad {
  background: var(--h-red);
}

.adm-nav {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  display: flex;
}

.adm-nav a {
  border: 1px solid var(--h-line);
  color: var(--h-muted);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
}

.adm-nav a[aria-current] {
  color: #1b150c;
  background: var(--h-gold);
  border-color: var(--h-gold);
}

.adm-error {
  color: var(--h-red);
  overflow-wrap: anywhere;
  max-width: 420px;
  font-size: 11.5px;
}

.gd-tooltip {
  color: #fff;
  background: #070b10f2;
  border: 1px solid #5a6b78;
  border-radius: 6px;
  max-width: 380px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 8px 24px #0008;
}

.gd-tooltip .gd-name {
  font-size: 15px;
  font-weight: 600;
}

.gd-tooltip .gd-green {
  color: #1eff00;
}

.gd-tooltip .gd-yellow {
  color: #ffd100;
}

.gd-tooltip .gd-grey {
  color: #9d9d9d;
}

.gd-tooltip .gd-split {
  justify-content: space-between;
  gap: 12px;
  display: flex;
}

.q0 {
  color: #9d9d9d;
}

.q1 {
  color: #fff;
}

.q2 {
  color: #1eff00;
}

.q3 {
  color: #0070dd;
}

.q4 {
  color: #a335ee;
}

.q5 {
  color: #ff8000;
}

.q6 {
  color: #e6cc80;
}

.q7 {
  color: #0cf;
}

.gd-icon {
  background: #000;
  border: 1px solid #000;
  border-radius: 5px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  box-shadow: 0 0 0 1px #5a6b78;
}

.gd-icon.large {
  width: 56px;
  height: 56px;
}

.gd-entity {
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.gd-diff-added {
  color: var(--h-green);
}

.gd-diff-removed {
  color: var(--h-red);
}

.gd-diff-changed {
  color: #f0c46c;
}

.tc-trees {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  display: grid;
}

.tc-tree {
  border: 1px solid var(--h-line);
  background: #0a1216;
  border-radius: 6px;
  padding: 12px;
}

.tc-tree-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
}

.tc-grid {
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 10px;
  display: grid;
}

.tc-talent {
  cursor: pointer;
  filter: grayscale() brightness(.65);
  background: #000;
  border: 1px solid #444;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  position: relative;
}

.tc-talent.available {
  filter: none;
  border-color: #1eff00aa;
}

.tc-talent.maxed {
  filter: none;
  border-color: #ffd100;
}

.tc-talent img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.tc-talent b {
  color: #1eff00;
  background: #0a1216;
  border: 1px solid #555;
  border-radius: 8px;
  min-width: 22px;
  padding: 0 3px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 16px;
  position: absolute;
  bottom: -6px;
  right: -6px;
}

.tc-talent.maxed b {
  color: #ffd100;
}

@media (max-width: 900px) {
  .hub-grid.two {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .hub {
    padding-top: 20px;
  }

  .pl-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .pl-date strong {
    font-size: 24px;
  }

  .pl-person {
    grid-template-columns: 4px minmax(0, 1fr);
  }

  .pl-person-tools {
    grid-column: 2;
    justify-content: flex-start;
  }

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

  .hub-panel {
    padding: 16px;
  }
}

.hub-field-label {
  color: #d8d2c3;
  font-size: 12px;
}

.hub-drop {
  background: #0a121680;
  border: 1px dashed #2d3b41;
  border-radius: 6px;
  justify-items: start;
  gap: 10px;
  padding: 14px;
  transition: border-color .14s, background .14s;
  display: grid;
}

.hub-drop.over {
  border-color: var(--h-gold);
  background: #dabc8014;
}

.hub-drop-preview {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--h-line);
  border-radius: 5px;
  width: 100%;
  max-width: 360px;
}

.hub-drop-hint {
  color: var(--h-muted);
  gap: 3px;
  margin: 6px 0;
  font-size: 12.5px;
  display: grid;
}

.hub-drop-hint strong {
  color: var(--h-ink);
  font-weight: 600;
}

.hub-drop-hint span {
  color: var(--h-faint);
  font-size: 11.5px;
}

.hub-drop-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.hub-inline {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.hub-reveal {
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  transition: opacity .2s, transform .2s, max-width .24s, visibility 0s linear .24s;
  overflow: hidden;
  transform: translateX(-6px);
}

.hub-reveal.open {
  opacity: 1;
  visibility: visible;
  max-width: 320px;
  transition: opacity .2s 40ms, transform .2s 40ms, max-width .24s, visibility;
  transform: none;
}

.hub-reveal.block {
  max-width: none;
  max-height: 0;
  transition: opacity .2s, transform .2s, max-height .26s, visibility 0s linear .26s;
  transform: translateY(-6px);
}

.hub-reveal.block.open {
  max-height: 900px;
  transition: opacity .2s 40ms, transform .2s 40ms, max-height .26s, visibility;
  transform: none;
}

.hub-repeat {
  gap: 12px;
  margin-top: 4px;
  display: grid;
}

.hub-days {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  display: flex;
}

.hub-day {
  min-width: 46px;
  min-height: 34px;
  color: var(--h-muted);
  cursor: pointer;
  background: #0a1216;
  border: 1px solid #2d3b41;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  transition: border-color .14s, background .14s, color .14s;
}

.hub-day:hover {
  border-color: var(--h-line-strong);
  color: var(--h-ink);
}

.hub-day.on {
  border-color: var(--h-gold);
  color: var(--h-gold);
  background: #dabc8020;
}

.hub-day.fixed {
  cursor: default;
}

.hub-day.fixed:after {
  content: "•";
  opacity: .7;
  margin-left: 5px;
}

.hub-day-times {
  gap: 10px;
  margin-top: 12px;
  display: grid;
}

.hub-day-row {
  grid-template-columns: 92px 140px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  display: grid;
}

.hub-day-name {
  color: #d8d2c3;
  padding-top: 22px;
  font-size: 12px;
}

@media (max-width: 720px) {
  .hub-day-row {
    grid-template-columns: 1fr 1fr;
  }

  .hub-day-name {
    color: var(--h-gold);
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .hub-day-row .hub-field:last-child {
    grid-column: 1 / -1;
  }
}

.hub-summary {
  border-left: 2px solid var(--h-gold);
  color: #d8d2c3;
  background: #dabc800f;
  border-radius: 0 4px 4px 0;
  margin: 0;
  padding: 8px 10px;
  font-size: 12px;
}

.hub-post-timing {
  border-top: 1px solid var(--h-line);
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  display: grid;
}

.hub-post-choice {
  max-width: 320px;
}

.hub-tabs {
  border-bottom: 1px solid var(--h-line);
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 26px;
  display: flex;
}

.hub-tab {
  color: var(--h-muted);
  white-space: nowrap;
  border: 1px solid #0000;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  margin-bottom: -1px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
}

.hub-tab:hover {
  color: var(--h-ink);
  background: #dabc800e;
}

.hub-tab.on {
  color: var(--h-gold);
  border-color: var(--h-line);
  border-bottom: 1px solid var(--h-panel);
  background: linear-gradient(#dabc8014, #0000);
}

.hub-check-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 6px 16px;
  display: grid;
}

.hub-ruleset {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.hub-ruleset-tools {
  flex: none;
  gap: 6px;
  display: flex;
}

.hub-ruleset-notes {
  white-space: pre-line;
  max-width: 62ch;
  margin: 6px 0 0;
  font-size: 12px;
}

.hub-ruleset-preview {
  border: 1px solid var(--h-line);
  background: #0a121680;
  border-radius: 5px;
  padding: 10px 12px;
}

.hub-ruleset-preview .hub-chips {
  margin-top: 0;
}

.hub-chips {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  display: flex;
}

.hub-chip {
  border: 1px solid var(--h-line);
  color: var(--h-muted);
  background: #0a1216;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11.5px;
}

.hub-modal {
  border: 1px solid var(--h-line-strong);
  background: linear-gradient(180deg, var(--h-panel-2), var(--h-panel));
  width: min(560px, 100vw - 32px);
  max-height: min(78vh, 720px);
  color: var(--h-ink);
  opacity: 0;
  transition: opacity .18s ease,
    transform .18s ease,
    overlay .18s allow-discrete,
    display .18s allow-discrete;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transform: translateY(8px)scale(.985);
  box-shadow: 0 28px 70px #00000080;
}

.hub-modal.wide {
  width: min(880px, 100vw - 32px);
}

.hub-modal[open] {
  opacity: 1;
  transform: none;
}

@starting-style {
  .hub-modal[open] {
    opacity: 0;
    transform: translateY(8px)scale(.985);
  }
}

.hub-modal::backdrop {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .18s ease,
    overlay .18s allow-discrete,
    display .18s allow-discrete;
  background: #060b0ec4;
}

.hub-modal[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .hub-modal[open]::backdrop {
    opacity: 0;
  }
}

.hub-modal-head {
  border-bottom: 1px solid var(--h-line);
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px 14px;
  display: flex;
}

.hub-modal-head h2 {
  font-family: var(--font-title);
  color: #f3e8d2;
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 400;
}

.hub-modal-x {
  border: 1px solid var(--h-line);
  width: 30px;
  height: 30px;
  color: var(--h-muted);
  cursor: pointer;
  background: none;
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.hub-modal-x:hover {
  color: var(--h-gold);
  border-color: var(--h-gold);
}

.hub-modal-body {
  color: var(--h-muted);
  padding: 18px 22px;
  font-size: 13px;
  line-height: 1.7;
  overflow: auto;
}

.hub-modal-body > :first-child {
  margin-top: 0;
}

.hub-modal-foot {
  border-top: 1px solid var(--h-line);
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px 18px;
  display: flex;
}

.hub-switch {
  cursor: pointer;
  color: var(--h-ink);
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  display: flex;
}

.hub-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.hub-switch i {
  border: 1px solid var(--h-line-strong);
  background: #0a1216;
  border-radius: 999px;
  flex: none;
  width: 38px;
  height: 22px;
  margin-top: 1px;
  transition: background .16s, border-color .16s;
  position: relative;
}

.hub-switch i:after {
  content: "";
  background: var(--h-faint);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: transform .16s, background .16s;
  position: absolute;
  top: 3px;
  left: 3px;
}

.hub-switch input:checked + i {
  border-color: var(--h-gold);
  background: #dabc8028;
}

.hub-switch input:checked + i:after {
  background: var(--h-gold);
  transform: translateX(16px);
}

.hub-switch input:focus-visible + i {
  outline: 2px solid var(--h-gold);
  outline-offset: 2px;
}

.hub-switch input:disabled + i {
  opacity: .5;
}

.hub-switch span {
  display: block;
}

.hub-switch small {
  color: var(--h-faint);
  font-size: 11.5px;
  line-height: 1.6;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hub *, .account-chip {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1250px) {
  .account-chip:not(.signin) span {
    display: none;
  }

  .account-chip:not(.signin) {
    padding: 3px;
  }
}

@media (max-width: 580px) {
  .account-chip.signin {
    padding: 3px 9px;
    font-size: 11px;
  }
}

.auth .auth-grid {
  align-items: start;
  margin-top: 34px;
}

.auth-panel {
  padding: clamp(22px, 4vw, 34px);
}

.auth-panel h1 {
  font-family: var(--font-title);
  color: #f3e8d2;
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.auth-panel .hub-alert {
  margin-bottom: 18px;
}

.auth-choices {
  gap: 20px;
  padding-top: 4px;
  display: grid;
}

.auth-choice {
  gap: 8px;
  display: grid;
}

.auth-choice p {
  color: var(--h-muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.hub-btn.brand {
  gap: 11px;
  width: 100%;
  min-height: 50px;
  font-size: 13.5px;
}

.hub-btn.brand svg {
  flex: none;
  width: 19px;
  height: 19px;
}

.hub-btn.battlenet {
  color: #fff;
  background: #0a6fd6;
  border-color: #3b92e6;
}

.auth-linking-note {
  border-left: 2px solid var(--h-gold);
  color: var(--h-muted);
  background: #dabc800d;
  margin: 22px 0 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.7;
}

.auth-legal {
  border-top: 1px solid var(--h-line);
  color: var(--h-faint);
  margin: 24px 0 0;
  padding-top: 16px;
  font-size: 11.5px;
  line-height: 1.7;
}

.auth-legal a {
  color: var(--h-gold);
  text-underline-offset: 3px;
  text-decoration: underline;
}

.auth-aside h2 {
  color: #f3e8d2;
  align-items: center;
  gap: 9px;
  display: flex;
}

.auth-aside h2 svg {
  color: var(--h-gold);
  flex: none;
}

.auth-aside .hub-list {
  color: #c9ccc6;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.65;
}

.auth-back {
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12.5px;
  display: inline-flex;
}

/* [project]/src/app/welcome.css [app-client] (css) */
.welcome-banner {
  max-width: var(--page-w);
  padding: 20px var(--page-gutter);
  color: var(--text);
  background: #1a211b;
  border: 1px solid #6e5a34;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  display: flex;
}

.welcome-banner.is-under-header {
  margin-top: 100px;
}

.welcome-banner-copy {
  max-width: 640px;
}

.welcome-banner-kicker {
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.welcome-banner h2 {
  color: #f3e8d2;
  font-family: var(--font-title);
  margin: 6px 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
}

.welcome-banner p {
  color: #c3c9bd;
  margin: 0;
  line-height: 1.6;
}

.welcome-banner a {
  color: #e6c783;
  text-underline-offset: 3px;
}

.welcome-banner-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  display: flex;
}

.welcome-banner-actions nav {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.welcome-banner-actions nav a {
  border: 1px solid #8b713c;
  padding: 10px 12px;
  text-decoration: none;
}

.welcome-banner-actions nav a:hover {
  background: #55452a;
}

.welcome-banner-actions button {
  color: #c3c9bd;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 10px 0;
  text-decoration: underline;
}

.welcome-banner-actions button:disabled {
  opacity: .6;
  cursor: wait;
}

.welcome-banner :is(a, button):focus-visible {
  outline-offset: 3px;
  outline: 2px solid #eec986;
}

.welcome-banner .welcome-banner-error {
  color: #f0a38b;
  width: 100%;
}

@media (max-width: 600px) {
  .welcome-banner {
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .welcome-banner.is-under-header {
    margin-top: 80px;
  }

  .welcome-banner-actions, .welcome-banner-actions nav {
    width: 100%;
  }
}

.intro-preview-page {
  min-height: 68vh;
  padding-top: 160px;
}

.intro-preview-page p {
  color: #bbc2b9;
}

.project-intro-reopen {
  color: #f2dfb8;
  cursor: pointer;
  background: #25302a;
  border: 1px solid #b99a63;
  min-height: 44px;
  margin-top: 16px;
  padding: 10px 17px;
}

.project-intro {
  color: #e9e2d3;
  background: #1c2620;
  border: 1px solid #b89559;
  border-radius: 10px;
  width: min(660px, 100vw - 24px);
  max-height: min(92vh, 850px);
  padding: 0;
  overflow-y: auto;
  box-shadow: 0 28px 90px #050908e8;
}

.project-intro[open] {
  animation: .45s cubic-bezier(.2, .8, .2, 1) both project-intro-in;
}

.project-intro::backdrop {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #07100bd4;
}

.project-intro-art {
  background: #31271b;
  height: clamp(160px, 27vh, 260px);
  position: relative;
  overflow: hidden;
}

.project-intro-art:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000, #1c2620);
  position: absolute;
  inset: 42% 0 0;
}

.project-intro-art img {
  object-fit: cover;
  object-position: center 63%;
  width: 100%;
  height: 100%;
  display: block;
}

.project-intro-ember {
  z-index: 1;
  background: #ffd077;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 4s ease-in-out infinite project-ember;
  position: absolute;
  bottom: 26%;
  left: 50%;
  box-shadow: 0 0 19px 8px #e884344f;
}

.project-intro-art-credit {
  z-index: 2;
  color: #f6e9d2;
  background: #151b18bb;
  padding: 3px 6px;
  font-size: 10px;
  position: absolute;
  top: 10px;
  right: 12px;
}

.project-intro-copy {
  padding: 0 clamp(23px, 5vw, 44px) clamp(24px, 4vw, 36px);
}

.project-intro-kicker {
  color: #e1c080;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 12px;
}

.project-intro h2 {
  color: #f4e9ce;
  font: 400 clamp(28px, 5vw, 42px)/1.1 var(--font-title), Georgia, serif;
  margin: 0 0 17px;
}

.project-intro p:not(.project-intro-kicker) {
  margin: 0 0 12px;
  line-height: 1.6;
}

.project-intro-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 22px;
  display: flex;
}

.project-intro-actions button {
  color: #101b17;
  cursor: pointer;
  background: #c69c5c;
  border: 1px solid #e1c080;
  border-radius: 4px;
  min-height: 44px;
  padding: 10px 18px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.project-intro-actions button:hover {
  background: #e0b878;
  transform: translateY(-2px);
}

.project-intro-actions :is(button, a):focus-visible, .project-intro-reopen:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #f3e6c4;
}

@keyframes project-intro-in {
  from {
    opacity: 0;
    transform: translateY(16px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes project-ember {
  0%, 100% {
    opacity: .3;
    transform: translateY(0)scale(.75);
  }

  50% {
    opacity: .9;
    transform: translateY(-18px)scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-intro[open], .project-intro-ember {
    animation: none;
  }

  .project-intro-actions button {
    transition: none;
  }
}

/*# sourceMappingURL=src_app_1oo4uhi._.css.map*/