/* css/styles.css */

:root{
  --bg: #070606;

  /* Atmosphere */
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  /* Crownfall palette */
  --gold: rgba(235, 200, 130, 0.92);

  /* Parchment base */
  --parch-1: rgba(246, 233, 206, 0.985);
  --parch-2: rgba(210, 182, 136, 0.965);

  /* Ink */
  --ink: rgba(18, 11, 7, 0.97);
  --ink2: rgba(18, 11, 7, 0.78);

  /* Borders / Shadow */
  --border: rgba(70, 42, 22, 0.52);
  --border-soft: rgba(70, 42, 22, 0.22);
  --shadow: 0 22px 70px rgba(0,0,0,0.72);

  /* Layout */
  --topbar-h: 72px;

  /* Panel */
  --panel-w: 1320px;

  /* Dev banner */
  --dev-banner-h: clamp(72px, 8vw, 110px);
  --dev-banner-lift: -8px;

  /* Texture strength */
  --fiber-opacity: 0.08;
  --speck-opacity: 0.05;

  /* Watermark + filigree */
  --wm-opacity: 0.30;
  --wm-size: min(1280px, 96%);
  --wm-y: 56%;
  --filigree-opacity: 0.08;
  --wm-header-boost: 1;
  --wm-body-fade: 0.35;

  /* Typography */
  --ui-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--text);
  background: var(--bg);

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding: calc(var(--topbar-h) + 26px) 16px 28px 16px;
  position: relative;
}

/* Background image layer */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;

  background: url("../assets/ironvale_bg.png") center / cover no-repeat;
  filter: saturate(0.95) contrast(1.08);
  opacity: 0.72;
}

/* Fullscreen ember layer behind content */
#embers{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Atmosphere above embers, behind content */
.bg-vignette{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    radial-gradient(1100px 700px at 55% 25%, rgba(255, 180, 90, 0.10), transparent 60%),
    radial-gradient(900px 520px at 25% 82%, rgba(255, 120, 40, 0.06), transparent 62%),
    radial-gradient(900px 520px at 82% 86%, rgba(255, 120, 40, 0.05), transparent 64%),
    radial-gradient(1500px 1100px at 50% 50%, rgba(0,0,0,0.38), rgba(0,0,0,0.94));
}

/* Foreground framing */
.frame-vignette{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    radial-gradient(900px 520px at 50% 12%, rgba(235, 200, 130, 0.06), transparent 60%),
    radial-gradient(1200px 900px at 50% 55%, transparent 55%, rgba(0,0,0,0.40)),
    radial-gradient(1800px 1200px at 50% 50%, transparent 55%, rgba(0,0,0,0.55));
  opacity: 0.9;
}

/* Ensure content sits above */
.wrap{
  position: relative;
  z-index: 2;
  width: min(1600px, 100%);
  margin: 0 auto;
}

/* Typography split: UI vs parchment */
.topbar,
.topbar * ,
.cta,
.pill,
.section h2,
.card,
.card *{
  font-family: var(--ui-font);
}

.title,
.tagline,
.section p{
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

/* When you jump to sections, offset for the fixed topbar */
.section{
  scroll-margin-top: calc(var(--topbar-h) + 26px);
}

/* =========================================================
   Topbar
   ========================================================= */
.topbar{
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--panel-w), calc(100% - 24px));
  height: var(--topbar-h);
  z-index: 9999;

  background:
    url("../assets/parchment_texture.png") center / cover no-repeat,
    linear-gradient(180deg, rgba(252, 240, 220, 0.92), rgba(214, 186, 140, 0.92));
  background-blend-mode: soft-light;

  border: 1px solid rgba(70, 42, 22, 0.62);
  border-radius: 14px;

  box-shadow:
    0 18px 55px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.34),
    inset 0 -1px 0 rgba(0,0,0,0.16);

  overflow: hidden;
}

.topbar::before{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(235,200,130,0.35);
  opacity: 0.9;
  pointer-events: none;
}

.topbar-inner{
  position: relative;
  z-index: 1;
  height: 100%;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;

  padding: 10px 16px;
  gap: 14px;
}

.topbar-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(20, 12, 8, 0.92);
}

.topbar-brand img{
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(70, 42, 22, 0.35);
}

.topbar-name{
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 15px;
  white-space: nowrap;
  color: rgba(20, 12, 8, 0.92);
}

.topbar-nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;

  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.topbar-nav::-webkit-scrollbar{ display: none; }

.topbar-link{
  padding: 7px 10px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(20, 12, 8, 0.92);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
}

.topbar-link:hover{
  background: rgba(0,0,0,0.045);
  border-color: rgba(70, 42, 22, 0.18);
}

.topbar-link.is-active{
  background: rgba(40, 26, 16, 0.72);
  color: rgba(255,255,255,0.92);
  border-color: rgba(235, 200, 130, 0.60);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 6px 18px rgba(0,0,0,0.22);
}

.topbar-sep{
  width: 1px;
  height: 24px;
  background: rgba(70, 42, 22, 0.28);
  margin: 0 4px;
  flex: 0 0 auto;
}

.topbar-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 11px;
  border-radius: 11px;
  font-weight: 900;
  font-size: 13px;

  background: rgba(0,0,0,0.10);
  border: 1px solid rgba(70, 42, 22, 0.40);
  color: rgba(20, 12, 8, 0.92);
  cursor: pointer;
  text-decoration: none;
  flex: 0 0 auto;
}

.topbar-btn:hover{
  border-color: rgba(235, 200, 130, 0.55);
  filter: brightness(1.05);
}

.topbar-btn.is-primary{
  background: rgba(40, 26, 16, 0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
}

/* =========================================================
   Hero layout
   ========================================================= */
.hero{
  min-height: calc(100vh - var(--topbar-h) - 52px);
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.panel{
  width: min(var(--panel-w), 100%);
}

/* =========================================================
   Parchment panel
   ========================================================= */
.panel-inner{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);

  background:
    radial-gradient(900px 520px at 50% 10%, rgba(255,255,255,0.26), transparent 62%),
    radial-gradient(900px 700px at 18% 28%, rgba(120, 70, 35, 0.10), transparent 58%),
    radial-gradient(900px 700px at 86% 72%, rgba(120, 70, 35, 0.08), transparent 62%),
    linear-gradient(180deg, var(--parch-1), var(--parch-2));
}

/* Edge vignette */
.panel-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;

  background:
    radial-gradient(1400px 900px at 50% 45%, transparent 56%, rgba(35, 20, 12, 0.18)),
    radial-gradient(900px 700px at 50% 120%, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
}

/* Texture overlay */
.panel-inner::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.52;

  background: url("../assets/parchment_texture.png") center / cover no-repeat;
  mix-blend-mode: multiply;
}

/* Watermark map */
.panel-watermark{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background-image: url("../assets/map_watermark.png");
  background-repeat: no-repeat;
  background-size: min(1200px, 92%) auto;
  background-position: center 46%;

  opacity: var(--wm-opacity);
  mix-blend-mode: multiply;

  filter:
    grayscale(1)
    contrast(2.05)
    brightness(0.68)
    blur(0.35px);

  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 34%,
    rgba(0,0,0,var(--wm-header-boost)) 44%,
    rgba(0,0,0,var(--wm-body-fade)) 58%,
    rgba(0,0,0,0.10) 100%);
  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 34%,
    rgba(0,0,0,var(--wm-header-boost)) 44%,
    rgba(0,0,0,var(--wm-body-fade)) 58%,
    rgba(0,0,0,0.10) 100%);
}

.panel-watermark::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image: url("../assets/map_watermark.png");
  background-repeat: no-repeat;
  background-size: var(--wm-size) auto;
  background-position: center var(--wm-y);

  opacity: 0.14;
  mix-blend-mode: overlay;
  filter: grayscale(1) contrast(1.8);
}

/* Filigree corners */
.panel-filigree{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: var(--filigree-opacity);

  background:
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27160%27%20height%3D%27160%27%20viewBox%3D%270%200%20160%20160%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23301f14%27%20stroke-opacity%3D%270.65%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M18%2048%20C28%2028%2048%2018%2074%2018%20C52%2026%2038%2038%2032%2058%27/%3E%3Cpath%20d%3D%27M22%2086%20C26%2072%2036%2062%2050%2060%20C42%2066%2036%2076%2036%2088%27/%3E%3Cpath%20d%3D%27M84%2022%20C70%2026%2062%2036%2060%2050%20C66%2042%2076%2036%2088%2036%27/%3E%3Cpath%20d%3D%27M18%2018%20L56%2018%27/%3E%3Cpath%20d%3D%27M18%2018%20L18%2056%27/%3E%3C/g%3E%3C/svg%3E") 12px 12px / 120px 120px no-repeat,
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27160%27%20height%3D%27160%27%20viewBox%3D%270%200%20160%20160%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23301f14%27%20stroke-opacity%3D%270.65%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M142%2048%20C132%2028%20112%2018%2086%2018%20C108%2026%20122%2038%20128%2058%27/%3E%3Cpath%20d%3D%27M138%2086%20C134%2072%20124%2062%20110%2060%20C118%2066%20124%2076%20124%2088%27/%3E%3Cpath%20d%3D%27M76%2022%20C90%2026%2098%2036%20100%2050%20C94%2042%2084%2036%2072%2036%27/%3E%3Cpath%20d%3D%27M142%2018%20L104%2018%27/%3E%3Cpath%20d%3D%27M142%2018%20L142%2056%27/%3E%3C/g%3E%3C/svg%3E") calc(100% - 12px) 12px / 120px 120px no-repeat;
}

/* Tattered edge feel */
.panel-tatter{
  position: absolute;
  inset: -2px;
  z-index: 7;
  pointer-events: none;

  background:
    radial-gradient(260px 140px at 5% 6%, rgba(35,20,12,0.22), transparent 72%),
    radial-gradient(260px 140px at 95% 7%, rgba(35,20,12,0.22), transparent 72%),
    radial-gradient(280px 160px at 6% 95%, rgba(35,20,12,0.20), transparent 72%),
    radial-gradient(280px 160px at 96% 96%, rgba(35,20,12,0.22), transparent 72%),
    radial-gradient(1400px 900px at 50% 50%, transparent 62%, rgba(0,0,0,0.10));
  opacity: 0.85;
  mix-blend-mode: multiply;
}

/* Fiber layer */
.panel-fibers{
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: var(--fiber-opacity);

  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.08) 0px,
      rgba(0,0,0,0.08) 1px,
      rgba(255,255,255,0.00) 2px,
      rgba(255,255,255,0.00) 7px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.05) 0px,
      rgba(0,0,0,0.05) 1px,
      rgba(255,255,255,0.00) 2px,
      rgba(255,255,255,0.00) 10px
    );
  mix-blend-mode: soft-light;
}

/* Specks layer */
.panel-specks{
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: var(--speck-opacity);

  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27200%27%20height%3D%27200%27%3E%3Cfilter%20id%3D%27s%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%271.25%27%20numOctaves%3D%272%27/%3E%3C/filter%3E%3Crect%20width%3D%27100%25%27%20height%3D%27100%25%27%20filter%3D%27url(%23s)%27%20opacity%3D%270.55%27/%3E%3C/svg%3E");
  background-size: 420px 420px;
  mix-blend-mode: multiply;
}

/* Content above textures */
.panel-content{
  position: relative;
  z-index: 10;
  padding: 18px 18px 20px 18px;
}

/* Readability wash behind content only */
.panel-content::before{
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 14px;

  background:
    radial-gradient(900px 520px at 50% 15%, rgba(255,255,255,0.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.10));
  opacity: 0.55;
  pointer-events: none;
}

/* =========================================================
   Header content
   ========================================================= */
.panel-crest{
  display: grid;
  place-items: center;
  margin: 10px auto 2px auto;
}
.panel-crest img{
  width: clamp(220px, 22vw, 330px);
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 80px rgba(0,0,0,0.60));
}

.phase-badge{
  display: grid;
  place-items: center;
  margin: 0 auto 6px auto;
}
.phase-badge img{
  height: var(--dev-banner-h);
  width: auto;
  display: block;
  transform: translateY(var(--dev-banner-lift));
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.34));
}

.title{
  margin: 0;
  text-align: center;
  letter-spacing: 0.9px;
  font-size: 44px;
  line-height: 1.05;
  color: var(--ink);
  text-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.tagline{
  margin: 10px auto 0 auto;
  text-align: center;
  color: var(--ink2);
  font-size: 15.5px;
  line-height: 1.45;
  max-width: 56ch;
  text-shadow: 0 1px 0 rgba(255,255,255,0.22);
}

/* Actions */
.actions{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;
  border-radius: 14px;

  background: rgba(40, 26, 16, 0.62);
  border: 1px solid rgba(70, 42, 22, 0.42);

  color: rgba(255,255,255,0.94);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;

  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
  transition: transform 0.08s ease, filter 0.2s ease, border-color 0.2s ease;
}

.cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  border-color: rgba(235, 200, 130, 0.55);
}

.cta.ghost{
  background: rgba(0,0,0,0.10);
  color: rgba(24, 16, 10, 0.88);
  box-shadow: none;
}

/* Pills */
.pillrow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.pill{
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(70, 42, 22, 0.20);
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(24, 16, 10, 0.84);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill strong{
  color: rgba(24, 16, 10, 0.94);
  font-weight: 900;
}

/* =========================================================
   Sections (shared)
   ========================================================= */
.grid{
  display: grid;
  gap: 10px;
  padding: 16px 0 0 0;
  position: relative;
}

.grid::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  bottom: 10px;
  border-radius: 14px;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  opacity: 0.45;
}

.section{
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(70, 42, 22, 0.22);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  border-radius: 0;
  padding: 14px 6px;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.section:first-child{
  border-top: 0;
  padding-top: 6px;
}

.section h2{
  margin: 0 0 10px 0;
  font-size: 13.5px;
  letter-spacing: 1.3px;
  color: rgba(24, 16, 10, 0.86);
  font-weight: 900;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  gap: 10px;
}

.section h2::after{
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(70,42,22,0.42), transparent);
  opacity: 0.70;
}

.section p{
  margin: 0;
  color: rgba(24, 16, 10, 0.90);
  line-height: 1.58;
  text-shadow: 0 1px 0 rgba(255,255,255,0.10);
}

/* =========================================================
   Homepage cards (new)
   ========================================================= */
.card-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px){
  .card-grid{ grid-template-columns: 1fr; }
}

.card{
  display: block;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 14px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(70, 42, 22, 0.18);

  box-shadow: 0 16px 44px rgba(0,0,0,0.10);
  transition: transform 0.08s ease, filter 0.2s ease, border-color 0.2s ease;
}

.card:hover{
  transform: translateY(-1px);
  border-color: rgba(235, 200, 130, 0.45);
  filter: brightness(1.02);
}

.card-title{
  margin: 0 0 6px 0;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(24, 16, 10, 0.90);
}

.card-desc{
  margin: 0;
  color: rgba(24, 16, 10, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.card-meta{
  margin-top: 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(24, 16, 10, 0.70);
  font-weight: 900;
  font-size: 12px;
}

/* =========================================================
   Toast
   ========================================================= */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(10, 8, 7, 0.86);
  border: 1px solid rgba(210, 170, 90, 0.20);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 99999;
}

.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1280px){
  :root{ --panel-w: 1120px; }
}
@media (max-width: 1100px){
  :root{ --panel-w: 940px; }
}
@media (max-width: 960px){
  :root{ --panel-w: 760px; }
}

@media (max-width: 620px){
  .topbar-name{ display: none; }

  .title{
    font-size: 36px;
    line-height: 1.1;
  }

  .tagline{
    font-size: 14px;
    max-width: 44ch;
  }

  .panel-content{ padding: 16px 14px 18px 14px; }
  .section{ padding: 12px 4px; }
}

@media (max-width: 520px){
  :root{
    --topbar-h: 66px;
    --dev-banner-lift: -6px;
    --fiber-opacity: 0.12;
    --wm-opacity: 0.22;
  }

  body{ padding-top: calc(var(--topbar-h) + 22px); }

  .topbar{
    top: 10px;
    width: calc(100% - 16px);
    border-radius: 14px;
  }
}

/* =========================================================
   Card grid (Homepage navigation)
   ========================================================= */
.card-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 780px){
  .card-grid{ grid-template-columns: 1fr; }
}

.card{
  display: block;
  text-decoration: none;

  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(70, 42, 22, 0.18);
  border-radius: 12px;

  padding: 10px 12px;
  color: rgba(24, 16, 10, 0.92);

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.08s ease, border-color 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.card:hover{
  transform: translateY(-1px);
  border-color: rgba(235, 200, 130, 0.55);
  background: rgba(0,0,0,0.07);
  filter: brightness(1.02);
}

.card-title{
  font-family: var(--ui-font);
  font-weight: 900;
  letter-spacing: 0.9px;
  font-size: 12.5px;
  text-transform: uppercase;
  color: rgba(24, 16, 10, 0.90);
  margin-bottom: 4px;
}

.card-desc{
  margin: 0 0 8px 0;
  color: rgba(24, 16, 10, 0.86);
  line-height: 1.45;
  font-size: 13px;
}

.card-meta{
  font-family: var(--ui-font);
  font-weight: 900;
  font-size: 12px;
  color: rgba(24, 16, 10, 0.70);
}
