/* [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 {
  color: #e2bd70;
  font-family: var(--display);
  letter-spacing: -1.1px;
  white-space: nowrap;
  text-shadow: 0 2px 3px #000;
  align-items: center;
  gap: 9px;
  font-size: 35px;
  font-weight: bold;
  display: flex;
}

.atlas-brand svg {
  color: #e0b963;
  filter: drop-shadow(0 1px 2px #000);
  width: 47px;
  height: 47px;
}

.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: 9px;
  position: absolute;
  inset: -6px;
  box-shadow: 0 0 14px 1px #e8b95a55, 0 0 34px 4px #d9973a26;
}

.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, #fff7df, #ffc75e 45%, #ff8a1f00 72%);
  border-radius: 50%;
  position: absolute;
  top: 58%;
  box-shadow: 0 0 6px #ffb54a;
}

.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 {
    font-size: 29px;
  }

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

  .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 {
    font-size: 25px;
  }

  .atlas-brand svg {
    width: 34px;
  }

  .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 {
    font-size: 29px;
  }

  .atlas-brand svg {
    width: 38px;
  }

  .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 {
    font-size: 29px;
  }

  .atlas-brand svg {
    width: 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) */
.atlas-header.mirage-header {
  background: #101416;
  border-bottom: 1px solid #8c754345;
  position: relative;
}

.mirage-header .atlas-nav {
  gap: 30px;
  max-width: 1300px;
  min-height: 64px;
  padding: 0 32px;
}

.mirage-header .atlas-brand {
  letter-spacing: -.5px;
  font-size: 21px;
}

.mirage-header .atlas-brand svg {
  width: 30px;
  height: 36px;
}

.mirage-header .atlas-nav nav {
  gap: 23px;
}

.mirage-header .atlas-nav nav a {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}

.mirage-header .atlas-nav nav a[aria-current="page"] {
  color: #eac37a;
}

.mirage-header .atlas-search {
  --well: #080d10;
  --rim: #69583b77;
  max-width: 210px;
}

.mirage-header .atlas-search input {
  font-size: 11px;
}

.mirage-top {
  color: #d8d5cc;
  background: #0d1418;
  padding-bottom: 65px;
  position: relative;
}

.mirage-hero {
  isolation: isolate;
  height: 650px;
  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, #0000 48%), linear-gradient(90deg, #0b121ac4, #0000 42% 65%, #0b121a8c);
  position: absolute;
  inset: 0;
}

.mirage-hero-inner {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1170px;
  height: 100%;
  margin: auto;
  padding: 60px 30px 80px;
  display: flex;
}

.mirage-intro {
  text-align: center;
  width: 300px;
}

.mirage-wordmark {
  color: #eed4a0;
  text-shadow: 0 3px #30251a, 0 4px 20px #000;
  font-family: var(--display);
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 41px;
  font-weight: 700;
  line-height: .95;
  display: flex;
}

.mirage-wordmark > svg {
  width: 60px;
  height: 85px;
}

.mirage-wordmark > span > span {
  letter-spacing: 13px;
  margin: 10px 0 0 11px;
  font-size: 26px;
  display: block;
}

.mirage-eyebrow {
  letter-spacing: 2px;
  color: #b8a276;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px !important;
}

.mirage-intro > .mirage-eyebrow {
  margin: 23px 0;
}

.mirage-intro h1 {
  font: 400 24px/1.45 var(--display);
  color: #e7decc;
  text-shadow: 0 2px 8px #000;
  margin: 0 0 25px;
}

.mirage-trailer {
  border: 1px solid #b49a60;
  width: 214px;
  height: 112px;
  margin: auto;
  display: block;
  position: relative;
  overflow: hidden;
  transform: skew(-12deg);
  box-shadow: 0 5px 30px #0008;
}

.mirage-trailer img {
  object-fit: cover;
  filter: brightness(.65);
  width: 100%;
  height: 100%;
  transition: filter .25s;
  transform: skew(12deg)scale(1.2);
}

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

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

.mirage-trailer-label {
  letter-spacing: 1.5px;
  color: #c1b9a7;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 9px;
  display: flex;
}

.mirage-game {
  text-align: center;
  width: 260px;
  padding-top: 72px;
}

.mirage-game > span {
  color: #d4c9b1;
  letter-spacing: 2px;
  font-size: 9px;
}

.mirage-game img {
  object-fit: contain;
  filter: drop-shadow(0 8px 14px #0009);
  width: 100%;
  height: 210px;
  display: block;
}

.mirage-game a {
  color: #e5c487;
  font: 14px var(--display);
  border-bottom: 1px solid #9c7d494f;
  align-items: center;
  gap: 12px;
  padding: 10px;
  display: inline-flex;
}

.mirage-body {
  max-width: 1120px;
  margin: -100px auto 0;
  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: 760px;
  }

  .mirage-hero-inner {
    padding-top: 100px;
  }

  .mirage-body {
    margin-top: -120px;
  }
}

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

  .mirage-header .atlas-brand span {
    display: none;
  }

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

  .mirage-header .atlas-search {
    max-width: 190px;
  }

  .mirage-intro {
    width: 240px;
  }

  .mirage-wordmark {
    font-size: 32px;
  }

  .mirage-wordmark > svg {
    width: 44px;
  }

  .mirage-game {
    width: 210px;
  }

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

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

  .mirage-hero-inner {
    padding: 45px 24px;
  }

  .mirage-intro {
    width: 205px;
  }

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

  .mirage-wordmark {
    font-size: 27px;
  }

  .mirage-wordmark > span > span {
    letter-spacing: 9px;
    font-size: 20px;
  }

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

  .mirage-trailer {
    width: 175px;
    height: 98px;
  }

  .mirage-game {
    width: 170px;
    padding-top: 60px;
  }

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

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

  .mirage-body {
    margin-top: -75px;
  }

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

  .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%, #0000 80%);
  }

  .mirage-hero-inner {
    gap: 15px;
    padding: 295px 22px 0;
  }

  .mirage-intro {
    text-align: left;
    width: 58%;
  }

  .mirage-wordmark {
    justify-content: flex-start;
    font-size: 25px;
  }

  .mirage-wordmark > svg {
    width: 35px;
    height: 64px;
  }

  .mirage-wordmark > span > span {
    letter-spacing: 8px;
    margin-top: 8px;
    font-size: 17px;
  }

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

  .mirage-intro h1 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .mirage-trailer {
    width: 155px;
    height: 80px;
    margin-left: 8px;
  }

  .mirage-trailer-label {
    letter-spacing: 1px;
    justify-content: flex-start;
    font-size: 7px;
  }

  .mirage-game {
    width: 42%;
    padding-top: 10px;
  }

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

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

  .mirage-game a {
    gap: 6px;
    font-size: 11px;
  }

  .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 * {
    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: -90px;
  padding-inline: clamp(20px, 4vw, 64px);
}

.mirage-header .atlas-nav {
  max-width: 1560px;
}

.mirage-hero-inner {
  max-width: 1460px;
  padding-inline: 45px;
}

.mirage-art {
  object-position: center 43%;
}

.mirage-hero:after {
  background: linear-gradient(0deg, #0d1418, #0000 65%), linear-gradient(90deg, #0b121abd, #0000 43%, #0b121a25 70%, #0b121a80);
}

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

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

@media (max-width: 580px) {
  .mirage-body {
    margin-top: 0;
    padding-inline: 20px;
  }

  .mirage-hero-inner {
    padding: 295px 22px 0;
  }

  .mirage-art {
    object-position: 35% 25%;
  }

  .mirage-hero:after {
    background: linear-gradient(0deg, #0d1418 25%, #0000 90%);
  }

  .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 {
  padding-inline: 57.5px;
  scroll-padding-inline: 140px;
}

.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 {
    padding-inline: 72px;
  }
}

/*# sourceMappingURL=src_app_1z0xc8u._.css.map*/