/* วัดป่าเลิศธรรมนิมิต — shared stylesheet */

:root {
  --brand: #35472e;
  --brand-dark: #26361f;
  --accent: #b08d3e;
  --accent-dark: #9a7a32;
  --page-bg: #f5f3ea;
  --panel-bg: #ece8d8;
  --card-bg: #ffffff;
  --card-border: #e6e2d0;
  --nav-border: #e2ddc9;
  --nav-bg: rgba(245, 243, 234, 0.96);
  --nav-hover: #e9e6d6;
  --nav-ink: #4a4a3c;
  --muted: #8a8a76;
  --footer-ink: #cfcbb4;
  --ink: #3a3a30;
  --link: #5d7050;
  --link-hover: var(--brand);
  --line: #06c755;
  --line-hover: #05a648;
  --fb: #1877f2;
  --fb-hover: #1361ca;
  --yt: #ff0000;
  --yt-hover: #cc0000;
  --tiktok: #111111;
  --tiktok-hover: #000000;
  --max: 1100px;
  --max-hero: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--page-bg);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 400;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }

h1, h2, h3 { font-family: 'Kanit', sans-serif; margin: 0; }

p { margin: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px;
}

.section-tight { padding: 32px 20px; }

.eyebrow {
  font-family: 'Mitr', sans-serif;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin: 0 0 8px;
}

.h2 {
  font-size: clamp(26px, 4vw, 36px);
  color: var(--brand);
  margin: 0 0 16px;
  line-height: 1.3;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(8px);
}

.site-header .wrap {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--nav-border);
  object-fit: cover;
}

.brand-text { display: flex; flex-direction: column; }

.brand-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  color: var(--brand);
  font-size: 18px;
  line-height: 1.25;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
}

.main-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin-left: auto;
  padding: 2px;
  font-family: 'Prompt', sans-serif;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }

.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--nav-ink);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover { background: var(--nav-hover); color: var(--nav-ink); }

.main-nav a.active {
  background: var(--brand);
  color: #ffffff;
}
.main-nav a.active:hover { background: var(--brand); color: #fff; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }

.btn-line { background: var(--line); color: #fff; }
.btn-line:hover { background: var(--line-hover); color: #fff; }

.btn-fb { background: var(--fb); color: #fff; }
.btn-fb:hover { background: var(--fb-hover); color: #fff; }

.btn-yt { background: var(--yt); color: #fff; }
.btn-yt:hover { background: var(--yt-hover); color: #fff; }

.btn-tiktok { background: var(--tiktok); color: #fff; }
.btn-tiktok:hover { background: var(--tiktok-hover); color: #fff; }

.btn-block { flex: 1; min-width: 130px; }

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Prompt', sans-serif;
}

/* ---------- Cards / grids ---------- */

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
}

.card-solid {
  background: var(--brand);
  color: #f0eddd;
  border-radius: 16px;
  padding: 28px;
}

.card-panel {
  background: var(--panel-bg);
  border-radius: 16px;
  padding: 28px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-photos { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.grid-photos-lg { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }

/* ---------- Image placeholder ---------- */

.img-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #eee9d6, #eee9d6 10px, #e6e0c8 10px, #e6e0c8 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-slot span {
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  color: #9a9478;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.img-slot.square { aspect-ratio: 1 / 1; }

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #26301f;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 30, 18, 0.25) 0%, rgba(24, 30, 18, 0.45) 70%, rgba(24, 30, 18, 0.85) 100%);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max-hero);
  margin: 0 auto;
  padding: 96px 20px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(8px, 3vw, 24px);
  flex-wrap: nowrap;
}

.hero-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  /* extra bottom clearance so the CTA buttons never sit under the fixed
     LINE/call buttons (56px circle + 56px circle + 10px gap + 16px offset) */
  padding-bottom: clamp(150px, 20vw, 170px);
}

.hero-text h1 {
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(24px, 6vw, 56px);
  line-height: 1.2;
  margin: 16px 0 10px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-text p {
  color: #f0eddd;
  font-size: clamp(13px, 2.6vw, 20px);
  line-height: 1.7;
  margin: 0 0 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Prompt', sans-serif;
}

.hero-cta .btn {
  padding: clamp(10px, 2.4vw, 14px) clamp(16px, 4vw, 28px);
  font-size: clamp(13px, 2.6vw, 17px);
  white-space: nowrap;
}

.hero-portrait {
  flex: 0 0 auto;
  width: clamp(150px, 44vw, 360px);
  align-self: flex-end;
  display: flex;
  justify-content: center;
}

.hero-portrait img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

/* ---------- Page banner ---------- */

.page-banner {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  padding: 64px 20px;
  text-align: center;
}

.page-banner img { margin: 0 auto; }

.page-banner .back-link {
  display: inline-block;
  color: var(--footer-ink);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Prompt', sans-serif;
  margin-bottom: 14px;
}
.page-banner .back-link:hover { color: #fff; }

.page-banner h1 {
  color: #ffffff;
  font-size: clamp(30px, 6vw, 46px);
  margin: 18px 0 10px;
}

.page-banner p {
  color: var(--footer-ink);
  font-size: 17px;
  margin: 0;
  line-height: 1.8;
}

/* ---------- Fact list ---------- */

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #efecdd;
  padding-bottom: 12px;
}
.fact-row:last-child { border-bottom: none; padding-bottom: 0; }
.fact-row .label { color: var(--muted); font-size: 15px; }
.fact-row .value { font-weight: 600; text-align: right; }

/* ---------- Timeline ---------- */

.timeline-item { display: flex; gap: 18px; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); margin-top: 6px; }
.timeline-dot.current { background: var(--brand); }
.timeline-line { width: 2px; flex: 1; background: #dcd7c2; }
.timeline-body { padding-bottom: 28px; }
.timeline-item:last-child .timeline-body { padding-bottom: 0; }
.timeline-year { color: var(--accent); font-weight: 700; font-size: 15px; }
.timeline-name { font-weight: 600; font-size: 18px; margin: 2px 0; }
.timeline-role { color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brand-dark);
  color: var(--footer-ink);
  padding: 40px 20px;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
}

.footer-brand-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 17px;
}

.footer-brand-sub { font-size: 13px; }

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-family: 'Prompt', sans-serif;
}

.footer-links a { color: var(--footer-ink); text-decoration: none; }
.footer-links a:hover { color: #fff; }

.footer-note { font-size: 14px; line-height: 1.7; max-width: 420px; }

/* ---------- Floating quick contact ---------- */

.quick-contact {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Prompt', sans-serif;
}

.quick-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.quick-contact .qc-line { background: var(--line); }
.quick-contact .qc-line:hover { background: var(--line-hover); color: #fff; }
.quick-contact .qc-call { background: var(--brand); }
.quick-contact .qc-call:hover { background: var(--brand-dark); color: #fff; }

/* ---------- Placeholder pages ---------- */

.coming-soon {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 20px;
  text-align: center;
}

.coming-soon .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--panel-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.coming-soon .icon span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
}

.coming-soon h2 {
  font-size: clamp(22px, 4vw, 28px);
  color: var(--brand);
  margin: 0 0 12px;
}

.coming-soon p {
  font-size: 16px;
  line-height: 1.8;
  color: #5c5c4e;
  margin: 0 0 28px;
}

.coming-soon .btn-row { justify-content: center; }

/* ---------- Album cover card ---------- */

.album-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.album-card:hover { transform: translateY(-4px); }

.album-card .img-slot { aspect-ratio: 4 / 3; border-radius: 0; }

.album-card-body { padding: 18px; }

.album-card-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--brand);
  margin-bottom: 6px;
}

.album-card-date { font-size: 14px; color: var(--muted); }

/* ---------- Album list (whiteboard-style index) ---------- */

.doc-list {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
}

.doc-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--card-border);
  text-decoration: none;
  color: inherit;
}
.doc-list-item:last-child { border-bottom: none; }
.doc-list-item:hover { background: var(--nav-hover); }

.doc-list-num {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
  min-width: 28px;
}

.doc-list-title {
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  flex: 1 1 auto;
}
.doc-list-item:hover .doc-list-title { color: var(--brand); }

.doc-list-arrow {
  color: var(--accent);
  font-size: 18px;
  flex: 0 0 auto;
}

/* ---------- Q&A app (ปุจฉา-วิสัชนา) ---------- */

.qa-app {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(38, 54, 31, 0.08);
  overflow: hidden;
}

.qa-view { display: none; }
.qa-view.active { display: block; }

.qa-search-wrap { padding: 20px 22px 6px; }

.qa-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--page-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 14px;
  padding: 12px 16px;
}
.qa-search-box:focus-within { border-color: var(--accent); }

.qa-search-box svg { flex-shrink: 0; }

.qa-search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  color: var(--ink);
}

.qa-chips {
  padding: 12px 22px 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qa-chip {
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent-dark);
  background: var(--panel-bg);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.qa-chip:hover { transform: translateY(-2px); }

.qa-cat-heading {
  font-family: 'Mitr', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--brand);
  padding: 18px 22px 10px;
}

.qa-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 22px 22px;
}

.qa-cat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.qa-cat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(38, 54, 31, 0.1); }

.qa-cat-glyph {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #ffffff;
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-cat-label { font-family: 'Kanit', sans-serif; font-weight: 500; font-size: 15px; color: var(--ink); line-height: 1.25; }
.qa-cat-count { font-family: 'Prompt', sans-serif; font-size: 12px; color: var(--muted); }

.qa-list-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 22px 4px;
}
.qa-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--brand);
  padding: 4px 0;
  display: block;
}
.qa-list-label { font-family: 'Mitr', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink); }
.qa-list-count { font-family: 'Prompt', sans-serif; font-size: 13px; color: var(--muted); }

.qa-list { display: flex; flex-direction: column; gap: 9px; padding: 12px 22px 22px; }

.qa-list-row {
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 15px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.qa-list-row:hover { transform: translateX(2px); box-shadow: 0 6px 16px rgba(38, 54, 31, 0.08); }

.qa-list-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--panel-bg);
  color: var(--accent-dark);
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-list-body { flex: 1; min-width: 0; }
.qa-list-q { font-family: 'Kanit', sans-serif; font-weight: 500; font-size: 16px; color: var(--ink); line-height: 1.35; }
.qa-list-kw { margin-top: 3px; font-family: 'Prompt', sans-serif; font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qa-list-arrow { flex-shrink: 0; color: var(--accent); font-size: 20px; }

.qa-empty { text-align: center; padding: 36px 20px; color: var(--muted); font-family: 'Prompt', sans-serif; }
.qa-empty .glyph { font-size: 26px; margin-bottom: 8px; }

.qa-more-btn {
  margin-top: 4px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background: var(--brand);
  border: none;
  border-radius: 12px;
  padding: 13px;
  cursor: pointer;
}
.qa-more-btn:hover { background: var(--brand-dark); }

.qa-progress { height: 3px; background: var(--panel-bg); }
.qa-progress-bar { height: 100%; width: 0%; background: var(--accent); transition: width 0.1s linear; }

.qa-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--card-border);
}

.qa-font-btns { display: flex; gap: 6px; }
.qa-font-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--card-border);
  background: var(--card-bg);
  cursor: pointer;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qa-font-btn:first-child { font-size: 13px; }
.qa-font-btn:last-child { font-size: 18px; }

.qa-detail-body { padding: 24px 24px 8px; max-height: 60vh; overflow-y: auto; }

.qa-detail-cat {
  display: inline-block;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #ffffff;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.qa-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: 'Mitr', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--accent-dark);
}
.qa-kicker .dot { width: 7px; height: 7px; border-radius: 3px; background: var(--accent); display: inline-block; }
.qa-kicker.a { color: var(--brand); }
.qa-kicker.a .dot { background: var(--brand); }

.qa-q-text { font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 22px; line-height: 1.4; color: var(--ink); margin: 0 0 22px; }
.qa-divider { height: 3px; width: 48px; border-radius: 2px; background: var(--accent); margin-bottom: 22px; }
.qa-a-text { font-family: 'Noto Sans Thai', sans-serif; color: var(--ink); white-space: pre-wrap; line-height: 1.95; font-size: 17px; }

.qa-kw-block { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--card-border); }
.qa-kw-label { font-family: 'Prompt', sans-serif; font-weight: 500; font-size: 12px; color: var(--muted); margin-bottom: 10px; letter-spacing: 1px; }
.qa-kw-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.qa-kw-tag { font-family: 'Prompt', sans-serif; font-weight: 500; font-size: 13px; color: var(--accent-dark); background: var(--panel-bg); border-radius: 999px; padding: 6px 13px; }

.qa-detail-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--page-bg);
  border-top: 1px solid var(--card-border);
}

.qa-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  padding: 12px 8px;
  cursor: pointer;
  border: 1.5px solid var(--card-border);
  background: var(--card-bg);
  color: var(--brand);
}
.qa-nav-btn.primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.qa-nav-btn.primary:hover { background: var(--brand-dark); }

.qa-nav-pos { font-family: 'Prompt', sans-serif; font-size: 13px; color: var(--muted); white-space: nowrap; }
