:root {
  --ink: #0a0a0c;
  --ink-2: #111218;
  --panel: #13141a;
  --rule: #2a2823;
  --ivory: #ebe4d4;
  --ivory-dim: #b9b3a4;
  --ivory-mute: #6c6a63;
  --gold: #b89968;
  --gold-dim: #7a6645;
  --crimson: #8a3a3a;
  --serif: "Cormorant Garamond", "IBM Plex Sans Thai", Garamond, "Times New Roman", serif;
  --sans: "Inter", "IBM Plex Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga";
  min-height: 100vh;
}
body {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,153,104,0.04) 0%, transparent 55%),
    var(--ink);
  background-attachment: fixed;
}

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 22px 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.3s ease;
}
.brand:hover { color: var(--gold); }
.brand .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 8px 4px;
  vertical-align: middle;
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  font-weight: 400;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.lang-toggle a {
  color: var(--ivory-mute);
  text-decoration: none;
  transition: color 0.3s ease;
}
.lang-toggle a:hover { color: var(--ivory); }
.lang-toggle a.active { color: var(--gold); }
.lang-toggle .sep { color: var(--rule); }

main.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 80px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  text-align: center;
  margin-bottom: 22px;
}
h1.title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 28px;
}
h1.title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ivory-dim);
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 0;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold-dim);
  margin: 56px 0;
}
.divider .line { width: 80px; height: 1px; background: var(--gold-dim); }
.divider .mark { width: 6px; height: 6px; transform: rotate(45deg); border: 1px solid var(--gold); }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 32px);
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 56px 0 18px;
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  margin: 32px 0 12px;
}
p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ivory-dim);
  margin-bottom: 18px;
}
p strong { color: var(--ivory); font-weight: 500; }

ol.positions {
  list-style: none;
  counter-reset: pos;
  margin: 24px 0 0;
}
ol.positions li {
  counter-increment: pos;
  padding: 22px 0 22px 64px;
  border-top: 1px solid var(--rule);
  position: relative;
}
ol.positions li:last-child { border-bottom: 1px solid var(--rule); }
ol.positions li::before {
  content: counter(pos, upper-roman);
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 26px;
  line-height: 1.1;
  width: 48px;
  text-align: center;
}
ol.positions li strong {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
ol.positions li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory-dim);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 64px 0 0;
}
.cta-btn {
  display: inline-block;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--gold);
  color: var(--ink);
  letter-spacing: 0.38em;
}
.cta-btn.ghost {
  border-color: var(--rule);
  color: var(--ivory-dim);
  padding: 14px 32px;
  font-size: 10px;
}
.cta-btn.ghost:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--ivory);
}

/* ====== QUICK ANSWER (AEO/answer-engine block) ======
   A small lifted panel near the top of dedicated pages that gives a
   40–80 word direct answer to the page's headline question. The deeper
   article follows below. Single-Q on a single page, so no FAQPage
   schema — the visible HTML carries the answer for AEO/snippets. */
.quick-answer {
  margin: 32px 0 40px;
  padding: 22px 26px;
  border: 1px solid var(--gold-dim);
  background: rgba(184, 153, 104, 0.04);
  border-radius: 4px;
}
.quick-answer .qa-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.quick-answer h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--ivory);
  letter-spacing: 0;
}
.quick-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ivory-dim);
  margin-bottom: 10px;
}
.quick-answer p:last-child { margin-bottom: 0; }
.quick-answer p strong { color: var(--ivory); font-weight: 500; }
.quick-answer .qa-deep {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold-dim);
  padding-bottom: 1px;
}
.quick-answer .qa-deep:hover { color: var(--ivory); border-bottom-color: var(--gold); }
@media (max-width: 720px) {
  .quick-answer { margin: 22px 0 30px; padding: 18px 18px; }
  .quick-answer h2 { font-size: 19px; }
  .quick-answer p { font-size: 15px; line-height: 1.65; }
}

/* ====== SHARE BLOCKS (card page + reading) ====== */
.share-card,
.share-reading {
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  text-align: center;
  max-width: 560px;
}
.share-card-lede,
.share-reading-lede {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.share-card .cta-btn,
.share-reading .cta-btn {
  margin: 0 auto;
}

.daily-card {
  background: var(--ink-2);
  border: 1px solid var(--gold-dim);
  padding: 36px 28px;
  text-align: center;
  margin: 56px 0;
  border-radius: 4px;
}
.daily-card .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.daily-card .name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 8px;
}
.daily-card .orientation {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 18px;
}
.daily-card .keywords {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  margin: 0 auto 22px;
  font-size: 17px;
  max-width: 50ch;
}
.daily-card .interp {
  color: var(--ivory-dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto;
}
.daily-card .loading {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-mute);
  font-size: 20px;
  padding: 20px 0;
}

footer {
  border-top: 1px solid var(--rule);
  padding: 40px 32px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
/* The repeated philosophy line "For reflection, not prediction." /
   "เพื่อการใคร่ครวญ ไม่ใช่การพยากรณ์" is hidden in the repeated footer.
   The phrase is still preserved in About/FAQ copy and in the share image
   fineprint, but no longer appears on every article footer. */
footer .fineprint { display: none; }

/* THAI TYPOGRAPHY: strip uppercasing/letter-spacing on Thai pages — Thai
   does not have case, and tracking inserts visible gaps between glyphs
   (the "อุปสรรค" problem). Also force the IBM Plex Sans Thai family on
   label-style elements that fall back unevenly otherwise. */
html[lang="th"] .eyebrow,
html[lang="th"] .lang-toggle,
html[lang="th"] .breadcrumb,
html[lang="th"] .cta-btn,
html[lang="th"] .daily-card .label,
html[lang="th"] .daily-card .orientation,
html[lang="th"] .card-page .cc-pair h3,
html[lang="th"] .card-page .intent-block h3,
html[lang="th"] .scenario-page .positions li strong,
html[lang="th"] .related-grid .rl-label,
html[lang="th"] .adjacent-nav .adj .dir,
html[lang="th"] footer,
html[lang="th"] footer .footer-nav,
html[lang="th"] footer .last-updated {
  letter-spacing: 0 !important;
  text-transform: none !important;
}
html[lang="th"] .eyebrow,
html[lang="th"] .breadcrumb,
html[lang="th"] .daily-card .label,
html[lang="th"] footer,
html[lang="th"] .card-page .cc-pair h3,
html[lang="th"] .related-grid .rl-label,
html[lang="th"] .adjacent-nav .adj .dir {
  font-family: "IBM Plex Sans Thai", var(--sans);
  font-weight: 500;
}
footer .last-updated {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-mute);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 12px;
}
footer .footer-nav {
  margin: 12px 0 14px;
}
footer .footer-nav a {
  color: var(--ivory-mute);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-nav a:hover { color: var(--gold); }
footer .footer-nav .sep {
  color: var(--rule);
  margin: 0 12px;
}

/* ====== CARD PAGE ====== */
.card-page .archetype {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  margin-top: -16px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.card-page .meaning-block {
  margin: 48px 0 0;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.card-page .meaning-block:last-of-type {
  border-bottom: 1px solid var(--rule);
}
.card-page .meaning-block h2 {
  margin: 0 0 12px;
  font-size: 28px;
}
.card-page .meaning-block .card-keywords {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dim);
  margin-bottom: 18px;
  font-size: 16px;
}
.card-page .cc-section {
  margin-top: 72px;
}
.card-page .cc-section > h2 {
  margin-bottom: 8px;
}
.card-page .cc-section .cc-lede {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 16px;
  margin-bottom: 36px;
}
.card-page .cc-grid {
  display: flex;
  flex-direction: column;
}
.card-page .cc-pos {
  border-top: 1px solid var(--rule);
  padding: 22px 0 24px;
}
.card-page .cc-pos:last-child {
  border-bottom: 1px solid var(--rule);
}
.card-page .cc-pos-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ivory);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.card-page .cc-pos-label .rn {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  margin-right: 8px;
}
.card-page .cc-pair {
  margin-bottom: 12px;
}
.card-page .cc-pair:last-child {
  margin-bottom: 0;
}
.card-page .cc-pair h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin: 0 0 4px;
}
.card-page .cc-pair p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ivory-dim);
  margin: 0;
}

.adjacent-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 72px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.adjacent-nav .adj {
  display: block;
  padding: 16px 20px;
  border: 1px solid var(--rule);
  color: var(--ivory-dim);
  text-decoration: none;
  border-radius: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.adjacent-nav .adj:hover {
  border-color: var(--gold);
  color: var(--ivory);
}
.adjacent-nav .adj.next { text-align: right; }
.adjacent-nav .adj .dir {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.adjacent-nav .adj .adj-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: inherit;
}

/* ====== BREADCRUMB ====== */
.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.6;
}
.breadcrumb a {
  color: var(--ivory-mute);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .bc-sep {
  margin: 0 8px;
  color: var(--rule);
}
.breadcrumb .bc-current { color: var(--gold); }

/* ====== RELATED CARDS MODULE (card page) ====== */
.related-cards {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.related-cards h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--ivory);
}
.related-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.related-cards-grid a {
  display: block;
  padding: 14px 12px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ivory-dim);
  text-align: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.related-cards-grid a:hover {
  border-color: var(--gold);
  color: var(--ivory);
}
.related-cards-grid .rc-rom {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 4px;
}
.related-cards-grid .rc-name {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.2;
}

/* ====== EXPLORE RELATED READINGS MODULE ====== */
.related-readings {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.related-readings h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ivory);
}
.related-readings .related-lede {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 15px;
  margin-bottom: 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.related-grid a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ivory-dim);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.related-grid a:hover {
  border-color: var(--gold);
  color: var(--ivory);
}
.related-grid .rl-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.related-grid .rl-name {
  font-family: var(--serif);
  font-size: 16px;
}

/* ====== HUB PAGE LIST ====== */
.hub-card-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.hub-card-list li {
  margin-bottom: 8px;
}
.hub-card-list a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.hub-card-list a:hover {
  border-color: var(--gold);
}
.hub-card-list .hcl-rom {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  text-align: center;
  line-height: 1.1;
}
.hub-card-list .hcl-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 4px;
}
.hub-card-list .hcl-kw {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 14px;
  line-height: 1.4;
}
.hub-page section + section { margin-top: 56px; }
.hub-page section.hub-cards h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 56px 0 0;
}

/* ====== TH INTENT BLOCKS (card pages) ====== */
.card-page .intent-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.card-page .intent-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 14px;
  color: var(--ivory);
}
.card-page .intent-block h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 6px;
}
.card-page .intent-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ivory-dim);
  margin-bottom: 6px;
}

/* ====== SCENARIO PAGE ====== */
.scenario-page .positions {
  list-style: none;
  counter-reset: pos;
  margin: 24px 0 0;
  padding: 0;
}
.scenario-page .positions li {
  counter-increment: pos;
  padding: 22px 0 22px 60px;
  border-top: 1px solid var(--rule);
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory-dim);
}
.scenario-page .positions li:last-child {
  border-bottom: 1px solid var(--rule);
}
.scenario-page .positions li::before {
  content: counter(pos, upper-roman);
  position: absolute;
  left: 0; top: 22px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  width: 44px;
  text-align: center;
}
.scenario-page .positions li strong {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.scenario-disclaimer {
  margin-top: 56px;
  padding: 24px 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  background: var(--ink-2);
  text-align: center;
}
.scenario-disclaimer p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ====== FAQ PAGE ====== */
.faq-item {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.faq-item:last-of-type {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 28px;
}
.faq-item h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--ivory);
}
.faq-item p a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold-dim);
}
.faq-item p a:hover {
  color: var(--ivory);
  border-bottom-color: var(--gold);
}

/* ====== HTML SITEMAP (/all-tarot-pages/) ====== */
.all-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 16px;
}
.all-list li {
  padding: 8px 0;
  border-bottom: 1px dotted var(--rule);
}
.all-list a {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 17px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.all-list a:hover { color: var(--gold); }
.all-list.cols {
  columns: 2;
  column-gap: 36px;
}
.all-list.cols li {
  break-inside: avoid;
}
@media (max-width: 720px) {
  .all-list.cols { columns: 1; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 16px; gap: 8px 14px; }
  .brand { font-size: 17px; letter-spacing: 0.12em; }
  .brand .brand-sub { display: none; }
  main.article { padding: 56px 18px 64px; }
  h2 { margin: 44px 0 14px; }
  ol.positions li { padding-left: 50px; }
  ol.positions li::before { font-size: 22px; width: 40px; }
  .daily-card { padding: 28px 20px; margin: 40px 0; }
  .daily-card .name { font-size: 30px; }
  .card-page .meaning-block h2 { font-size: 24px; }
  .card-page .cc-pos-label { font-size: 17px; }
  .adjacent-nav { grid-template-columns: 1fr; }
  .adjacent-nav .adj.next { text-align: left; }
  .related-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .breadcrumb { font-size: 9px; letter-spacing: 0.18em; }
  .breadcrumb .bc-sep { margin: 0 5px; }
  .hub-card-list a { grid-template-columns: 44px 1fr; padding: 14px 14px; gap: 14px; }
  .hub-card-list .hcl-rom { font-size: 18px; }
  .hub-card-list .hcl-name { font-size: 17px; }
}
