/* ==========================================================================
   Mumtaz marketing site — single stylesheet
   RTL-aware: uses CSS logical properties (inline-start/end, margin-inline…)
   so the same rules work for LTR (en) and RTL (ar) pages.
   ========================================================================== */

/* ---- Fonts (self-hosted, subset by unicode-range) ----------------------- */
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-latin-var.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("/assets/fonts/ibm-plex-sans-arabic-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("/assets/fonts/ibm-plex-sans-arabic-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("/assets/fonts/ibm-plex-sans-arabic-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}

/* ---- Design tokens ------------------------------------------------------ */
:root {
  --teal: #0e7c6b;
  --teal-strong: #0a5f52;
  --sand: #d99a2b;
  --sand-ink: #8a5f14; /* darker sand, safe for small text on light bg */

  --bg: #f7f9f8;
  --surface: #ffffff;
  --ink: #17242c;
  --muted: #4d5e66;
  --hairline: #dbe3e0;
  --tint: #e9f2ef;
  --link: var(--teal);

  /* Answer feedback. Never the only signal — the practice page also sets an
     icon and a text verdict — but these must stay legible in both themes. */
  --ok: #17663f;
  --ok-tint: #e4f2ea;
  --bad: #a3302a;
  --bad-tint: #f9eae9;

  --radius: 14px;
  --container: 70rem;
  --font-stack: "IBM Plex Sans", "IBM Plex Sans Arabic", system-ui,
    -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Dark theme tokens. Applied two ways:
   1. data-theme="dark" set on <html> by the header theme switch (persisted);
   2. system preference, unless the user explicitly chose light. */
:root[data-theme="dark"] {
  --bg: #0f1a1f;
  --surface: #15242b;
  --ink: #e8eeec;
  --muted: #a3b4ae;
  --hairline: #27383c;
  --tint: #14302b;
  --teal-strong: #0e7c6b;
  --link: #4fb8a4;
  --sand-ink: #e0aa4d;
  --ok: #6fd39f;
  --ok-tint: #143026;
  --bad: #f0938c;
  --bad-tint: #341d1c;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1a1f;
    --surface: #15242b;
    --ink: #e8eeec;
    --muted: #a3b4ae;
    --hairline: #27383c;
    --tint: #14302b;
    --teal-strong: #0e7c6b;
    --link: #4fb8a4;
    --sand-ink: #e0aa4d;
    --ok: #6fd39f;
    --ok-tint: #143026;
    --bad: #f0938c;
    --bad-tint: #341d1c;
  }
}

/* ---- Base --------------------------------------------------------------- */
* {
  box-sizing: border-box;
}
/* The UA rule for [hidden] is display:none, but it loses to ANY author rule
   that sets display — so `.btn { display: inline-flex }` silently un-hides a
   <button hidden>. That is not cosmetic: on the practice page it exposed the
   "Next Question" button before the answer had been checked, letting a visitor
   skip the check step so their answer was never recorded and the final score
   read 0. Make `hidden` mean hidden, everywhere. */
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-stack);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
:lang(ar) {
  line-height: 1.9;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--teal-strong);
}
h1, h2, h3 {
  line-height: 1.25;
  text-wrap: balance;
  margin-block: 0 0.6em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin-block: 0 1em; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.section + .section {
  border-block-start: 1px solid var(--hairline);
}
.section-intro {
  max-width: 46rem;
  color: var(--muted);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  inset-block-start: -3rem;
  inset-inline-start: 1rem;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}
.skip-link:focus {
  inset-block-start: 0;
}

/* ---- Header ------------------------------------------------------------- */
.site-header {
  border-block-end: 1px solid var(--hairline);
  background: var(--bg);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  padding-block: 0.9rem;
}
.brand {
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.brand svg,
.brand img {
  flex: none;
}
.brand img {
  border-radius: 6px; /* keeps the rounded-square mark look at 28px */
}
.site-nav {
  margin-inline-start: auto;
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--link);
}
.lang-switch {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  white-space: nowrap;
}
.lang-switch:hover {
  border-color: var(--teal);
  color: var(--link);
}
.theme-switch {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  inline-size: 2.25rem;
  block-size: 2.25rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.theme-switch:hover {
  border-color: var(--teal);
  color: var(--link);
}
.theme-switch svg {
  display: block;
}
/* Hidden until the inline head script has set data-theme (i.e. JS is on) */
html:not([data-theme]) .theme-switch {
  display: none;
}
:root[data-theme="dark"] .theme-switch .icon-moon {
  display: none;
}
:root:not([data-theme="dark"]) .theme-switch .icon-sun {
  display: none;
}

/* ---- Hero ---------------------------------------------------------------- */
.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .hero .container {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.hero p.subhead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 34em;
}
.hero-shot {
  justify-self: center;
}

/* ---- Store badges -------------------------------------------------------- */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-block-start: 1.6rem;
}
.store-buttons a {
  display: inline-block;
  border-radius: 8px;
}
.store-buttons img {
  height: 3rem;
  width: auto;
}
.store-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-block-start: 0.5rem;
}

/* ---- Phone screenshots ---------------------------------------------------- */
/* <picture> only carries the AVIF/WebP sources; `display: contents` removes its
   box so the inner <img> stays the grid/flex item and every rule below (plus
   .hero-shot justify-self and .feature-card margin-inline) applies unchanged. */
picture {
  display: contents;
}
.phone-shot {
  inline-size: min(16rem, 70vw);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  background: var(--surface);
}
.phone-shot--small {
  inline-size: min(13rem, 60vw);
}

/* ---- Why card -------------------------------------------------------------- */
.why-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 50rem;
  font-size: 1.15rem;
  border-inline-start: 4px solid var(--sand);
}
.why-card p {
  margin: 0;
}

/* ---- Feature grid ------------------------------------------------------------ */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  margin-block-start: 2rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feature-card .icon {
  color: var(--teal);
  background: var(--tint);
  inline-size: 2.75rem;
  block-size: 2.75rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-block-end: 0.6rem;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
}
.feature-card .phone-shot {
  margin-block-start: 1.25rem;
  margin-inline: auto;
}

/* ---- Exams chips ---------------------------------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin-block: 1.5rem 1rem;
}
.chips li {
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
/* Some chips link to a topic hub and some do not (only /snle/ exists today).
   A linked chip must stay visually identical to its unlinked siblings so the
   row reads as one set. */
.chips a {
  color: inherit;
  text-decoration: none;
}
.chips a:hover {
  color: var(--link);
}
.chips-caption {
  color: var(--muted);
}

/* ---- How it works ------------------------------------------------------------------ */
.howitworks .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .howitworks .container {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.steps {
  list-style: none;
  counter-reset: step;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 34rem;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-inline-start: 3.4rem;
  font-size: 1.1rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: -0.15rem;
  inline-size: 2.4rem;
  block-size: 2.4rem;
  border-radius: 50%;
  background: var(--tint);
  color: var(--teal);
  border: 1px solid var(--teal);
  font-weight: 700;
  display: grid;
  place-items: center;
}
.steps li:nth-child(2)::before {
  background: color-mix(in srgb, var(--sand) 14%, transparent);
  border-color: var(--sand);
  color: var(--sand-ink);
}

/* ---- CTA ------------------------------------------------------------------------------ */
.cta {
  text-align: center;
}
.cta .store-buttons {
  justify-content: center;
}

/* ---- Prose pages (privacy / terms / support) ------------------------------------------- */
.page-header {
  padding-block: clamp(2.5rem, 6vw, 4rem) 0;
}
.page-meta {
  color: var(--muted);
  font-size: 0.95rem;
}
.prose {
  max-width: 44rem;
  padding-block: 1.5rem clamp(3rem, 8vw, 5rem);
}
.prose h2 {
  font-size: 1.35rem;
  margin-block-start: 2.2em;
}
.prose h3 {
  margin-block-start: 1.8em;
}
.prose ul {
  padding-inline-start: 1.4rem;
}
.prose li {
  margin-block-end: 0.5em;
}
.callout {
  background: var(--tint);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-block: 1.5rem;
}
.callout p {
  margin: 0;
}

/* ---- FAQ ------------------------------------------------------------------ */
.faq h3 {
  margin-block-start: 1.9em;
  margin-block-end: 0.35em;
}
.faq h3 + p {
  color: var(--muted);
}

/* ---- Blog ------------------------------------------------------------------- */
.post-list {
  display: grid;
  gap: 1.25rem;
  padding-block: 1.5rem clamp(3rem, 8vw, 5rem);
  max-width: 50rem;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.post-card h2 {
  font-size: 1.3rem;
  margin-block-end: 0.35rem;
}
.post-card h2 a {
  text-decoration: none;
  color: var(--ink);
}
.post-card h2 a:hover {
  color: var(--link);
}
.post-card .post-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-block-end: 0.6rem;
}
.post-card p {
  margin: 0;
  color: var(--muted);
}
.post-card .read-more {
  display: inline-block;
  margin-block-start: 0.9rem;
  font-weight: 600;
}
/* Breadcrumbs are not blog-specific — the /snle/ hub uses the same trail. */
.breadcrumb {
  font-size: 0.9rem;
  margin-block: 1.5rem 2rem;
}
.breadcrumb a {
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.breadcrumb li + li::before {
  content: "/";
  color: var(--muted);
  margin-inline-end: 0.5rem;
}
.breadcrumb [aria-current="page"] {
  color: var(--muted);
}
.blog-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
  border-block-end: 1px solid var(--hairline);
  padding-block-end: 1.2rem;
  margin-block-end: 1.8rem;
}
.prose blockquote {
  margin-inline: 0;
  margin-block: 1.5rem;
  padding: 1rem 1.4rem;
  background: var(--tint);
  border-inline-start: 4px solid var(--sand);
  border-radius: 8px;
  color: var(--muted);
}
.prose blockquote p {
  margin: 0;
}
.prose hr {
  border: 0;
  border-block-start: 1px solid var(--hairline);
  margin-block: 2.5rem;
}
.store-cta {
  background: var(--tint);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-block: 2rem;
  text-align: center;
}
.store-cta .store-cta-tagline {
  font-weight: 600;
  margin-block: 0 1rem;
  color: var(--ink);
}
.store-cta .store-buttons {
  justify-content: center;
  margin-block-start: 0;
}

/* ---- Footer ----------------------------------------------------------------- */
.site-footer {
  border-block-start: 1px solid var(--hairline);
  padding-block: 2.5rem 3rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-block-end: 1.5rem;
}
.site-footer .footer-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}
.site-footer .footer-nav a:hover {
  color: var(--link);
}
.disclaimer {
  max-width: 52rem;
  font-size: 0.85rem;
}
.site-footer .copyright {
  margin-block-start: 1rem;
  font-size: 0.85rem;
}

/* ---- Buttons ---------------------------------------------------------------- */
/* Introduced for the practice page; deliberately generic so other pages can use
   it without another variant appearing. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px; /* comfortable touch target */
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover:not(:disabled) {
  border-color: var(--link);
  color: var(--link);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: var(--teal-strong);
  border-color: var(--teal-strong);
  color: #fff;
}
:root[data-theme="dark"] .btn-primary,
.btn-primary:hover:not(:disabled) {
  color: #fff;
}

/* ---- Practice questions ----------------------------------------------------- */
/* The practice section must line up with the prose above and below it. .prose
   is itself a .container, so it is 44rem INCLUDING the container's inline
   padding. Matching that on the wrapper — rather than sizing the inner
   .practice — makes the card edges land on the same vertical lines as the
   paragraph text, instead of 2.5rem wider and hugging the left. */
.practice-wrap {
  max-width: 44rem;
  padding-block: 0.5rem;
}
.practice {
  max-width: none;
  margin-inline: 0;
}
.practice-start-wrap {
  margin-block: 1.5rem;
}
.trust-bar {
  margin-block: 1.25rem 2rem;
}

/* Progress */
.practice-progress {
  margin-block-end: 1.5rem;
}
.practice-progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--tint);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.practice-progress-fill {
  height: 100%;
  background: var(--teal);
  transition: width 180ms ease-out;
}
.practice-progress-text {
  margin-block: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Question card */
.practice-q {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-block-end: 1.5rem;
}
.practice-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-inline-size: 0; /* fieldset defaults would prevent shrinking on mobile */
}
.practice-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 0;
  margin-block-end: 0.9rem;
  width: 100%;
}
.practice-legend:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 4px;
}
.practice-counter {
  font-weight: 700;
  font-size: 0.95rem;
}
.practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.practice-tag {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
}
.practice-stem {
  font-size: 1.05rem;
  margin-block: 0 1.2rem;
}

/* Options */
.practice-options {
  display: grid;
  gap: 0.6rem;
}
.practice-option {
  position: relative;
}
.practice-option input {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 1rem;
  translate: 0 -50%;
  margin: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
}
.practice-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 48px; /* touch target */
  padding: 0.8rem 1rem 0.8rem 3rem;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
}
.practice-option label:hover {
  border-color: var(--link);
}
.practice-option input:focus-visible + label {
  outline: 2px solid var(--link);
  outline-offset: 2px;
}
.practice-option input:disabled + label {
  cursor: default;
}
.practice-option-letter {
  font-weight: 700;
  color: var(--muted);
}
.practice-option-text {
  flex: 1;
}
.practice-option-mark {
  font-weight: 700;
}
/* State is also announced as text via data-state and the verdict line. */
.practice-option.is-correct label {
  border-color: var(--ok);
  background: var(--ok-tint);
}
.practice-option.is-correct .practice-option-mark {
  color: var(--ok);
}
.practice-option.is-incorrect label {
  border-color: var(--bad);
  background: var(--bad-tint);
}
.practice-option.is-incorrect .practice-option-mark {
  color: var(--bad);
}
.practice-option[data-state] label::after {
  content: attr(data-state);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  align-self: center;
  white-space: nowrap;
}

/* Actions */
.practice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1.2rem 0;
}

/* Answer panel */
.practice-answer {
  margin-block-start: 1.2rem;
  border-block-start: 1px solid var(--hairline);
  padding-block-start: 1rem;
}
.practice-answer > summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--link);
}
.practice-answer-body > * {
  margin-block: 0.75rem 0;
}
.practice-verdict {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 700;
}
.practice-verdict.is-correct {
  color: var(--ok);
}
.practice-verdict.is-incorrect {
  color: var(--bad);
}
.practice-explanation {
  color: var(--ink);
}
.practice-reference {
  font-size: 0.9rem;
  color: var(--muted);
}
.practice-reference-label {
  font-weight: 700;
}

/* Mid-session CTA — inline, never a modal, never blocking. */
.practice-mid-cta {
  background: var(--tint);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-block-end: 1.5rem;
}
.practice-mid-cta-title {
  font-weight: 700;
  margin-block: 0 0.35rem;
}
.practice-mid-cta p {
  margin-block: 0 0.75rem;
}
.practice-mid-cta .store-buttons {
  margin-block-start: 0.5rem;
}

/* Result */
.practice-result {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.practice-result:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 4px;
}
.practice-result h2 {
  margin-block-start: 0;
}
.practice-score {
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 700;
  margin-block: 0.25rem;
}
.practice-review-wrap {
  margin-block-end: 0;
}

@media (min-width: 720px) {
  .practice-q {
    padding: 1.75rem 2rem;
  }
}
