@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,600;0,700;1,400&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ============================================================
   PETRA ROSE — Rose-red sandstone strata, desert tan ground,
   basalt accents. Crimson Pro (Latin headings) + IBM Plex Sans
   Arabic (body, Arabic-native). Light, high-contrast, RTL-ready.
   ============================================================ */

:root {
  /* Petra Rose palette */
  --ink: #1c1410;            /* deep basalt-brown ink */
  --ink-soft: #7a6152;       /* warm sandstone-shadow muted */
  --line: #d9c4b0;           /* desert tan hairline */
  --bg: #fdf6f0;             /* bleached limestone page */
  --bg-soft: #f5ede3;        /* warm sandstone panel */
  --accent: #b5352a;         /* Petra rose-red */
  --accent-soft: #fae8e5;    /* blush wash */

  /* Score colours — vivid, legible on warm light bg */
  --good: #2d7a45;           /* oasis green */
  --good-bg: #e6f4eb;
  --mid: #b06d10;            /* amber-ochre */
  --mid-bg: #fdf0d5;
  --bad: #b5352a;            /* rose-red (matches accent) */
  --bad-bg: #fae8e5;

  --unknown: #9e8878;
  --max-width: 76rem;

  --serif-head: "Crimson Pro", Georgia, "Times New Roman", serif;
  --serif-body: "IBM Plex Sans Arabic", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  /* Decorative gradients */
  --strata-grad: linear-gradient(135deg, #c94030 0%, #b5352a 40%, #8c2318 100%);
  --strata-divider: repeating-linear-gradient(
    180deg,
    rgba(181,53,42,0.18) 0px, rgba(181,53,42,0.18) 2px,
    rgba(217,196,176,0.22) 2px, rgba(217,196,176,0.22) 5px,
    rgba(181,53,42,0.08) 5px, rgba(181,53,42,0.08) 7px,
    transparent 7px, transparent 14px
  );
  --hairline-rose: linear-gradient(90deg, transparent, rgba(181,53,42,0.45), transparent);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(181,53,42,0.06), transparent 60%),
    radial-gradient(800px 400px at -6% 5%, rgba(181,53,42,0.04), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  letter-spacing: 0.01em;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
main.container { padding-top: 2rem; padding-bottom: 4rem; }

a { color: var(--accent); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: #8c2318; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--serif-head);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.4rem; line-height: 1.1; margin: 0.6rem 0 0.9rem; letter-spacing: -0.02em; }
h2 {
  font-size: 1.35rem; margin: 2.4rem 0 0.6rem; font-weight: 600;
  letter-spacing: 0.01em;
  /* Carved-arch section heading: subtle bottom arc via border-radius on pseudo */
  position: relative;
}
h2::before {
  content: ""; display: inline-block; width: 1.8rem; height: 3px;
  background: var(--strata-grad); vertical-align: middle;
  margin-right: 0.7rem; margin-bottom: 0.28em;
  border-radius: 0 0 4px 4px; /* gentle arch underside */
}
/* Sandstone-strata layered divider below each h2 */
h2::after {
  content: ""; display: block; height: 7px; margin-top: 0.55rem;
  background: var(--strata-divider);
  border-radius: 2px;
  opacity: 0.7;
}
h3 { font-size: 1.1rem; margin: 1.4rem 0 0.45rem; font-weight: 600; letter-spacing: 0.01em; }
p { margin: 0.5rem 0 1rem; }
.lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 52rem; font-weight: 300; letter-spacing: 0.01em; font-family: var(--serif-head); font-style: italic; }
.muted { color: var(--ink-soft); font-size: 0.9rem; }
.nowrap { white-space: nowrap; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 2px solid var(--line);
  background: linear-gradient(180deg, rgba(253,246,240,0.97), rgba(245,237,227,0.97));
  backdrop-filter: blur(6px);
  position: relative;
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--hairline-rose);
}
.site-header .container { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 2.5rem; padding-top: 1.15rem; padding-bottom: 1rem; }
.brand { color: var(--ink); display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif-head); font-weight: 700; font-size: 1.36rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--strata-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--accent);
}
.brand-tagline { font-size: 0.74rem; color: var(--ink-soft); letter-spacing: 0.14em; text-transform: uppercase; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1.4rem; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.site-nav a { color: var(--ink-soft); padding: 0.2rem 0; border-bottom: 1px solid transparent; }
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }
.lang-switcher { margin-left: auto; font-size: 0.8rem; white-space: nowrap; letter-spacing: 0.06em; }
.lang-switcher a { color: var(--ink-soft); }
.lang-switcher a:hover { color: var(--accent); }
.lang-current { font-weight: 700; color: var(--accent); }
.lang-sep { color: var(--line); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 0.5rem; }
.hero h1 { max-width: 48rem; }
.hero h1::after {
  content: ""; display: block; width: 5rem; height: 3px; margin-top: 1rem;
  background: var(--strata-grad); border-radius: 0 0 3px 3px;
}
/* Tan bg tint behind hero area */
.hero::before {
  content: ""; position: absolute; inset: -1rem -9999px; z-index: -1;
  background: linear-gradient(180deg, rgba(245,237,227,0.7), transparent 90%);
  pointer-events: none;
}
.hero-links { font-size: 0.95rem; letter-spacing: 0.02em; }

/* ---------- Profile controls ---------- */
.ranking-controls { margin: 2rem 0 1rem; }
.profile-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.profile-btn {
  font: inherit; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line); border-radius: 3px;
  background: var(--bg-soft); color: var(--ink-soft);
  cursor: pointer; transition: all 0.18s ease;
}
.profile-btn:hover { border-color: var(--accent); color: var(--accent); }
.profile-btn[aria-pressed="true"] {
  background: var(--strata-grad); border-color: transparent; color: #fdf6f0; font-weight: 700;
}
.profile-desc { min-height: 1.4em; margin: 0.7rem 0 0; font-size: 0.9rem; color: var(--ink-soft); }
.table-filter { margin-top: 0.9rem; }
.table-filter input {
  font: inherit; font-size: 0.92rem; width: 100%; max-width: 20rem;
  padding: 0.55rem 0.8rem; border: 1px solid var(--line); border-radius: 3px;
  background: var(--bg); color: var(--ink);
}
.table-filter input::placeholder { color: var(--unknown); }
.table-filter input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px rgba(181,53,42,0.18); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--bg); }
table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
th, td { text-align: left; padding: 0.65rem 0.8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th {
  font-family: var(--serif-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); border-bottom: 2px solid var(--accent); font-weight: 600;
  background: rgba(181,53,42,0.05);
}
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }

.ranking-table tbody tr { transition: background 0.15s ease; }
.ranking-table tbody tr:hover { background: rgba(181,53,42,0.05); }
.rank-cell { font-variant-numeric: tabular-nums; color: var(--accent); width: 2.4rem; font-family: var(--serif-head); font-weight: 700; }
.name-cell a { font-weight: 600; color: var(--ink); }
.name-cell a:hover { color: var(--accent); text-decoration: none; }
.score-cell { white-space: nowrap; }
.th-sub { font-size: 0.7em; color: var(--ink-soft); margin-left: 0.15em; text-transform: none; letter-spacing: 0; }
.cat-cell { white-space: nowrap; font-variant-numeric: tabular-nums; }
.cat-max { color: var(--ink-soft); font-size: 0.8em; }
.flags-cell .flag-count { color: var(--bad); font-weight: 700; }
.flags-cell .flag-none { color: var(--ink-soft); }
.table-note { margin-top: 0.9rem; max-width: 52rem; }

.excluded-note { margin-top: 1.2rem; font-size: 0.92rem; }
.excluded-note summary { cursor: pointer; color: var(--accent); letter-spacing: 0.02em; }

/* ---------- Score badges ---------- */
.score-badge {
  display: inline-block; min-width: 2.6em; text-align: center;
  padding: 0.16em 0.5em; border-radius: 3px;
  font-weight: 700; font-variant-numeric: tabular-nums;
  font-family: var(--serif-body); letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.score-high { background: var(--good-bg); color: var(--good); border-color: rgba(45,122,69,0.28); }
.score-mid  { background: var(--mid-bg);  color: var(--mid);  border-color: rgba(176,109,16,0.28); }
.score-low  { background: var(--bad-bg);  color: var(--bad);  border-color: rgba(181,53,42,0.28); }
.score-na   { background: var(--bg-soft); color: var(--unknown); border-color: var(--line); }

/* ---------- Bars ---------- */
.bar { background: var(--line); border: 1px solid rgba(181,53,42,0.15); border-radius: 3px; height: 0.55rem; overflow: hidden; min-width: 6rem; flex: 1; }
.bar-fill { background: var(--strata-grad); height: 100%; box-shadow: 0 0 6px rgba(181,53,42,0.25); }

/* ---------- Cards ---------- */
.cards-section { margin-top: 2.8rem; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr)); gap: 1.1rem; }
.clinic-card {
  border: 1px solid var(--line); border-radius: 4px; padding: 1.2rem 1.25rem;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  position: relative; transition: border-color 0.2s ease, transform 0.2s ease;
}
.clinic-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--strata-grad); opacity: 0.75; border-radius: 4px 4px 0 0;
}
.clinic-card:hover { border-color: rgba(181,53,42,0.45); transform: translateY(-2px); }
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.card-head h3 { margin: 0; font-size: 1.04rem; }
.card-head a { color: var(--ink); }
.card-head a:hover { color: var(--accent); text-decoration: none; }
.card-summary { font-size: 0.88rem; color: var(--ink-soft); }
.card-bars { display: flex; flex-direction: column; gap: 0.35rem; margin: 0.7rem 0; }
.card-bar-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; }
.card-bar-label { flex: 0 0 9.5rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.card-bar-pts { flex: 0 0 3.2rem; text-align: right; font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.card-meta { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Clinic page ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; }
.clinic-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
.clinic-headline { font-size: 1.04rem; max-width: 46rem; color: var(--ink-soft); font-weight: 300; }
.clinic-score-big { font-size: 2.1rem; display: flex; align-items: baseline; gap: 0.25rem; font-family: var(--serif-head); }
.clinic-score-big .score-badge { padding: 0.15em 0.55em; }
.score-of { color: var(--ink-soft); font-size: 1rem; }

.chip-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: baseline; gap: 0.5em;
  border: 1px solid var(--line); border-radius: 3px; padding: 0.35rem 0.8rem; font-size: 0.83rem;
  background: var(--bg-soft); letter-spacing: 0.02em;
}
.chip-ranked { background: var(--accent-soft); border-color: rgba(181,53,42,0.3); }
.chip-rank { font-weight: 700; color: var(--accent); font-family: var(--serif-head); }
.chip-excluded { color: var(--ink-soft); }
.chip-excluded .chip-rank { color: var(--unknown); font-weight: 400; }
.chip-score { color: var(--ink-soft); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
@media (max-width: 44rem) { .two-col { grid-template-columns: 1fr; } }
.plus-list li::marker { color: var(--good); }
.minus-list li::marker { color: var(--bad); }

.cat-section { margin-top: 1.8rem; }
.cat-section-head { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 0.4rem; }
.cat-section-head h3 { margin: 0; }
.cat-section-score { display: flex; align-items: center; gap: 0.6rem; min-width: 14rem; font-variant-numeric: tabular-nums; font-size: 0.9rem; }
.crit-table { font-size: 0.9rem; }
.crit-table td { padding: 0.4rem 0.55rem; }
.crit-status { width: 1.6rem; }
.crit-pts { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--ink-soft); width: 4rem; }
.crit-note { color: var(--ink-soft); font-size: 0.85em; }
.crit-unknown .crit-label { color: var(--unknown); }

.status { font-weight: 700; letter-spacing: 0.03em; }
.st-earned { color: var(--good); }
.st-partial { color: var(--mid); }
.st-missed { color: var(--bad); }
.st-unknown { color: var(--unknown); }

.flag-list { list-style: none; padding: 0; }
.flag {
  padding: 0.6rem 0.85rem; border-left: 3px solid var(--bad); background: var(--bad-bg);
  border-radius: 0 3px 3px 0; margin-bottom: 0.55rem; font-size: 0.92rem;
}
.flag-low { border-left-color: var(--mid); background: var(--mid-bg); }
.flag-sev { text-transform: uppercase; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; margin-right: 0.35rem; }

.unknown-list { columns: 2; column-gap: 2.5rem; font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 44rem) { .unknown-list { columns: 1; } }

.kv-table th { width: 9rem; font-weight: 600; color: var(--ink-soft); }
.src-id { font-variant-numeric: tabular-nums; color: var(--ink-soft); width: 3rem; }
.src-ref { font-size: 0.82em; color: var(--accent); }
.src-manual { color: var(--ink-soft); font-style: italic; }
.sources-table td { word-break: break-word; }
:target { background: rgba(181,53,42,0.08); transition: background 0.6s; }

.report-cta {
  margin-top: 2.8rem; border: 1px solid var(--line); border-radius: 4px;
  padding: 1.3rem 1.5rem;
  background: linear-gradient(135deg, rgba(181,53,42,0.06), var(--bg-soft));
  position: relative;
}
.report-cta::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--strata-grad); border-radius: 4px 0 0 4px;
}

/* ---------- Buttons & forms ---------- */
.btn {
  display: inline-block; background: var(--strata-grad); color: #fdf6f0;
  border: none; border-radius: 3px; padding: 0.6rem 1.4rem;
  font: inherit; font-size: 0.82rem; font-weight: 700; text-decoration: none; cursor: pointer;
  letter-spacing: 0.08em; text-transform: uppercase; transition: filter 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { filter: brightness(1.1); box-shadow: 0 4px 18px rgba(181,53,42,0.28); text-decoration: none; color: #fdf6f0; }
.btn-secondary { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-secondary:hover { background: rgba(181,53,42,0.08); color: #8c2318; box-shadow: none; }
.report-form { max-width: 36rem; }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.form-row .check-label { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink); }
.form-row input[type="url"], .form-row input[type="email"], .form-row select, .form-row textarea {
  width: 100%; font: inherit; font-size: 0.95rem;
  padding: 0.55rem 0.75rem; border: 1px solid var(--line); border-radius: 3px; background: var(--bg); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px rgba(181,53,42,0.18);
}

/* ---------- Methodology ---------- */
.formula {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 3px;
  padding: 0.85rem 1.1rem; font-size: 0.9rem; overflow-x: auto;
  border-left: 3px solid var(--accent);
}
.method-table td, .method-table th { font-size: 0.9rem; }
.profile-matrix td, .profile-matrix th { white-space: nowrap; }
.profile-matrix td:last-child, .profile-matrix th:last-child { white-space: normal; min-width: 14rem; }

/* ---------- Home audit block ---------- */
.home-audit { margin-top: 2.8rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }

/* ---------- Data banner ---------- */
.data-banner {
  background: var(--accent-soft); border: 1px solid rgba(181,53,42,0.28);
  border-radius: 3px; padding: 0.7rem 1rem; font-size: 0.9rem; color: var(--ink);
  border-left: 3px solid var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 2px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft), #ede4d8);
  margin-top: 3rem; font-size: 0.85rem; color: var(--ink-soft);
  position: relative;
}
.site-footer::before { content: ""; position: absolute; top: -2px; left: 0; right: 0; height: 2px; background: var(--hairline-rose); }
.site-footer .container { padding-top: 1.5rem; padding-bottom: 1.8rem; }
.site-footer p { max-width: 60rem; }
.site-footer a { color: var(--accent); }

/* ---------- Licensing & Credentials ---------- */
#licensing .lic-missing { color: var(--bad); }
.doctors-table { margin-top: 0.6rem; font-size: 0.92rem; }
.doctors-table th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-family: var(--serif-body); }
.doctors-table td .lic-missing { color: var(--bad); font-size: 0.9em; }

/* ---------- Feedback form (unified) ---------- */
.req { color: var(--bad); }
.contact-fieldset { border: 1px solid var(--line); border-radius: 3px; padding: 0.6rem 1.1rem 1.1rem; margin: 1.4rem 0; background: var(--bg-soft); }
.contact-fieldset legend { font-family: var(--serif-body); font-weight: 600; padding: 0 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); font-size: 0.85rem; }
.contacts-hint { margin: 0.35rem 0 0.85rem; color: var(--ink-soft); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-error { color: var(--bad); font-size: 0.9rem; margin-top: 0.4rem; }
.form-status { min-height: 1.2em; font-size: 0.95rem; margin-top: 0.5rem; }
.form-ok { color: var(--good); font-weight: 600; }
.form-err { color: var(--bad); }
.cf-turnstile { margin: 1rem 0; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.2rem; }
  .container { padding: 0 1rem; }
  .site-header .container { gap: 0.4rem 1.2rem; }
  .clinic-score-big { font-size: 1.7rem; }
  .brand-name { font-size: 1.15rem; letter-spacing: 0.06em; }
}

/* ---------- Print ---------- */
@media print {
  body { background: #fff; color: #111; }
  .site-header, .site-footer, .profile-buttons, .table-filter, .report-cta, .report-form { display: none; }
  .brand-name { -webkit-text-fill-color: #000; color: #000; }
  a { color: #000; }
  .clinic-card, .table-wrap, .contact-fieldset { border-color: #ccc; background: #fff; }
  .score-badge { border-color: #999; }
  .bar-fill { background: #888; box-shadow: none; }
}

/* RTL (Arabic) */
[dir="rtl"] body { direction: rtl; }
[dir="rtl"] .site-nav, [dir="rtl"] .lang-switcher { margin-left: 0; margin-right: auto; }
[dir="rtl"] th, [dir="rtl"] td { text-align: right; }
[dir="rtl"] .num, [dir="rtl"] td.num, [dir="rtl"] th.num { text-align: left; }
[dir="rtl"] .bar-fill { direction: ltr; }
[dir="rtl"] ul, [dir="rtl"] ol { padding-right: 1.2em; padding-left: 0; }
/* Mirror strata / flag decorative borders for RTL */
[dir="rtl"] h2::before { margin-right: 0; margin-left: 0.7rem; }
[dir="rtl"] .flag { border-left: none; border-right: 3px solid var(--bad); border-radius: 3px 0 0 3px; }
[dir="rtl"] .flag-low { border-right-color: var(--mid); }
[dir="rtl"] .report-cta::before { left: auto; right: 0; border-radius: 0 4px 4px 0; }
[dir="rtl"] .formula { border-left: none; border-right: 3px solid var(--accent); }
[dir="rtl"] .data-banner { border-left: none; border-right: 3px solid var(--accent); }

/* UserSignals contextual CTA (affiliated AI-visibility service). Palette-neutral
   so it reads on every site design; the button inherits each site's .btn accent. */
.us-cta { margin: 1.1rem 0 0; padding: 1rem 1.25rem; border: 1px solid rgba(127,127,127,0.28); border-left: 3px solid; border-radius: 10px; background: rgba(127,127,127,0.06); }
.us-cta h4 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.us-cta > p { margin: 0 0 0.75rem; }
.us-cta .btn { margin: 0.15rem 0; }
.us-cta .us-disclosure { font-size: 0.8rem; opacity: 0.7; margin: 0.65rem 0 0; }
.us-cta-lg { margin: 1.5rem 0; padding: 1.4rem 1.6rem; }
.us-cta-lg h2 { margin-top: 0; }
