/* ============================================================
   ALEDORN — dark fantasy hi-fi design system
   Warm charcoal + parchment + blood-red (cold-slate mood available)
   ============================================================ */

/* ---- Tokens (WARM default) ---- */
:root {
  --bg:      #0c0908;
  --bg-1:    #120e0c;
  --bg-2:    #1a1512;
  --bg-3:    #221a15;
  --panel-edge: rgba(236, 227, 210, 0.085);
  --panel-edge-strong: rgba(236, 227, 210, 0.16);

  --ink:    #ece3d2;
  --ink-2:  #c2b399;
  --ink-3:  #8d7e67;

  --blood:        #a8322a;
  --blood-bright: #c6453a;
  --ember:        #e07a3e;
  --gold:         #c2a25a;
  --gold-dim:     #8a7236;

  --accent:        var(--blood-bright);
  --accent-deep:   var(--blood);
  --accent-glow:   rgba(198, 69, 58, 0.5);
  --accent-ink:    #f6ecdd;

  --halo: rgba(224, 122, 62, 0.16);   /* warm candle halo behind hero */
  --depth: rgba(0,0,0,0.6);

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Spectral', Georgia, serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Cold slate-blue mood — kept as an optional skin via [data-mood="cold"] */
[data-mood="cold"] {
  --bg:    #07090b;
  --bg-1:  #0c1114;
  --bg-2:  #121b1f;
  --bg-3:  #182429;
  --ink:   #dfe6e7;
  --ink-2: #a3b3b7;
  --ink-3: #6d8085;
  --gold:      #9fb1b3;
  --gold-dim:  #5d7176;
  --halo: rgba(96, 150, 168, 0.16);
  --panel-edge: rgba(214, 230, 233, 0.085);
  --panel-edge-strong: rgba(214, 230, 233, 0.16);
}

/* accent variants (default is blood, via :root) */
[data-accent="ember"] { --accent: #e07a3e; --accent-deep:#bb5a24; --accent-glow: rgba(224,122,62,0.5); }
[data-accent="gold"]  { --accent: #c2a25a; --accent-deep:#9a7d34; --accent-glow: rgba(194,162,90,0.45); --accent-ink:#1a1208; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---- Fillable media (real images dropped into assets/) ---- */
.media {
  position: relative;
  display: block;
  margin: 0;            /* <figure> carries a 40px UA margin — reset it */
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-1));
}
.media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.media.is-loaded img { opacity: 1; }
.media .media-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 16px; text-align: center;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 46%, transparent);
  transition: opacity .4s var(--ease);
}
.media .media-ph svg { opacity: .55; }
.media.is-loaded .media-ph { opacity: 0; }

/* ---- Atmosphere: grain + vignette ---- */
.fx-grain, .fx-vignette { position: fixed; inset: 0; pointer-events: none; z-index: 80; }
.fx-grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}
.fx-vignette {
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.55) 100%),
    radial-gradient(120% 120% at 50% 120%, transparent 50%, rgba(0,0,0,0.7) 100%);
  z-index: 70;
}
[data-grain="off"] .fx-grain { display: none; }

/* ---- Embers ---- */
.embers { position: fixed; inset: 0; pointer-events: none; z-index: 75; overflow: hidden; }
.ember {
  position: absolute; bottom: -10px;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 6px 1px var(--ember);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.9; }
  70%  { opacity: 0.7; }
  100% { transform: translateY(-105vh) translateX(var(--drift, 20px)) scale(0.4); opacity: 0; }
}
[data-embers="off"] .embers { display: none; }
@media (prefers-reduced-motion: reduce) { .ember { animation: none; display: none; } }

/* ---- Layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.section { position: relative; padding: clamp(80px, 11vw, 150px) 0; }

/* ---- Type ---- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 13px;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  margin: 14px 0 0;
}
.lead { color: var(--ink-2); font-size: 19px; max-width: 56ch; }
.muted { color: var(--ink-3); }

/* ---- Ornamental divider ---- */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold-dim);
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: min(120px, 22vw);
  background: linear-gradient(var(--dir, 90deg), transparent, var(--gold-dim));
}
.ornament::after { --dir: 270deg; }
.ornament .rune { width: 9px; height: 9px; transform: rotate(45deg); border: 1px solid var(--gold-dim); }
[data-ornaments="off"] .ornament, [data-ornaments="off"] .corner-flourish { display: none; }

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 15px 26px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn small { font-family: var(--font-body); font-size: 12px; letter-spacing: 0; opacity: .75; font-weight: 400; }
.btn .steam {
  width: 22px; height: 22px; flex: none;
  display: grid; place-items: center;
}
.btn--primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: var(--accent-ink);
  border-color: color-mix(in srgb, var(--accent) 70%, #000);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 10px 30px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 16px 40px -8px var(--accent-glow), 0 0 26px -2px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--ghost {
  background: rgba(236,227,210,0.03);
  color: var(--ink);
  border-color: var(--panel-edge-strong);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--gold); color: #fff; background: rgba(236,227,210,0.06); }
.btn--lg { padding: 18px 32px; font-size: 16px; }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: var(--panel-edge);
}
.nav-inner { display: flex; align-items: center; gap: 30px; max-width: var(--maxw); margin: 0 auto; padding: 18px clamp(20px,5vw,56px); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .sigil { width: 26px; height: 32px; flex: none; color: var(--accent); }
.brand .name { font-family: var(--font-display); font-weight: 700; font-size: 23px; letter-spacing: 0.22em; }
.nav-links { display: flex; gap: 30px; margin-left: 14px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2); text-decoration: none; position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after { content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background: var(--gold); transition: right .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-spacer { flex: 1; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ---- Hero ---- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .media { width: 100%; height: 100%; }
.hero-media #heroVideo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: none; z-index: 1;
}
.hero-media.has-video #heroVideo { display: block; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(80% 70% at 70% 30%, var(--halo), transparent 60%),
    linear-gradient(180deg, rgba(8,6,5,0.55) 0%, rgba(8,6,5,0.1) 30%, rgba(8,6,5,0.5) 62%, var(--bg) 99%),
    linear-gradient(90deg, rgba(8,6,5,0.85) 0%, rgba(8,6,5,0.35) 45%, transparent 75%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(54px, 8vw, 96px); padding-top: 120px; }
.hero-wordmark {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(60px, 13vw, 184px);
  line-height: 0.86; letter-spacing: 0.02em;
  margin: 0;
  color: var(--ink);
  text-shadow: 0 4px 40px rgba(0,0,0,0.7), 0 0 60px var(--halo);
}
.hero-tagline { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; font-size: clamp(12px, 1.5vw, 16px); color: var(--gold); margin: 0 0 18px; }
.hero-sub { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); max-width: 44ch; margin: 22px 0 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
[data-cta="stacked"] .hero-cta { flex-direction: column; align-items: flex-start; }

.proof { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; color: var(--ink-2); font-size: 15px; }
.proof .stars { color: var(--gold); letter-spacing: 3px; font-size: 17px; }
.proof .div { width: 1px; height: 24px; background: var(--panel-edge-strong); }
[data-proof="off"] .proof { display: none; }

.play-btn {
  position: absolute; z-index: 3; right: clamp(20px,5vw,64px); top: 46%;
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(12,9,8,0.4); backdrop-filter: blur(6px);
  border: 1px solid var(--panel-edge-strong);
  color: var(--ink);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.play-btn::before { content:""; position:absolute; inset:-8px; border-radius:50%; border:1px solid var(--accent); opacity:.4; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0%{ transform:scale(1); opacity:.5;} 100%{ transform:scale(1.4); opacity:0;} }
.play-btn:hover { transform: scale(1.06); border-color: var(--gold); box-shadow: 0 0 40px -6px var(--accent-glow); }
.play-btn .tri { width:0;height:0; border-left:20px solid currentColor; border-top:13px solid transparent; border-bottom:13px solid transparent; margin-left:6px; }
@media (max-width: 720px){ .play-btn{ top:auto; bottom:42%; right:50%; transform:translateX(50%);} .play-btn:hover{transform:translateX(50%) scale(1.06);} }

.scroll-hint { position: absolute; z-index: 3; bottom: 26px; right: clamp(20px,5vw,56px); display:flex; align-items:center; gap:10px; color: var(--ink-3); font-family: var(--font-display); font-size:12px; letter-spacing:0.24em; text-transform:uppercase; }
.scroll-hint .bar { width:1px; height:40px; background: linear-gradient(var(--ink-3), transparent); position:relative; overflow:hidden; }
.scroll-hint .bar::after { content:""; position:absolute; top:-40px; left:0; width:1px; height:40px; background: var(--gold); animation: scrolldown 2.2s var(--ease) infinite; }
@keyframes scrolldown { 0%{transform:translateY(0);} 60%,100%{transform:translateY(80px);} }

/* corner flourishes */
.corner-flourish { position: absolute; width: 56px; height: 56px; border: 1px solid var(--gold-dim); opacity: .5; z-index: 4; }
.corner-flourish.tl { top: 92px; left: clamp(20px,5vw,56px); border-right:none; border-bottom:none; }
.corner-flourish.br { bottom: 26px; left: clamp(20px,5vw,56px); border-right:none; border-top:none; }

/* ---- Features ---- */
.feature-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.feature-list { display: flex; flex-direction: column; }
.feature {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start;
  padding: 28px 0; border-top: 1px solid var(--panel-edge);
}
.feature:last-child { border-bottom: 1px solid var(--panel-edge); }
.feature .ficon { width: 54px; height: 54px; color: var(--gold); transition: color .3s, transform .3s var(--ease); }
.feature:hover .ficon { color: var(--accent); transform: translateY(-2px) scale(1.04); }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 25px; margin: 2px 0 8px; letter-spacing: 0.01em; }
.feature p { margin: 0; color: var(--ink-2); font-size: 17px; }
.feature .fnum { font-family: var(--font-display); color: var(--ink-3); font-size: 13px; letter-spacing: 0.2em; }

.showcase { position: relative; }
.showcase .frame { position: relative; border: 1px solid var(--panel-edge-strong); padding: 10px; background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); box-shadow: 0 40px 80px -30px #000; }
.showcase .frame .media { width: 100%; display: block; }
.showcase .frame::before, .showcase .frame::after { content:""; position:absolute; width:14px; height:14px; border:1px solid var(--gold); }
.showcase .frame::before { top:-1px; left:-1px; border-right:none; border-bottom:none; }
.showcase .frame::after { bottom:-1px; right:-1px; border-left:none; border-top:none; }
.showcase .cap { position:absolute; bottom: 22px; left: 22px; right:22px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); z-index:2; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 6vw, 72px); }
.gallery .media { width: 100%; aspect-ratio: 16/10; display:block; border: 1px solid var(--panel-edge); transition: border-color .3s, transform .35s var(--ease); }
.gallery .media:hover { border-color: var(--gold); transform: translateY(-3px); }

/* ---- Dev blog ---- */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(34px, 5vw, 56px); }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--panel-edge);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  position: relative;
}
.post:hover { transform: translateY(-6px); border-color: var(--panel-edge-strong); box-shadow: 0 30px 60px -30px #000; }
.post .cover { position: relative; overflow: hidden; }
.post .cover .media { width: 100%; aspect-ratio: 16/10; display: block; }
.post .cover .tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-deep); padding: 4px 11px; border: 1px solid color-mix(in srgb, var(--accent) 60%, #000); }
.post .pbody { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post .date { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.post h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.2; margin: 0; }
.post p { margin: 0; color: var(--ink-2); font-size: 15px; }
.post .more { margin-top: auto; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: inline-flex; gap: 8px; align-items: center; }
.post:hover .more { color: var(--accent); }

.link-arrow { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); text-decoration: none; display: inline-flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--panel-edge-strong); padding-bottom: 6px; transition: color .25s, border-color .25s; }
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }
.link-arrow .a { transition: transform .3s var(--ease); }
.link-arrow:hover .a { transform: translateX(5px); }

/* ---- Big CTA ---- */
.finale { position: relative; overflow: hidden; text-align: center; padding: clamp(96px, 14vw, 200px) 0; }
.finale-media { position: absolute; inset: 0; z-index: 0; }
.finale-media .media { width: 100%; height: 100%; display: block; }
.finale-scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(70% 80% at 50% 50%, rgba(12,9,8,0.5), var(--bg) 88%); }
.finale .inner { position: relative; z-index: 2; }
.finale h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(38px, 7vw, 92px); line-height: 0.96; margin: 18px 0 0; text-shadow: 0 0 60px var(--halo); }
.finale .lead { margin: 22px auto 36px; text-align: center; }
.finale .hero-cta { justify-content: center; }

/* ---- Footer ---- */
.footer { background: var(--bg-1); border-top: 1px solid var(--panel-edge); padding: clamp(54px,7vw,84px) 0 36px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-top h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 18px; }
.foot-links { display: flex; flex-direction: column; gap: 11px; }
.foot-links a { color: var(--ink-2); text-decoration: none; font-size: 16px; transition: color .25s; }
.foot-links a:hover { color: var(--gold); }
.foot-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: 0.2em; }
.foot-brand p { color: var(--ink-3); font-size: 15px; max-width: 34ch; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: clamp(40px,6vw,64px); padding-top: 24px; border-top: 1px solid var(--panel-edge); color: var(--ink-3); font-size: 13px; flex-wrap: wrap; }
.foot-bottom .social { display: flex; gap: 16px; }
.foot-bottom .social a { color: var(--ink-3); text-decoration: none; transition: color .25s; }
.foot-bottom .social a:hover { color: var(--gold); }
.foot-bottom > span > a { color: inherit; text-decoration: none; }
.foot-bottom > span > a:hover { color: var(--gold); }

/* ---- Trailer modal ---- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 5vw; background: rgba(4,3,3,0.86); backdrop-filter: blur(8px); }
.modal.open { display: grid; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal .box { width: min(1100px, 100%); aspect-ratio: 16/9; background: #000; border: 1px solid var(--panel-edge-strong); position: relative; display:grid; place-items:center; box-shadow: 0 0 120px -20px var(--accent-glow); }
.modal .box .media, .modal .box video, .modal .box iframe { width: 100%; height: 100%; display:block; border:0; }
.modal .close { position: absolute; top: -44px; right: 0; background: none; border: none; color: var(--ink-2); font-size: 28px; cursor: pointer; font-family: var(--font-display); }
.modal .close:hover { color: #fff; }

/* ---- Reveal animation ---- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* hero load sequence */
.hero [data-load] { opacity: 0; transform: translateY(30px); }
.hero.ready [data-load] { animation: heroIn 1s var(--ease) forwards; }
.hero.ready [data-load][data-d="1"] { animation-delay: .15s; }
.hero.ready [data-load][data-d="2"] { animation-delay: .35s; }
.hero.ready [data-load][data-d="3"] { animation-delay: .55s; }
.hero.ready [data-load][data-d="4"] { animation-delay: .75s; }
.hero.ready [data-load][data-d="5"] { animation-delay: .95s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero [data-load] { opacity:1 !important; transform:none !important; animation:none !important; } }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .foot-top { grid-template-columns: 1fr; }
  .blog-head { flex-direction: column; align-items: flex-start; }
}
