:root {
  --woe-ink: #111311;
  --woe-ink-soft: #1a1d19;
  --woe-paper: #e9e2d2;
  --woe-paper-soft: #cfc5b2;
  --woe-brass: #a8874e;
  --woe-brass-bright: #d0ae6b;
  --woe-moss: #687259;
  --woe-line: rgba(233, 226, 210, 0.17);
  --woe-line-dark: rgba(17, 19, 17, 0.16);
  --woe-page: min(1180px, calc(100vw - 40px));
  --woe-display: 'Cinzel Decorative', 'Cinzel', 'Palatino Linotype', serif;
  --woe-ui: 'Cinzel', 'Palatino Linotype', serif;
  --woe-body: 'Alegreya', Georgia, serif;
}

* { box-sizing: border-box; }

body.woe-site {
  margin: 0;
  min-width: 320px;
  color: var(--woe-paper);
  background: var(--woe-ink);
  font-family: var(--woe-body);
  font-size: 17px;
  letter-spacing: .008em;
  -webkit-font-smoothing: antialiased;
}

.woe-site a { color: inherit; }
.woe-site img { display: block; max-width: 100%; }
.woe-site button, .woe-site a { -webkit-tap-highlight-color: transparent; }

.woe-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--woe-ink);
  background: var(--woe-paper);
  transform: translateY(-160%);
}
.woe-skip:focus { transform: translateY(0); }

.woe-shell { width: var(--woe-page); margin-inline: auto; }

.woe-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(208, 174, 107, .48);
  background: linear-gradient(180deg, rgba(28, 23, 16, .97), rgba(10, 12, 10, .98));
  backdrop-filter: blur(14px);
}
.woe-topbar::after { content: ''; position: absolute; left: 50%; bottom: -11px; width: min(1120px, 94vw); height: 22px; transform: translateX(-50%); background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; pointer-events: none; filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .7)); }

.woe-topbar-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.woe-wordmark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1; }
.woe-wordmark > span { display: block; }
.woe-brand-mark {
  width: 52px;
  height: 48px;
  background: url('/assets/woe-ui-dragon-crest-v1.png') center / contain no-repeat;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .7));
  flex: 0 0 auto;
}
.woe-wordmark strong {
  display: block;
  font-family: var(--woe-ui);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .12em;
}

.woe-nav { display: flex; align-items: center; justify-content: center; gap: 6px; }
.woe-nav a {
  padding: 11px 12px;
  color: var(--woe-paper-soft);
  font-family: var(--woe-ui);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}
.woe-nav a:hover, .woe-nav a[aria-current='page'] { color: #fff; }

.woe-button {
  min-width: 206px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  border: 0;
  color: #f6ead0;
  background: transparent url('/assets/woe-ui-button-frame-v1.png') center / 100% 100% no-repeat;
  font-family: var(--woe-ui);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-shadow: 0 2px 3px #000;
  text-transform: uppercase;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .55));
  transition: filter .18s ease, transform .18s ease;
}
.woe-button:hover { background: transparent url('/assets/woe-ui-button-frame-v1.png') center / 100% 100% no-repeat; filter: brightness(1.16) drop-shadow(0 7px 10px rgba(0, 0, 0, .7)); transform: translateY(-1px); }
.woe-button.secondary { color: var(--woe-paper); background: transparent url('/assets/woe-ui-button-frame-v1.png') center / 100% 100% no-repeat; filter: saturate(.68) brightness(.82) drop-shadow(0 5px 7px rgba(0, 0, 0, .55)); }
.woe-button.secondary:hover { color: #fff; filter: saturate(.9) brightness(1.04) drop-shadow(0 7px 10px rgba(0, 0, 0, .7)); }
.woe-topbar .woe-button { min-width: 142px; min-height: 48px; padding-inline: 30px; }

.woe-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 74px));
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--woe-line);
}
.woe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/assets/woe-golden-dragon-realm-v1.webp') center center / cover no-repeat;
  transform: scale(1.008);
}
.woe-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 10, 8, .89) 0%, rgba(8, 10, 8, .68) 33%, rgba(8, 10, 8, .08) 66%), linear-gradient(0deg, #111311 0%, transparent 34%), linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 38%);
}

.woe-hero-content { width: min(900px, calc(100% - 40px)); margin-inline: auto; padding: 140px 0 88px; }
.woe-hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #e9dfc9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.woe-hero-overline > span { width: 7px; height: 7px; border-radius: 50%; background: #91aa75; box-shadow: 0 0 0 5px rgba(145, 170, 117, .13); }
.woe-kicker {
  margin: 0 0 18px;
  color: var(--woe-brass-bright);
  font-family: var(--woe-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.woe-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--woe-display);
  font-size: clamp(50px, 5.15vw, 82px);
  color: #f0e5cb;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.018em;
  text-shadow: 0 2px 0 #342410, 0 5px 2px rgba(0, 0, 0, .76), 0 0 24px rgba(197, 151, 73, .17);
  text-wrap: balance;
}
.woe-hero h1 span { display: block; white-space: nowrap; }
.woe-hero-copy {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--woe-paper-soft);
  font-size: 20px;
  line-height: 1.62;
}
.woe-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.woe-hero .woe-actions { align-items: center; gap: 28px; }
.woe-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--woe-paper);
  font-family: var(--woe-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.woe-text-link span { color: var(--woe-brass-bright); font-size: 18px; font-weight: 400; transition: transform .18s ease; }
.woe-text-link:hover span { transform: translateX(4px); }
.woe-hero-caption {
  position: absolute;
  right: max(24px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2));
  bottom: 34px;
  z-index: 2;
  padding-left: 17px;
  border-left: 1px solid var(--woe-brass-bright);
  text-align: right;
}
.woe-hero-caption span, .woe-hero-caption strong { display: block; }
.woe-hero-caption span { color: var(--woe-brass-bright); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.woe-hero-caption strong { margin-top: 5px; font-family: var(--woe-display); font-size: 17px; font-weight: 600; }

.woe-release-strip {
  position: relative;
  margin-top: -1px;
  color: var(--woe-paper);
  border-block: 1px solid rgba(208, 174, 107, .48);
  background: radial-gradient(circle at 50% 10%, rgba(102, 72, 31, .22), transparent 52%), linear-gradient(180deg, #1a1712, #0d0f0c);
  box-shadow: inset 0 14px 35px rgba(0, 0, 0, .46);
}
.woe-release-strip::after { content: ''; position: absolute; left: 50%; bottom: -19px; z-index: 2; width: min(1000px, 86vw); height: 36px; transform: translateX(-50%); background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; pointer-events: none; }
.woe-release-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}
.woe-release-label {
  color: var(--woe-brass-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.woe-release-title { margin: 0; font-family: var(--woe-ui); font-size: 21px; font-weight: 600; letter-spacing: .01em; line-height: 1.35; }
.woe-release-meta { margin: 6px 0 0; color: var(--woe-paper-soft); font-size: 13px; }
.woe-release-link { min-width: 188px; min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 34px; background: url('/assets/woe-ui-button-frame-v1.png') center / 100% 100% no-repeat; color: #f6ead0; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-shadow: 0 2px 3px #000; text-transform: uppercase; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .6)); }

.woe-section { padding: 92px 0; }
.woe-section.alt { border-block: 1px solid var(--woe-line); background: var(--woe-ink-soft); }
.woe-section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 44px; }
.woe-section-head::after { content: ''; grid-column: 1 / -1; width: 100%; height: 42px; margin-top: 8px; background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; }
.woe-section h2 { margin: 0; font-family: var(--woe-display); font-size: clamp(36px, 5vw, 58px); font-weight: 600; line-height: 1.1; letter-spacing: -.015em; }
.woe-section-intro { margin: 0; color: var(--woe-paper-soft); font-size: 16px; line-height: 1.7; }
.woe-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--woe-line); }
.woe-card { min-height: 250px; padding: 32px; border-right: 1px solid var(--woe-line); }
.woe-card:last-child { border-right: 0; }
.woe-card-index { color: var(--woe-brass-bright); font-family: var(--woe-display); font-size: 14px; }
.woe-card h3 { margin: 54px 0 12px; font-family: var(--woe-display); font-size: 25px; font-weight: 600; }
.woe-card p { margin: 0; color: var(--woe-paper-soft); font-size: 14px; line-height: 1.7; }

.woe-world-story {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(208, 174, 107, .38);
  background: #0b0d0b;
  box-shadow: inset 0 24px 60px rgba(0, 0, 0, .58), inset 0 -24px 60px rgba(0, 0, 0, .66);
}
.woe-world-story::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/assets/woe-pinewood.webp') 68% center / cover no-repeat;
  filter: saturate(.86) contrast(1.08);
  transform: scale(1.01);
}
.woe-world-story::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 9, 7, .96) 0%, rgba(7, 9, 7, .88) 35%, rgba(7, 9, 7, .4) 65%, rgba(7, 9, 7, .13) 100%), linear-gradient(0deg, rgba(6, 7, 6, .76), transparent 50%, rgba(6, 7, 6, .32));
}
.woe-story-stage { display: flex; justify-content: center; }
.woe-story-copy {
  position: relative;
  width: min(900px, 100%);
  margin-inline: auto;
  padding: 66px 70px 62px;
  border: 1px solid rgba(208, 174, 107, .46);
  background: radial-gradient(circle at 15% 12%, rgba(154, 112, 49, .11), transparent 35%), repeating-linear-gradient(4deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 5px), linear-gradient(145deg, rgba(24, 24, 19, .97), rgba(10, 12, 10, .95));
  box-shadow: inset 0 0 0 4px rgba(7, 8, 7, .75), inset 0 0 46px rgba(0, 0, 0, .72), 0 24px 65px rgba(0, 0, 0, .56);
}
.woe-story-copy::before, .woe-story-copy::after { content: ''; position: absolute; width: 70px; height: 70px; border-color: rgba(208, 174, 107, .72); pointer-events: none; }
.woe-story-copy::before { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; }
.woe-story-copy::after { right: 12px; bottom: 12px; border-right: 2px solid; border-bottom: 2px solid; }
.woe-story-copy h2 {
  margin: 0;
  color: #efe4c9;
  font-family: var(--woe-display);
  font-size: clamp(42px, 4.35vw, 66px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: .015em;
  text-shadow: 0 2px 0 #37250f, 0 5px 2px rgba(0, 0, 0, .8), 0 0 20px rgba(208, 174, 107, .13);
}
.woe-story-copy h2 span { display: block; white-space: nowrap; }
.woe-story-divider { width: min(500px, 100%); height: 42px; margin: 24px auto 18px; background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .75)); }
.woe-story-copy > p:not(.woe-kicker) { max-width: 570px; margin: 0 0 30px; color: #d8ccb5; font-size: 20px; line-height: 1.7; text-shadow: 0 2px 3px #000; }

.woe-pillars {
  position: relative;
  padding: 112px 0 118px;
  overflow: hidden;
  background: radial-gradient(circle at 74% 18%, rgba(123, 84, 32, .18), transparent 34%), repeating-linear-gradient(90deg, rgba(255, 255, 255, .012) 0 1px, transparent 1px 7px), linear-gradient(145deg, #171713, #0d100d 68%);
  box-shadow: inset 0 20px 60px rgba(0, 0, 0, .54);
}
.woe-pillars::before { content: ''; position: absolute; left: 50%; top: -20px; width: min(1040px, 88vw); height: 42px; transform: translateX(-50%); background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; filter: drop-shadow(0 5px 7px #000); }
.woe-pillars-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 92px; align-items: start; }
.woe-pillars header { position: sticky; top: 128px; }
.woe-pillars h2 { margin: 0; color: #eee3ca; font-family: var(--woe-display); font-size: clamp(38px, 4.2vw, 61px); line-height: 1.14; text-shadow: 0 2px 0 #35240e, 0 5px 2px rgba(0, 0, 0, .75); }
.woe-pillars h2 span { display: block; }
.woe-pillars header > p:last-child { max-width: 490px; margin: 28px 0 0; color: var(--woe-paper-soft); font-size: 18px; line-height: 1.7; }
.woe-pillar-list { border-top: 1px solid rgba(208, 174, 107, .35); }
.woe-pillar-list article { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(208, 174, 107, .25); }
.woe-pillar-list article > span { padding-top: 5px; color: var(--woe-brass-bright); font-family: var(--woe-ui); font-size: 12px; letter-spacing: .14em; }
.woe-pillar-list h3 { margin: 0; color: #eadfc8; font-family: var(--woe-ui); font-size: 24px; font-weight: 600; letter-spacing: .025em; text-shadow: 0 3px 3px #000; }
.woe-pillar-list p { max-width: 570px; margin: 8px 0 0; color: #bfb5a2; font-size: 17px; line-height: 1.62; }
.woe-pillar-list > .woe-text-link { margin-top: 30px; }

.woe-section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin: 0 0 50px; padding-bottom: 28px; border-bottom: 1px solid rgba(208, 174, 107, .38); }
.woe-section-title-row::after { content: ''; position: absolute; width: min(430px, 38vw); height: 28px; margin-bottom: -43px; background: url('/assets/woe-ui-dragon-divider-v1.png') left center / 100% 100% no-repeat; }
.woe-section-title-row h2 { color: #eee3ca; text-shadow: 0 2px 0 #342410, 0 4px 2px rgba(0, 0, 0, .75); }
.woe-news-feature, .woe-media-item, .woe-community, .woe-card-grid { box-shadow: inset 0 0 0 1px rgba(168, 135, 78, .16), 0 12px 28px rgba(0, 0, 0, .22); }

.woe-editorial { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1px; background: var(--woe-line); border: 1px solid var(--woe-line); }
.woe-editorial > * { background: var(--woe-ink); }
.woe-editorial-main { padding: 44px; }
.woe-editorial-main h3 { max-width: 700px; margin: 0; font-family: var(--woe-display); font-size: clamp(30px, 4vw, 46px); font-weight: 600; line-height: 1.14; }
.woe-editorial-main p { max-width: 680px; margin: 22px 0 0; color: var(--woe-paper-soft); line-height: 1.7; }
.woe-editorial-aside { padding: 38px; }
.woe-stat { padding: 18px 0; border-bottom: 1px solid var(--woe-line); }
.woe-stat:first-child { padding-top: 0; }
.woe-stat:last-child { border-bottom: 0; }
.woe-stat strong { display: block; font-family: var(--woe-display); font-size: 24px; font-weight: 600; }
.woe-stat span { display: block; margin-top: 5px; color: var(--woe-paper-soft); font-size: 12px; }

.woe-footer { position: relative; padding: 58px 0 42px; border-top: 1px solid var(--woe-line); background: linear-gradient(180deg, #0d0f0d, #080a08); }
.woe-footer::before { content: ''; position: absolute; left: 50%; top: -18px; width: min(980px, 86vw); height: 36px; transform: translateX(-50%); background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; }
.woe-footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.woe-footer p { max-width: 560px; margin: 12px 0 0; color: #8f8b81; font-size: 13px; line-height: 1.6; }
.woe-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.woe-footer-links a { color: var(--woe-paper-soft); font-size: 12px; text-decoration: none; }

.woe-loading, .woe-error { min-height: 65vh; display: grid; place-items: center; color: var(--woe-paper-soft); }

.woe-page-head { padding: 110px 0 70px; border-bottom: 1px solid var(--woe-line); background: linear-gradient(145deg, #1a1d19, #101210 72%); }
.woe-page-head::after { content: ''; display: block; width: min(1080px, 92vw); height: 48px; margin: 52px auto -94px; background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; }
.woe-page-head h1 { max-width: 850px; margin: 0; font-family: var(--woe-display); font-size: clamp(48px, 7vw, 84px); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }
.woe-page-head > div > p:last-child { max-width: 680px; margin: 26px 0 0; color: var(--woe-paper-soft); font-size: 17px; line-height: 1.7; }

.woe-news-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--woe-line);
  isolation: isolate;
}
.woe-news-hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: url('/assets/woe-ancient-forest.webp') center 46% / cover no-repeat; filter: saturate(.82); }
.woe-news-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9, 11, 9, .94), rgba(9, 11, 9, .58) 48%, rgba(9, 11, 9, .15)), linear-gradient(0deg, #111311, transparent 42%); }
.woe-news-hero h1 { margin: 0; font-family: var(--woe-display); font-size: clamp(55px, 7.2vw, 96px); font-weight: 600; line-height: 1.03; letter-spacing: -.02em; }
.woe-news-hero p:last-child { max-width: 580px; margin: 24px 0 0; color: var(--woe-paper-soft); font-size: 17px; line-height: 1.65; }
.woe-news-hero h1::after { content: ''; display: block; width: min(620px, 80vw); height: 48px; margin-top: 24px; background: url('/assets/woe-ui-dragon-divider-v1.png') center / 100% 100% no-repeat; }
.woe-news-feature-section { padding-block: 72px 104px; }
.woe-news-feature { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 520px; border: 1px solid var(--woe-line); background: #171a16; }
.woe-news-feature { position: relative; }
.woe-news-feature::before, .woe-news-feature::after { content: ''; position: absolute; z-index: 2; width: 70px; height: 70px; background: url('/assets/woe-ui-dragon-crest-v1.png') center / contain no-repeat; opacity: .68; pointer-events: none; }
.woe-news-feature::before { left: -24px; top: -24px; }
.woe-news-feature::after { right: -24px; bottom: -24px; transform: rotate(180deg); }
.woe-news-feature-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 54px; }
.woe-news-feature-copy > span { color: var(--woe-brass-bright); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.woe-news-feature-copy h2 { margin: 22px 0 16px; font-size: clamp(36px, 4.6vw, 60px); }
.woe-news-feature-copy p { margin: 0 0 28px; color: var(--woe-paper-soft); line-height: 1.7; }
.woe-news-feature-art { min-height: 420px; background: linear-gradient(90deg, #171a16 0%, transparent 18%), url('/assets/woe-golden-dragon-realm-v1.webp') 64% center / cover no-repeat; }
.woe-section-title-row > span { color: #8f8b81; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.woe-news-list { border-top: 1px solid var(--woe-line); }
.woe-news-row { display: grid; grid-template-columns: 220px 110px minmax(250px, .9fr) minmax(280px, 1.1fr) 28px; gap: 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--woe-line); text-decoration: none; }
.woe-news-row img { width: 220px; aspect-ratio: 16 / 9; object-fit: cover; filter: saturate(.78) contrast(1.05); transition: filter .18s ease; }
.woe-news-row:hover img { filter: saturate(1) contrast(1.02); }
.woe-news-row > span { color: var(--woe-brass-bright); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.woe-news-row h3 { margin: 0; font-family: var(--woe-display); font-size: 25px; font-weight: 600; line-height: 1.3; }
.woe-news-row p { margin: 0; color: var(--woe-paper-soft); font-size: 13px; line-height: 1.6; }
.woe-news-row b { color: var(--woe-brass-bright); font-size: 22px; font-weight: 400; }

.woe-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--woe-line); background: var(--woe-line); }
.woe-news-card { min-height: 310px; padding: 34px; background: var(--woe-ink); }
.woe-news-card.featured { grid-column: 1 / -1; min-height: 360px; background: linear-gradient(135deg, #21251f, #121412); }
.woe-news-card > div { display: flex; justify-content: space-between; gap: 20px; color: var(--woe-brass-bright); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.woe-news-card time { color: #8f8b81; }
.woe-news-card h2 { max-width: 780px; margin: 62px 0 16px; font-size: clamp(28px, 4vw, 45px); }
.woe-news-card:not(.featured) h2 { margin-top: 46px; font-size: 28px; }
.woe-news-card p { max-width: 680px; color: var(--woe-paper-soft); line-height: 1.7; }
.woe-news-card a { display: inline-block; margin-top: 24px; color: var(--woe-brass-bright); font-size: 12px; font-weight: 800; text-underline-offset: 4px; text-transform: uppercase; }

.woe-feed-status { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 30px; padding: 16px 18px; border: 1px solid var(--woe-line); color: var(--woe-paper-soft); font-size: 13px; }
.woe-feed-status strong { color: var(--woe-paper); }
.woe-status-dot { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: #83a26d; box-shadow: 0 0 0 4px rgba(131, 162, 109, .12); }
.woe-status-dot.pending { background: var(--woe-brass-bright); box-shadow: 0 0 0 4px rgba(208, 174, 107, .12); }
.woe-patch-list { border-top: 1px solid var(--woe-line); }
.woe-patch-entry { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 42px 0; border-bottom: 1px solid var(--woe-line); }
.woe-patch-meta { display: flex; flex-direction: column; gap: 9px; color: var(--woe-brass-bright); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.woe-patch-meta time { color: #8f8b81; }
.woe-patch-entry h2 { font-size: clamp(28px, 4vw, 42px); }
.woe-patch-entry p { max-width: 760px; color: var(--woe-paper-soft); line-height: 1.7; white-space: pre-line; }
.woe-patch-entry .woe-version { color: var(--woe-brass-bright); font-size: 12px; }

.woe-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.woe-media-item { margin: 0; overflow: hidden; border: 1px solid var(--woe-line); background: var(--woe-ink-soft); }
.woe-media-item.wide { grid-column: 1 / -1; }
.woe-media-item img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: saturate(.88) contrast(1.04); }
.woe-media-item.wide img { aspect-ratio: 21 / 9; }
.woe-media-item figcaption { display: flex; justify-content: space-between; gap: 22px; padding: 22px; }
.woe-media-item figcaption strong { font-family: var(--woe-display); font-size: 22px; font-weight: 600; }
.woe-media-item figcaption span { max-width: 470px; color: var(--woe-paper-soft); font-size: 13px; line-height: 1.6; }

.woe-feature-groups { border-top: 1px solid var(--woe-line); }
.woe-feature-group { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; padding: 56px 0; border-bottom: 1px solid var(--woe-line); }
.woe-feature-group header span { color: var(--woe-brass-bright); font-size: 12px; }
.woe-feature-group header h2 { margin-top: 20px; font-size: 34px; }
.woe-feature-group > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.woe-feature-group h3 { margin: 0 0 12px; font-family: var(--woe-display); font-size: 23px; font-weight: 600; }
.woe-feature-group p { margin: 0; color: var(--woe-paper-soft); font-size: 14px; line-height: 1.7; }

.woe-roadmap { border-top: 1px solid var(--woe-line); }
.woe-roadmap article { display: grid; grid-template-columns: 80px .8fr 1fr; gap: 36px; align-items: start; padding: 42px 0; border-bottom: 1px solid var(--woe-line); }
.woe-roadmap article > span { color: var(--woe-brass-bright); font-family: var(--woe-display); font-size: 22px; }
.woe-roadmap article > div > p { margin: 0 0 10px; color: var(--woe-brass-bright); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.woe-roadmap h2 { font-size: 32px; }
.woe-roadmap article > p { margin: 0; color: var(--woe-paper-soft); line-height: 1.7; }
.woe-roadmap-state { display: inline-block; margin-top: 16px; padding: 7px 10px; border: 1px solid var(--woe-line); color: var(--woe-paper-soft); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }

.woe-community { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1px; border: 1px solid var(--woe-line); background: var(--woe-line); }
.woe-community > * { padding: 42px; background: var(--woe-ink); }
.woe-community h2 { font-size: clamp(34px, 5vw, 55px); }
.woe-community article > p:not(.woe-kicker) { max-width: 650px; color: var(--woe-paper-soft); line-height: 1.7; }
.woe-button.disabled { opacity: .55; cursor: not-allowed; }
.woe-community-list div { padding: 18px 0; border-bottom: 1px solid var(--woe-line); }
.woe-community-list div:first-child { padding-top: 0; }
.woe-community-list div:last-child { border-bottom: 0; }
.woe-community-list strong, .woe-community-list span { display: block; }
.woe-community-list strong { font-family: var(--woe-display); font-size: 22px; font-weight: 600; }
.woe-community-list span { margin-top: 6px; color: var(--woe-paper-soft); font-size: 13px; line-height: 1.5; }

.woe-status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--woe-line); background: var(--woe-line); }
.woe-status-grid article { min-height: 150px; display: flex; align-items: flex-start; gap: 16px; padding: 30px; background: var(--woe-ink); }
.woe-status-grid strong { font-family: var(--woe-display); font-size: 23px; font-weight: 600; }
.woe-status-grid p { margin: 7px 0 0; color: var(--woe-paper-soft); font-size: 13px; }

@media (max-width: 900px) {
  .woe-topbar-inner { grid-template-columns: 1fr auto; min-height: 68px; }
  .woe-nav { order: 3; grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; }
  .woe-hero { min-height: 610px; }
  .woe-hero::before { background-position: 61% center; }
  .woe-release-grid { grid-template-columns: 130px minmax(0, 1fr); padding-block: 28px; }
  .woe-release-link { grid-column: 2; justify-self: start; }
  .woe-world-story::before { background-position: 63% center; }
  .woe-world-story::after { background: linear-gradient(90deg, rgba(7, 9, 7, .96), rgba(7, 9, 7, .72) 74%, rgba(7, 9, 7, .34)), linear-gradient(0deg, rgba(6, 7, 6, .7), transparent 52%); }
  .woe-story-stage { justify-content: center; }
  .woe-pillars-layout { grid-template-columns: 1fr; gap: 54px; }
  .woe-pillars header { position: static; }
  .woe-realms-grid { grid-template-columns: 1fr; min-height: 0; }
  .woe-realm-card { min-height: 430px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .15); }
  .woe-home-news-grid { grid-template-columns: 1fr; }
  .woe-dispatch-list { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .woe-dispatch-list a { min-height: 220px; }
  .woe-home-news-head, .woe-section-title-row { padding-inline: 90px; }
  .woe-news-feature { grid-template-columns: 1fr; }
  .woe-news-feature-art { order: -1; }
  .woe-news-row { grid-template-columns: 180px 90px 1fr 28px; }
  .woe-news-row img { width: 180px; }
  .woe-news-row p { display: none; }
  .woe-section-head { grid-template-columns: 1fr; gap: 20px; }
  .woe-card-grid { grid-template-columns: 1fr; }
  .woe-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--woe-line); }
  .woe-card:last-child { border-bottom: 0; }
  .woe-card h3 { margin-top: 24px; }
  .woe-editorial { grid-template-columns: 1fr; }
  .woe-feature-group { grid-template-columns: 1fr; gap: 28px; }
  .woe-feature-group > div { grid-template-columns: 1fr; }
  .woe-community { grid-template-columns: 1fr; }
  .woe-status-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --woe-page: min(100% - 28px, 1180px); }
  .woe-topbar-inner { grid-template-columns: 1fr; }
  .woe-topbar .woe-button { display: none; }
  .woe-nav { width: 100%; gap: 24px; padding-bottom: 12px; }
  .woe-wordmark strong { font-size: 15px; }
  .woe-brand-mark { width: 39px; height: 36px; }
  .woe-hero { min-height: 580px; }
  .woe-hero::after { background: linear-gradient(90deg, rgba(10, 12, 10, .93), rgba(10, 12, 10, .55)), linear-gradient(0deg, #111311, transparent 48%); }
  .woe-hero-content { width: calc(100% - 28px); padding: 90px 0 52px; }
  .woe-hero-overline, .woe-hero-caption { display: none; }
  .woe-hero h1 { font-size: clamp(30px, 8.4vw, 42px); line-height: 1.14; letter-spacing: -.02em; }
  .woe-hero h1 span { white-space: normal; }
  .woe-hero-copy { font-size: 16px; }
  .woe-hero .woe-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .woe-release-grid { grid-template-columns: 1fr; gap: 14px; padding-block: 30px; }
  .woe-release-title { overflow-wrap: anywhere; font-size: 18px; line-height: 1.35; }
  .woe-release-link { width: 210px; }
  .woe-section { padding: 64px 0; }
  .woe-world-story { min-height: auto; padding-block: 76px; }
  .woe-world-story::before { background-position: 61% center; }
  .woe-world-story::after { background: linear-gradient(90deg, rgba(7, 9, 7, .93), rgba(7, 9, 7, .68)), linear-gradient(0deg, rgba(6, 7, 6, .82), transparent 56%); }
  .woe-story-stage { display: block; }
  .woe-story-copy { padding: 46px 28px 44px; }
  .woe-story-copy::before, .woe-story-copy::after { width: 46px; height: 46px; }
  .woe-story-copy h2 { font-size: clamp(23px, 7.4vw, 42px); line-height: 1.2; letter-spacing: 0; }
  .woe-story-divider { height: 28px; margin-block: 19px 16px; }
  .woe-story-copy > p:not(.woe-kicker) { font-size: 17px; line-height: 1.62; }
  .woe-pillars { padding-block: 78px 84px; }
  .woe-pillars-layout { gap: 40px; }
  .woe-pillars h2 { font-size: clamp(29px, 8vw, 42px); }
  .woe-pillar-list article { grid-template-columns: 38px 1fr; gap: 12px; padding-block: 24px; }
  .woe-pillar-list h3 { font-size: 20px; }
  .woe-pillar-list p { font-size: 16px; }
  .woe-story-art figcaption { position: static; max-width: none; }
  .woe-realm-card { min-height: 380px; padding: 34px 26px; }
  .woe-section-title-row { align-items: flex-start; flex-direction: column; padding: 0 0 24px; text-align: left; }
  .woe-dispatch-feature { min-height: 400px; padding: 26px; }
  .woe-dispatch-list { grid-template-columns: 1fr; }
  .woe-news-hero { min-height: 420px; padding-bottom: 54px; }
  .woe-news-feature-copy { padding: 30px 26px; }
  .woe-news-feature-art { min-height: 280px; }
  .woe-news-row { grid-template-columns: 108px 1fr 20px; gap: 16px; }
  .woe-news-row img { width: 108px; }
  .woe-news-row > span { grid-column: 2; grid-row: 1; align-self: start; }
  .woe-news-row h3 { grid-column: 2; grid-row: 1; padding-top: 18px; font-size: 19px; }
  .woe-news-row b { grid-column: 3; grid-row: 1; }
  .woe-editorial-main, .woe-editorial-aside { padding: 28px; }
  .woe-footer-inner { grid-template-columns: 1fr; }
  .woe-footer-links { justify-content: flex-start; }
  .woe-page-head { padding: 82px 0 52px; }
  .woe-news-grid, .woe-media-grid { grid-template-columns: 1fr; }
  .woe-news-card.featured, .woe-media-item.wide { grid-column: auto; }
  .woe-news-card { min-height: 280px; padding: 26px; }
  .woe-media-item.wide img, .woe-media-item img { aspect-ratio: 4 / 3; }
  .woe-media-item figcaption { flex-direction: column; }
  .woe-patch-entry { grid-template-columns: 1fr; gap: 20px; }
  .woe-patch-meta { flex-direction: row; justify-content: space-between; }
  .woe-roadmap article { grid-template-columns: 42px 1fr; gap: 20px; }
  .woe-roadmap article > p { grid-column: 2; }
  .woe-community > * { padding: 28px; }
}

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