/* [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;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

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: 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;
}

.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;
  }
}

/* [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: 20;
  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-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-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-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;
  }
}

/* [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-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%, #0d1418d1 13%, #0d1418a3 26%, #0d141875 39%, #0d141842 52%, #0d141800 65%), linear-gradient(#0b1216a3, #0b12164d 14%, #0b121600 32%), radial-gradient(64% 60% at 50% 48%, #04080b70, #04080b8a 52%, #04080ba8 78%, #04080bc7 100%);
  position: absolute;
  inset: 0;
}

.mirage-hero-inner {
  max-width: 1460px;
  height: 100%;
  padding: 104px var(--mirage-gutter) 64px;
  justify-content: center;
  align-items: center;
  gap: clamp(64px, 8vw, 180px);
  margin: auto;
  display: flex;
}

.mirage-intro {
  text-align: center;
}

.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, .mirage-divider {
  --ornament: #d2ae68;
  display: block;
  position: relative;
}

.mirage-rule:after, .mirage-divider: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: 268px;
  height: 10px;
  margin: 13px 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-divider {
  flex: none;
  width: 10px;
  height: 300px;
}

.mirage-divider:before {
  content: "";
  background: linear-gradient(#d2ae6800, #d2ae68a8 20% 45%, #d2ae6800 48% 52%, #d2ae68a8 55% 80%, #d2ae6800);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.mirage-wordmark {
  margin-top: 16px;
  display: block;
}

.mirage-wordmark img {
  width: 100%;
  max-width: 540px;
  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: 18px 0 0;
}

.mirage-trailer {
  --edge: #8d7442;
  border: 1px solid var(--edge);
  background: #070c0fc7;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
  padding: 9px 26px 9px 9px;
  transition: border-color .4s cubic-bezier(.22, 1, .36, 1), background .4s cubic-bezier(.22, 1, .36, 1);
  display: inline-grid;
  transform: skew(-12deg);
  box-shadow: 0 6px 22px -12px #000;
}

.mirage-trailer:hover {
  --edge: #e2bf75;
  background: #070c0fd9;
}

.mirage-trailer-frame {
  width: 104px;
  height: 60px;
  display: block;
  position: relative;
  overflow: hidden;
}

.mirage-trailer-frame img {
  object-fit: cover;
  filter: brightness(.62) saturate(.9);
  width: 100%;
  height: 100%;
  transition: filter .4s cubic-bezier(.22, 1, .36, 1);
  transform: skew(12deg)scale(1.28);
}

.mirage-trailer:hover .mirage-trailer-frame img {
  filter: brightness() saturate();
}

.mirage-trailer-play {
  color: #f6ead0;
  place-items: center;
  display: grid;
  position: absolute;
  inset: 0;
  transform: skew(12deg);
}

.mirage-trailer-play:before {
  content: "";
  background: #060a0dbf;
  border: 1px solid #e2bf7559;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: background .4s cubic-bezier(.22, 1, .36, 1), border-color .4s cubic-bezier(.22, 1, .36, 1), scale .4s cubic-bezier(.22, 1, .36, 1);
  position: absolute;
}

.mirage-trailer:hover .mirage-trailer-play:before {
  background: #060a0dd9;
  border-color: #f0dcae;
  scale: 1.14;
}

.mirage-trailer-play svg {
  filter: drop-shadow(0 1px 2px #000);
  margin-left: 2px;
  position: relative;
}

.mirage-trailer-text {
  text-align: left;
  gap: 4px;
  display: grid;
  transform: skew(12deg);
}

.mirage-trailer-text > span:first-child {
  font: 600 13px/1.2 var(--display);
  letter-spacing: .4px;
  color: #f2e8d2;
}

.mirage-trailer-text > span:last-child {
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #b3a992;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  display: flex;
}

.mirage-game {
  text-align: center;
  flex: none;
  width: 210px;
}

.mirage-game > span {
  color: #f2ece0;
  letter-spacing: 2px;
  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: 140px;
  margin: 10px auto 0;
  display: block;
}

.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;
}

.timeline-rail .selected img {
  filter: none;
  border-color: #e2bb68;
  box-shadow: 0 0 18px #cfad4b30;
}

.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;
}

.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;
  }

  .mirage-divider {
    height: 340px;
  }
}

@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: 440px;
  }

  .mirage-intro h1 {
    font-size: 34px;
  }

  .mirage-divider {
    height: 260px;
  }

  .mirage-game {
    width: 178px;
  }

  .mirage-game img {
    height: 118px;
  }

  .mirage-story > div {
    padding: 17px;
  }
}

@media (max-width: 850px) {
  .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;
    gap: clamp(36px, 6vw, 60px);
  }

  .mirage-wordmark img {
    max-width: 320px;
  }

  .mirage-rule {
    width: 210px;
  }

  .mirage-divider {
    height: 220px;
  }

  .mirage-intro h1 {
    margin-top: 14px;
    font-size: 26px;
  }

  .mirage-intro > .mirage-eyebrow {
    letter-spacing: 1px;
    font-size: 8px !important;
  }

  .mirage-trailer {
    gap: 12px;
    margin-top: 26px;
    padding-right: 20px;
  }

  .mirage-trailer-frame {
    width: 84px;
    height: 50px;
  }

  .mirage-game {
    width: 140px;
  }

  .mirage-game > span {
    letter-spacing: 1px;
    font-size: 7px;
  }

  .mirage-game img {
    height: 100px;
  }

  .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: 650px;
  }

  .mirage-art {
    object-position: 50% 0%;
    object-fit: cover;
    height: 460px;
  }

  .mirage-hero:after {
    background: linear-gradient(0deg, #0d1418 25%, #0d141880 56%, #0d141826 70%, #0d141800 84%);
  }

  .mirage-hero-inner {
    padding: 300px var(--mirage-gutter) 26px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 24px;
  }

  .mirage-wordmark img {
    max-width: 280px;
  }

  .mirage-rule {
    width: 170px;
    margin-top: 10px;
  }

  .mirage-divider {
    display: none;
  }

  .mirage-intro > .mirage-eyebrow {
    line-height: 1.7;
    font-size: 7px !important;
  }

  .mirage-intro h1 {
    margin-top: 12px;
    font-size: 23px;
  }

  .mirage-trailer {
    margin-top: 22px;
  }

  .mirage-game {
    border-top: 1px solid #8c754333;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: auto;
    padding-top: 18px;
    display: flex;
  }

  .mirage-game > span {
    font-size: 7px;
  }

  .mirage-game img {
    height: 68px;
    margin: 0;
  }

  .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 {
  margin-top: 45px;
}

.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 > 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: 295px var(--mirage-gutter) 0;
  }

  .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 260px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .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: 190px;
  }
}

.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;
  }
}

/* [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(#0000 30%, #111c22);
  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 {
  flex-direction: column;
  flex: 1;
  padding: 18px 26px 26px;
  display: flex;
}

.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-party {
  background: radial-gradient(at 0%, #79502726, #0000 70%), #121c21;
  border: 1px solid #a17b454d;
  align-items: center;
  gap: 30px;
  margin-block: 72px;
  padding: 42px;
  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: 33px;
}

.forever-party p {
  margin-top: 12px;
}

.forever-party > .mirage-cta {
  flex-shrink: 0;
  margin-left: 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-party {
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px;
  }

  .forever-party > .mirage-cta {
    margin-left: 106px;
  }

  .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-party {
    margin-block: 44px;
    padding: 28px 24px;
  }

  .forever-party-mark {
    width: 60px;
    height: 60px;
  }

  .forever-party h2 {
    font-size: 29px;
  }

  .forever-party > .mirage-cta {
    margin-left: 0;
  }

  .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;
  }
}

/* [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;
  gap: 6px;
  min-width: 0;
  font-size: 12px;
  display: grid;
}

.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 {
  border-bottom: 1px solid var(--h-line);
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 22px;
  display: flex;
}

.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;
}

.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 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 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.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;
}

.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;
  }
}

@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;
  }
}

/*# sourceMappingURL=src_app_07b44m-._.css.map*/