/* ==========================================================================
   The Whole Hound Academy
   Brand stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --teal: #00404F;
  --teal-deep: #002A36;
  --cream: #FAF6F1;
  --cream-warm: #F5EFE6;
  --charcoal: #1E2A36;
  --peach: #F3CDB9;
  --sienna: #E07856;
  --sienna-dark: #C25E3D;
  --border: #D9D2C7;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1180px;
  --maxw-narrow: 820px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }

/* Headings */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--teal); line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 0.6em; }
h3 { font-family: var(--sans); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0; }
p { margin-bottom: 1em; }
a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--sienna); }
.eyebrow { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; color: var(--sienna); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1rem; display: block; }

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: 36px 0; }
@media (min-width: 768px) { section { padding: 48px 0; } }

.section-cream { background: var(--cream-warm); }
.section-teal { background: var(--teal); color: var(--cream); }
.section-teal h1, .section-teal h2 { color: var(--cream); }
.section-teal h3 { color: var(--peach); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 32px 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; padding-left: 0; margin-left: 0; flex-shrink: 0; }
.brand img { height: 56px; width: auto; display: block; }
.nav { display: none; }
@media (min-width: 980px) {
  .nav { display: flex; align-items: center; gap: 26px; flex: 1; justify-content: center; white-space: nowrap; }
  .nav a { font-size: 0.95rem; font-weight: 500; color: var(--teal); text-decoration: none; padding: 6px 0; position: relative; letter-spacing: 0.01em; }
  .nav a:hover { color: var(--sienna); }
  .nav a.active { color: var(--sienna); }
  .nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--sienna); }
}
@media (min-width: 1100px) {
  .nav { gap: 34px; }
}
.header-cta {
  display: none;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  background: var(--sienna); color: var(--cream); padding: 10px 16px; border-radius: var(--radius);
  text-decoration: none; flex-shrink: 0; white-space: nowrap;
}
.header-cta:hover { background: var(--sienna-dark); color: var(--cream); }
@media (min-width: 980px) { .header-cta { display: inline-block; } }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); color: var(--teal);
  padding: 8px 14px; border-radius: var(--radius); font-family: var(--sans); font-weight: 500;
  cursor: pointer;
}
@media (min-width: 980px) { .menu-toggle { display: none; } }

.mobile-nav { display: none; background: var(--cream); border-bottom: 1px solid var(--border); padding: 8px 24px 16px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--teal); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }

/* Buttons */
.btn { display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 0.96rem; padding: 14px 26px; border-radius: var(--radius); text-decoration: none; transition: background 0.15s, color 0.15s; cursor: pointer; border: none; }
.btn-primary { background: var(--sienna); color: var(--cream); }
.btn-primary:hover { background: var(--sienna-dark); color: var(--cream); }
.btn-secondary { background: var(--teal); color: var(--cream); }
.btn-secondary:hover { background: var(--teal-deep); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; margin-top: 20px; }
.cta-center { text-align: center; margin-top: 20px; }
.cta-center .btn { display: inline-block; }

/* Hero */
.hero { padding: 40px 0 40px; text-align: left; }
@media (min-width: 768px) { .hero { padding: 48px 0 72px; } }
.hero h1 { margin-bottom: 22px; }
.hero p { font-size: 1.12rem; }
.hero .btn-row { justify-content: flex-start; }

/* Generic prose-wide for inner pages like About */
.prose-wide { max-width: 920px; margin: 0 auto; }
.prose-wide.text-center { text-align: center; }
.prose-wide.text-center ul { text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
.about-portrait { max-width: 480px; margin: 0 auto 40px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 3; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Testimonial citation - consistent line breaks */
.review cite { display: block; line-height: 1.5; }
.review cite .client-name { display: block; }
.review cite .dog-info { display: block; font-weight: 400; color: var(--charcoal); opacity: 0.7; font-size: 0.82rem; margin-top: 2px; }

/* Meet Adam (homepage) */
.meet-adam-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 820px) { .meet-adam-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.meet-adam-text { text-align: left; align-self: stretch; }
.meet-adam-text .btn { margin-top: 4px; }
.meet-adam-photo { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--cream-warm); align-self: stretch; min-height: 320px; }
.meet-adam-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* Split grid (text left, photo right) */
.split-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 820px) { .split-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.split-text { text-align: left; align-self: center; }
.split-text > h2 { margin-bottom: 0.7em; }
.split-text > p { font-size: 1.06rem; margin-bottom: 1.4em; line-height: 1.7; }
.split-text > p, .split-text > ul, .split-text > ol { text-align: left; }
.split-text ul, .split-text ol { margin: 1.2em 0 2em 1.4em; }
.split-text li { margin-bottom: 22px; line-height: 1.7; padding-left: 6px; }
.split-text li:last-child { margin-bottom: 0; }
.split-text .btn { margin-top: 28px; }

/* When the split-text contains a long list (Behaviour cases), give it more breathing room */
.split-text.spaced li { margin-bottom: 28px; padding-left: 10px; font-size: 1.04rem; }
.split-text.spaced ul { margin: 1.4em 0 0 1.4em; }
.split-text.spaced > h2 { margin-bottom: 0.6em; }
.split-photo { border-radius: 8px; overflow: hidden; border: 1px dashed var(--border); background: var(--cream-warm); align-self: stretch; min-height: 320px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-family: var(--serif); font-style: italic; padding: 24px; text-align: center; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Trust strip with credential logos */
.trust-logos { display: inline-flex; align-items: center; gap: 14px; }
.trust-logos img { height: 32px; width: auto; display: block; }
.trust-strip-inner .trust-logos::before { content: "•"; color: var(--sienna); margin-right: 14px; }
.trust-strip-inner .trust-logos:first-child::before { display: none; }

/* Credential logos block (about page) */
.credential-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; padding: 24px 0 8px; }
.credential-logos img { height: 56px; width: auto; }
@media (min-width: 600px) { .credential-logos img { height: 70px; } }

/* Credentials split (about page) */
.credentials-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: start; margin-top: 1.6em; }
@media (min-width: 820px) { .credentials-grid { grid-template-columns: 1.5fr 1fr; gap: 56px; } }
.credentials-text h2 { margin-top: 0; padding-top: 0; }
.credentials-text ul { margin: 0 0 0 1.4em; }
.credentials-text li { margin-bottom: 14px; line-height: 1.6; }
.credentials-logos { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 28px; padding: 16px; background: var(--cream); border: 1px solid var(--border); border-radius: 8px; }
.credentials-logos img { max-width: 180px; max-height: 80px; width: auto; height: auto; object-fit: contain; }
.credentials-logos img[alt*="Channel 4"] { max-height: 100px; max-width: 110px; }

/* About page wide left-aligned prose */
.prose-wide.text-left { text-align: left; }
.prose-wide.text-left ul { text-align: left; max-width: none; margin-left: 1.4em; margin-right: 0; }
.prose-wide p { font-size: 1.06rem; margin-bottom: 1.6em; line-height: 1.7; }
.prose-wide h2 { margin-top: 1.6em; margin-bottom: 0.5em; }
.prose-wide ul { margin-bottom: 1.6em; }
.prose-wide ul li { margin-bottom: 12px; }

/* Trust strip */
.trust-strip { background: var(--cream-warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--charcoal); font-weight: 500; }
.trust-strip-inner span::before { content: "•"; color: var(--sienna); margin-right: 14px; }
.trust-strip-inner span:first-child::before { display: none; }

/* Service cards (3-up) */
.cards-3 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.card { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; }
.card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--teal); margin-bottom: 12px; line-height: 1.2; }
.card p { color: var(--charcoal); margin-bottom: 18px; flex-grow: 1; font-size: 0.96rem; }
.card .btn { align-self: center; }
.card { text-align: center; }

/* Pillars */
.pillars { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.pillar h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--teal); margin-bottom: 8px; }

/* Reviews */
.reviews { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 720px) { .reviews { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.review { background: var(--cream); border-left: 3px solid var(--sienna); padding: 22px 24px; display: flex; flex-direction: column; height: 100%; }
.review p { font-family: var(--serif); font-style: italic; font-size: 1.06rem; line-height: 1.55; color: var(--charcoal); margin-bottom: 18px; flex-grow: 1; }
.review cite { font-family: var(--sans); font-style: normal; font-size: 0.86rem; font-weight: 600; color: var(--teal); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }

/* Signal line (homepage "Does this sound familiar?") */
.signal-line {
  font-family: var(--serif);
  font-style: italic;
  color: var(--teal);
  text-align: center;
  margin: 32px 0 24px;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (min-width: 900px) {
  .signal-line { font-size: 1.5rem; white-space: nowrap; }
}
@media (min-width: 1100px) {
  .signal-line { font-size: 1.75rem; }
}

/* Symptom list */
.symptoms { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 24px 0 32px; }
@media (min-width: 600px) { .symptoms { grid-template-columns: 1fr 1fr; gap: 16px 28px; } }
.symptoms li { list-style: none; padding-left: 20px; position: relative; font-size: 1rem; }
.symptoms li::before { content: ""; position: absolute; left: 0; top: 12px; width: 7px; height: 7px; background: var(--sienna); border-radius: 50%; }

/* Hero-context symptom list: single column, tight gap, serif type matching H3 cards */
.symptoms-hero { grid-template-columns: 1fr !important; gap: 4px !important; margin: 24px 0 24px; }
.symptoms-hero li {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--charcoal);
  padding-left: 24px;
  margin-bottom: 0;
}
.symptoms-hero li::before { top: 13px; width: 7px; height: 7px; }

/* Hero H1 sized down to match an H2 ("Pick the path...") */
.hero h1.hero-h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 0; }

/* Hero signal/reassurance lines, split into two scales.
   Selector includes .hero to win over the generic .hero p rule above. */
.hero p.hero-signal-small {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0 0 24px;
  max-width: 540px;
}
.hero p.hero-signal-large {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--teal);
  margin: 0 0 22px;
  max-width: 540px;
}

/* Vertical alignment in the hero: H1 sits at the top of the photo, the buttons sit at the bottom of the photo. */
.hero .split-grid { align-items: stretch; }
.hero .split-text {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.hero .split-text > .btn-row { margin-top: 0; }
.hero .split-text { justify-content: center; }
.hero .split-photo { align-self: stretch; }

/* Final CTA banner */
.cta-banner { background: var(--teal); color: var(--cream); padding: 64px 0; text-align: center; }
.cta-banner h2 { color: var(--cream); margin-bottom: 14px; }
.cta-banner p { color: var(--cream); font-size: 1.05rem; margin-bottom: 24px; opacity: 0.9; }

/* Choice cards (start here) */
.choices { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .choices { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.choice { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 32px 28px; transition: transform 0.15s, border-color 0.15s; text-decoration: none; color: var(--charcoal); display: flex; flex-direction: column; }
.choice:hover { transform: translateY(-2px); border-color: var(--sienna); }
.choice h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--teal); margin-bottom: 12px; }
.choice p { font-size: 0.96rem; color: var(--charcoal); margin-bottom: 16px; flex-grow: 1; }
.choice-arrow { color: var(--sienna); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary { font-family: var(--serif); font-size: 1.25rem; color: var(--teal); font-weight: 600; cursor: pointer; list-style: none; padding-right: 32px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 1.4rem; color: var(--sienna); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details > p, .faq details > ul { margin-top: 14px; color: var(--charcoal); }

/* Programme tier blocks */
.tier-list { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .tier-list { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (min-width: 900px) { .tier-list-3 { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.tier { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; }
.tier h3 { font-family: var(--serif); font-size: 1.65rem; color: var(--teal); margin-bottom: 8px; }
.tier .tier-price { font-family: var(--sans); font-size: 0.86rem; color: var(--sienna); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 20px; }
.tier li { padding-left: 20px; position: relative; margin-bottom: 8px; font-size: 0.96rem; }
.tier li::before { content: "→"; position: absolute; left: 0; color: var(--sienna); font-weight: 700; }
.tier .btn { align-self: center; margin-top: auto; }
.tier { text-align: center; }
.tier ul { text-align: left; display: inline-block; }

/* Process steps */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.step { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 26px; counter-increment: step; position: relative; }
.step::before { content: counter(step); position: absolute; top: 22px; right: 22px; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--peach); line-height: 1; }
.step h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--teal); margin-bottom: 10px; padding-right: 60px; }

/* Form */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--sans); font-size: 1rem; background: var(--cream); color: var(--charcoal);
}
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--sienna); outline-offset: 1px; border-color: var(--sienna); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 32px; max-width: 600px; }

/* Footer */
.site-footer { background: var(--teal-deep); color: var(--cream); padding: 56px 0 32px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; } }
.footer-brand h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--cream); margin-bottom: 12px; letter-spacing: -0.01em; text-transform: none; }
.footer-brand p { color: rgba(250,246,241,0.75); font-size: 0.92rem; max-width: 360px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.86rem; font-weight: 600; color: var(--peach); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--cream); text-decoration: none; font-size: 0.94rem; opacity: 0.85; }
.footer-col a:hover { color: var(--peach); opacity: 1; }
.footer-locations { color: rgba(250,246,241,0.7); font-size: 0.86rem; line-height: 1.7; margin-top: 12px; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(250,246,241,0.15); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 0.84rem; color: rgba(250,246,241,0.6); }
.social-icons { display: flex; gap: 14px; }
.social-icons a { color: var(--cream); opacity: 0.8; font-size: 1.1rem; text-decoration: none; }
.social-icons a:hover { opacity: 1; color: var(--peach); }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  padding: 12px 16px; background: rgba(250,246,241,0.97);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.sticky-cta .btn { width: 100%; max-width: 360px; text-align: center; }
@media (min-width: 980px) { .sticky-cta { display: none; } }
@media (max-width: 979px) { body { padding-bottom: 80px; } }

/* Page hero (slim, for inner pages) */
.page-hero { padding: 56px 0 40px; background: var(--cream-warm); border-bottom: 1px solid var(--border); }
.page-hero .eyebrow { color: var(--sienna); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.12rem; max-width: 700px; }
.locations-strip { font-size: 0.9rem; color: var(--charcoal); margin-top: 18px; padding: 10px 16px; background: var(--cream); border-radius: var(--radius); display: inline-block; }
.locations-strip strong { color: var(--teal); }

/* Generic prose */
.prose { max-width: 720px; }
.prose p { font-size: 1.04rem; margin-bottom: 1.1em; }
.prose ul, .prose ol { margin: 1em 0 1.4em 1.4em; }
.prose li { margin-bottom: 8px; }

/* Util */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--border); border: none; margin: 48px 0; }

/* Two-up centred reviews (residential holidays) */
.reviews-2 { max-width: 760px; margin-left: auto; margin-right: auto; }
@media (min-width: 720px) { .reviews-2 { grid-template-columns: repeat(2, 1fr); } }

/* Class-card photos (6 Months + page) */
.tier-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 6px; margin-bottom: 18px; display: block; }

/* Tick checklist (community membership) */
.tick-list { list-style: none; padding: 0; margin: 24px 0 0; max-width: 640px; }
.tick-list li { position: relative; padding-left: 32px; margin-bottom: 14px; font-weight: 600; color: var(--teal); font-size: 1.05rem; }
.tick-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--sienna); font-weight: 700; }
