/* ============================================================
   TrueTest Web — global stylesheet
   Mirrors the Flutter app's palette & mobile-card UI, laid out
   as a centered "phone frame" so it reads correctly on desktop
   browsers too.
   ============================================================ */

:root {
  --purple: #7B2FBE;
  --purple-light: #AB47BC;
  --pink: #E91E8C;
  --yellow: #FEC42D;
  --yellow-soft: #FFD93D;
  --yellow-pale: #FEE552;
  --amber: #FFC107;
  --teal: #43C6AC;
  --ink: #1A1A2E;
  --ink-soft: #3D2914;
  --cream: #FFF8EE;
  --grey: #777;
  --grey-light: #f0f0f0;
  --shadow: 0 8px 24px rgba(0,0,0,.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ddd;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---- phone-frame app shell ---- */
.app-shell {
  max-width: 460px;
  margin: 0 auto;
  min-height: 100vh;
  background: #fff;
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,.25);
}
@media (min-width: 461px) {
  body { padding: 24px 0; background: linear-gradient(135deg,#7B2FBE,#1A1A2E); }
  .app-shell { border-radius: 32px; min-height: calc(100vh - 48px); }
}

.scroll-area { padding-bottom: 90px; }

/* ============ Language selection ============ */
.lang-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 24px;
}
.lang-page .logo { height: 80px; margin-bottom: 16px; }
.lang-page h1 { font-size: 24px; font-weight: 700; margin: 0; }
.lang-page p { color: rgba(255,255,255,.75); font-size: 14px; margin: 4px 0 24px; }
.lang-grid {
  width: 100%;
  max-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lang-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  transition: background .15s, transform .15s;
}
.lang-card:hover { background: rgba(255,255,255,.28); transform: translateY(-1px); }
.lang-card .flag { font-size: 22px; }

/* ============ Home header ============ */
.home-header {
  position: relative;
  padding: 14px 20px 18px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
}
.hh-deco {
  position: absolute;
  font-size: 15px;
  opacity: .55;
  pointer-events: none;
  animation: hhFloat 3s ease-in-out infinite;
}
.hh-deco:nth-of-type(2) { animation-delay: .5s; }
.hh-deco:nth-of-type(3) { animation-delay: 1s; }
@keyframes hhFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.home-header .greet-row { position: relative; display: flex; align-items: center; gap: 10px; z-index: 1; }
.home-header .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  box-shadow: 0 0 0 4px rgba(255,255,255,.15), 0 4px 10px rgba(0,0,0,.15);
  object-fit: cover;
}
.home-header .hi { font-size: 12px; color: rgba(255,255,255,.7); margin: 0; }
.home-header .tag { font-size: 13px; font-weight: 700; margin: 2px 0 0; }
.home-body {
  background: var(--yellow-pale);
  border-radius: 28px 28px 0 0;
  margin-top: -1px;
  padding-top: 20px;
  animation: hbFadeUp .35s ease both;
}
@keyframes hbFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- section heading ---- */
.section-title {
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px; margin-bottom: 16px;
}
.section-title .bar { width: 4px; height: 20px; border-radius: 4px; background: var(--pink); }
.section-title.purple .bar { background: var(--purple); }
.section-title h2 { font-size: 18px; font-weight: 700; margin: 0; color: var(--ink); }
.section-title .see-all { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--purple); }

/* ---- grid of cards (mascot / explore) ---- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 16px;
}
.test-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.test-card:active { transform: scale(.96); box-shadow: 0 2px 6px rgba(0,0,0,.1); }
.test-card .thumb-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: #EDE7F6; }
.test-card .thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.test-card .label {
  padding: 10px 8px 12px;
  text-align: center;
}
.test-card .label .t {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.test-card .label .s {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--grey);
  margin-top: 2px;
}

/* ---- popular styled overlay cards ---- */
.styled-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,.12);
  aspect-ratio: 1/1.45;
  padding: 14px 90px 12px 12px;
  display: flex;
  flex-direction: column;
}
.styled-card .line1 { font-size: 11px; font-weight: 700; color: #2D1B4E; }
.styled-card .line2 { font-size: 19px; font-weight: 900; line-height: 1; margin-top: 2px; }
.styled-card .line3 { font-size: 16px; font-weight: 900; color: var(--pink); line-height: 1.1; }
.styled-card .sub { margin-top: auto; font-size: 9px; font-weight: 600; color: rgba(45,27,78,.7); }
.styled-card .avatar-img {
  position: absolute; right: -10px; bottom: 0; height: 78%; width: auto;
}

/* ---- daily challenge ---- */
.daily-challenge {
  position: relative;
  overflow: hidden;
  margin: 0 16px;
  padding: 16px;
  background: linear-gradient(135deg, #FFF3C4, #FFD93D);
  border: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 18px rgba(255,179,0,.25);
}
.daily-challenge::after {
  content: '';
  position: absolute;
  right: -22px; top: -22px;
  width: 90px; height: 90px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
}
.daily-challenge .ico {
  position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 14px; background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center; font-size: 26px; flex: 0 0 auto;
  animation: icoPulse 2s ease-in-out infinite;
}
@keyframes icoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.daily-challenge .info { position: relative; z-index: 1; flex: 1; min-width: 0; }
.daily-challenge .info b { font-size: 13px; display: block; }
.daily-challenge .info span { font-size: 11px; color: #666; }
.daily-challenge .play {
  position: relative; z-index: 1;
  padding: 7px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; color: var(--ink);
  background: linear-gradient(90deg, #FFD93D, #FF8C00); flex: 0 0 auto;
  transition: transform .15s;
}
.daily-challenge .play:active { transform: scale(.92); }

/* ---- bottom nav ---- */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px calc(8px + env(safe-area-inset-bottom));
  z-index: 20;
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 14px; border-radius: 20px; color: #aaa; font-size: 10px;
  transition: background .2s, color .2s;
}
.nav-item.active { background: #EDE7F6; color: var(--purple); font-weight: 700; }
.nav-item .icon { font-size: 20px; display: inline-block; transition: transform .2s; }
.nav-item.active .icon { transform: scale(1.1); }
.nav-center {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(123,47,190,.4);
  overflow: hidden;
}
.nav-center video, .nav-center img { width: 56px; height: 56px; object-fit: cover; }

/* ============ generic top bar (explore / test pages) ============ */
.top-bar {
  background: var(--purple);
  color: #fff;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar h1 { font-size: 17px; font-weight: 700; margin: 0; flex: 1; }
.top-bar .back-btn, .top-bar .icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; border: none;
}

/* ============ input screen (name entry) ============ */
.input-page { min-height: 100vh; background: var(--amber); }
.input-page .back-row { padding: 10px 28px 0; }
.circle-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  color: var(--ink-soft); border: none; font-size: 18px;
}
.input-character { display: block; height: 180px; margin: -6px auto 0; object-fit: contain; }
.input-card {
  background: #fff;
  border-radius: var(--radius-lg);
  margin: 0 24px 0;
  padding: 32px 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  text-align: center;
}
.input-card h2 {
  font-family: 'Lobster', cursive;
  font-size: 30px; color: var(--ink); margin: 0 0 12px; line-height: 1.2;
}
.input-card p { font-size: 14px; font-weight: 600; color: #444; margin: 0 0 26px; line-height: 1.5; }
.text-field {
  display: flex; align-items: center; gap: 10px;
  background: #F8F8F8; border: 1.5px solid #E0E0E0; border-radius: 16px;
  padding: 14px 16px; margin-bottom: 20px;
}
.text-field input {
  border: none; outline: none; background: transparent; flex: 1;
  font-size: 16px; font-family: inherit; font-weight: 500; color: var(--ink);
}
.text-field:focus-within { border-color: var(--amber); box-shadow: 0 4px 12px rgba(255,193,7,.2); }
.btn-primary {
  width: 100%; padding: 16px; border: none; border-radius: 16px;
  background: var(--ink); color: #fff; font-size: 16px; font-weight: 700;
  letter-spacing: 1px;
}
.btn-primary:disabled { opacity: .6; }
.btn-purple { background: var(--purple); }

/* ============ question screen (fits one viewport, no scroll) ============ */
.question-page {
  height: 100vh;
  background: var(--yellow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.q-topbar { flex: 0 0 auto; display: flex; align-items: center; padding: clamp(8px, 2vh, 16px) 20px; gap: 20px; }
.q-progress { flex: 1 1 auto; display: flex; justify-content: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); transition: all .2s; }
.dot.active { width: 12px; height: 12px; background: var(--purple); }
.dot.done { background: var(--purple); }
.q-character {
  flex: 0 1 auto;
  height: clamp(70px, 16vh, 150px);
  margin: 0 auto -6px;
  display: block;
  object-fit: contain;
}
.q-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 0 20px clamp(10px, 2.5vh, 24px);
}
.q-card {
  flex: 0 0 auto;
  background: #fff; border: 3px solid #FFE4A1; border-radius: clamp(14px, 3vh, 24px);
  padding: clamp(12px, 2.5vh, 24px); font-size: clamp(15px, 3.4vh, 20px); font-weight: 700; color: var(--ink);
  text-align: center; line-height: 1.3;
  box-shadow: 0 10px 20px rgba(233,30,140,.2);
  margin-bottom: clamp(10px, 2vh, 20px);
}
.q-options { flex: 0 0 auto; display: flex; flex-direction: column; gap: clamp(6px, 1.5vh, 12px); }
.q-option {
  display: flex; align-items: center; gap: clamp(8px, 2vw, 16px);
  background: #fff; border: 2px solid #FFE4A1; border-radius: clamp(10px, 2vh, 16px);
  padding: clamp(8px, 1.8vh, 14px) 16px; text-align: left; width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,.05);
  transition: background .2s, border-color .2s, color .2s;
}
.q-letter {
  width: clamp(32px, 7vh, 44px); height: clamp(32px, 7vh, 44px); border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: clamp(13px, 2.5vh, 18px);
}
.q-text { font-size: clamp(12px, 2.2vh, 15px); font-weight: 500; color: var(--ink-soft); }
.q-option.c-pink .q-letter { background: rgba(255,107,157,.15); color: #FF6B9D; }
.q-option.c-purple .q-letter { background: rgba(123,47,190,.15); color: var(--purple); }
.q-option.c-orange .q-letter { background: rgba(255,179,71,.15); color: #FFB347; }
.q-option.c-teal .q-letter { background: rgba(67,198,172,.15); color: #43C6AC; }
.q-option.c-pink.selected { background: #FF6B9D; border-color: #FF6B9D; }
.q-option.c-purple.selected { background: var(--purple); border-color: var(--purple); }
.q-option.c-orange.selected { background: #FFB347; border-color: #FFB347; }
.q-option.c-teal.selected { background: #43C6AC; border-color: #43C6AC; }
.q-option.selected .q-letter { background: rgba(255,255,255,.3); color: #fff; }
.q-option.selected .q-text { color: #fff; }
.q-option:disabled { cursor: default; }

/* ============ result screen ============ */
.result-page { min-height: 100vh; background: var(--yellow); }
.result-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.result-topbar h1 { font-size: 20px; font-weight: 700; color: var(--ink-soft); margin: 0; }
.result-hero { position: relative; text-align: center; padding-top: 20px; min-height: 210px; }
.result-hero img { height: 190px; margin: 0 auto; }
.result-hero .star { position: absolute; font-size: 18px; }
.result-sheet {
  background: var(--cream);
  border-radius: 30px 30px 0 0;
  padding: 24px 20px 30px;
}
.breakdown-pill {
  display: block; width: fit-content; margin: 0 auto 18px;
  background: var(--purple); color: #fff; font-size: 13px; font-weight: 700;
  padding: 9px 24px; border-radius: 30px; text-align: center;
}
.result-emoji-title { text-align: center; margin-bottom: 18px; }
.result-emoji-title .emoji { font-size: 40px; }
.result-emoji-title h2 { font-size: 19px; margin: 6px 0 2px; color: var(--ink); }
.result-emoji-title .sub { font-size: 12px; color: var(--purple); font-weight: 600; }
.result-emoji-title p { font-size: 17px; font-weight: 700; color: var(--ink); max-width: 320px; margin: 8px auto 0; line-height: 1.4; }
.traits-card { background: #fff; border-radius: 22px; padding: 18px; box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.trait-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.trait-row:last-child { margin-bottom: 0; }
.trait-icon {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.trait-icon.pink { background: rgba(255,107,157,.15); }
.trait-icon.purple { background: rgba(156,77,204,.15); }
.trait-icon.blue { background: rgba(74,144,217,.15); }
.trait-icon.green { background: rgba(67,198,172,.15); }
.trait-icon.orange { background: rgba(255,165,0,.15); }
.trait-info { flex: 1; min-width: 0; }
.trait-head { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
.trait-head span:first-child { font-weight: 600; color: var(--ink-soft); }
.trait-val { font-weight: 700; }
.trait-bar { height: 9px; border-radius: 10px; background: #f1f1f1; overflow: hidden; }
.trait-fill { height: 100%; border-radius: 10px; }
.trait-fill.pink, .trait-val.pink { background: #FF6B9D; color: #FF6B9D; }
.trait-fill.purple, .trait-val.purple { background: #9C4DCC; color: #9C4DCC; }
.trait-fill.blue, .trait-val.blue { background: #4A90D9; color: #4A90D9; }
.trait-fill.green, .trait-val.green { background: #43C6AC; color: #43C6AC; }
.trait-fill.orange, .trait-val.orange { background: #FFA500; color: #FFA500; }

.wa-share-btn {
  margin: 22px auto 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background-color: #25D366; /* WhatsApp green color */
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  width: 80%;
  padding: 20px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-weight: 700;
  animation: shake 2s infinite;
}
.wa-share-btn:hover {
  background-color: #128C7E; /* Darker shade of WhatsApp green */
  animation: none; /* Disable animation on hover */
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.wa-share-btn img { height: 38px; flex: 0 0 auto; }
.wa-share-btn .lbl { white-space: nowrap; font-size: 17px; }

/* ============ instant single-result test page ============ */
.test-page { min-height: 100vh; background: #F5F0FF; }
.test-hero { padding: 20px; }
.test-hero .cover { border-radius: 20px; height: 180px; width: 100%; object-fit: cover; background: #EDE7F6; }
.test-hero .subtitle { font-size: 14px; color: #666; text-align: center; margin: 20px 0 24px; }
.spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 4px solid #EDE7F6; border-top-color: var(--purple);
  margin: 0 auto 12px; animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.analyzing-text { text-align: center; color: var(--purple); font-weight: 600; font-size: 14px; }
.premium-result-card {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 20px; padding: 24px; text-align: center; color: #fff;
  box-shadow: 0 10px 24px rgba(123,47,190,.4);
}
.premium-result-card .title { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; }
.premium-result-card .body { font-size: 16px; font-weight: 700; margin: 12px 0 8px; }
.premium-result-card .stars { font-size: 16px; letter-spacing: 2px; color: #FFD700; }
.btn-row { display: flex; gap: 12px; margin-top: 20px; }
.btn-outline {
  flex: 1; padding: 12px; border-radius: 12px; border: 1.5px solid var(--purple);
  background: transparent; color: var(--purple); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-wa {
  flex: 1; padding: 12px; border-radius: 12px; border: none; background: #25D366;
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-wa img { height: 18px; }
.text-link-btn { display: block; width: 100%; text-align: center; background: none; border: none; color: var(--purple); font-weight: 600; margin-top: 12px; padding: 8px; }

/* misc utility */
.center-text { text-align: center; }
.mt-20 { margin-top: 20px; }
.empty-state { text-align: center; padding: 60px 20px; color: #777; }
.empty-state .big-icon { font-size: 56px; display: block; margin-bottom: 12px; }
.retry-btn { color: var(--purple); font-weight: 600; margin-top: 8px; display: inline-block; }

/* ---- Truey avatar menu (Home header) ---- */
.avatar-btn { padding: 0; border: none; background: none; border-radius: 50%; line-height: 0; }
.truey-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  padding: 8px;
  min-width: 200px;
  z-index: 30;
  flex-direction: column;
}
.truey-menu.open { display: flex; animation: menuPop .15s ease both; }
@keyframes menuPop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.truey-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  transition: background .15s;
}
.truey-menu a:hover, .truey-menu a:active { background: #F3EEFB; }

/* ---- static content pages (About / Terms / Privacy / Contact) ---- */
.static-page { background: var(--cream); min-height: 100vh; }
.static-content { padding: 24px 22px 48px; line-height: 1.6; color: var(--ink-soft); }
.static-content h2 { font-size: 18px; color: var(--ink); margin: 22px 0 8px; }
.static-content h2:first-child { margin-top: 0; }
.static-content p { font-size: 13.5px; margin: 0 0 12px; }
.static-content ul { margin: 0 0 12px; padding-left: 20px; }
.static-content li { font-size: 13.5px; margin-bottom: 6px; }
.static-content .updated { font-size: 11.5px; color: var(--grey); margin-bottom: 20px; }
.static-content a.inline-link { color: var(--purple); font-weight: 600; }
.contact-card {
  background: #fff; border-radius: 18px; padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.contact-card .ico {
  width: 46px; height: 46px; border-radius: 50%; background: #EDE7F6;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex: 0 0 auto;
}
.contact-card .label { font-size: 11px; color: var(--grey); margin: 0; }
.contact-card .value { font-size: 14px; font-weight: 700; color: var(--ink); margin: 2px 0 0; }

/* ---- blog ---- */
.blog-list { padding: 20px 16px 4px; display: flex; flex-direction: column; gap: 14px; }
.blog-card { display: block; background: #fff; border-radius: 18px; padding: 16px 18px; box-shadow: 0 4px 10px rgba(0,0,0,.08); transition: transform .15s; }
.blog-card:active { transform: scale(.98); }
.blog-card .date { font-size: 10.5px; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: .3px; }
.blog-card h3 { font-size: 15px; margin: 6px 0 6px; color: var(--ink); }
.blog-card p { font-size: 12.5px; color: var(--grey); margin: 0; line-height: 1.5; }
.blog-article .static-content { padding-top: 18px; }
.blog-article .post-date { font-size: 11.5px; color: var(--grey); margin-bottom: 4px; }
.blog-article h1.post-title { font-family: 'Outfit', sans-serif; font-size: 22px; line-height: 1.3; color: var(--ink); margin: 0 0 16px; }
