/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sd-blue: #2d74b6;
  --sd-blue-dark: #2d74b6;
  --sd-gold: #f8ba2b;
  --sd-gold-dark: #f8ba2b;
  --sd-text: #111111;
  --sd-text-muted: #666666;
  --sd-light: #f2f2f2;
  --sd-white: #ffffff;
  --sd-border: #d9e5f2;
  --sd-light-gray: #f2f2f2;
  --sd-shadow: 0 16px 40px rgba(45, 116, 182, 0.1);
  --sd-page-bg: #f2f2f2;

  --black: var(--sd-blue);
  --navy: var(--sd-blue);
  --navy2: var(--sd-blue-dark);
  --navy3: var(--sd-blue);
  --charcoal: #285f9e;
  --warm-white: #f7f9fb;
  --off: var(--sd-light);
  --offwhite: var(--sd-light);
  --body: var(--sd-text);
  --muted: var(--sd-text-muted);
  --text-body: var(--sd-text);
  --text-muted: var(--sd-text-muted);
  --focus: var(--sd-gold);
}

html,
body {
  width: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--sd-text);
  line-height: 1.6;
  background: var(--sd-page-bg);
}

/* -------------------------
   BASE LOCATION PAGE STYLES
   Used by pages that do not define extensive inline styling
-------------------------- */
.hero {
  background: linear-gradient(135deg, var(--sd-blue) 0%, #1e63a2 100%);
  color: var(--sd-white);
  padding: clamp(3.2rem, 8vw, 5rem) 1.25rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: rgba(248, 186, 43, 0.17);
  color: var(--sd-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 0.8rem;
  max-width: 20ch;
  color: var(--sd-white);
  font-size: clamp(1.95rem, 5.1vw, 3rem);
  line-height: 1.14;
}

.hero h1 em,
.hero h1 .hero-accent {
  color: var(--sd-gold);
  font-style: normal;
  display: inline;
}

.hero-sub {
  margin: 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.btn-gold,
.btn-outline,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-size: 0.93rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-gold {
  background: var(--sd-gold);
  color: #122f52;
  border: 1px solid var(--sd-gold);
}

.btn-gold:hover,
.btn-outline:hover,
.btn-dark:hover {
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--sd-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: var(--sd-white);
  border: 1px solid transparent;
  background: var(--sd-blue);
  font-weight: 700;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--sd-blue-dark);
}

.section {
  padding: clamp(2.5rem, 8vw, 3.8rem) 1.25rem;
  border: 1px solid rgba(248, 186, 43, 0.35);
  border-radius: 12px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-alt {
  background: var(--sd-white);
  border-color: rgba(248, 186, 43, 0.45);
}

/* FAQ block shared styling for all city pages */
.faq-list {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--sd-white);
  border: 1px solid var(--sd-border);
  border-left: 4px solid var(--sd-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(45, 116, 182, 0.08);
}

.faq-question,
.faq-q {
  width: 100%;
  border: 0;
  margin: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1rem 1rem 0.95rem;
  text-align: left;
  color: var(--sd-blue-dark);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.faq-question span,
.faq-q span {
  color: inherit;
  text-wrap: pretty;
  line-height: 1.4;
}

.faq-question .faq-icon,
.faq-q .faq-chevron {
  width: 19px;
  height: 19px;
  color: var(--sd-blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded='true'],
.faq-q[aria-expanded='true'],
.faq-question:hover,
.faq-q:hover {
  color: var(--sd-blue-dark);
}

.faq-question[aria-expanded='true'] .faq-icon,
.faq-q[aria-expanded='true'] .faq-chevron,
.faq-question:hover .faq-icon,
.faq-q:hover .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer,
.faq-a {
  padding: 0 1rem 1rem 0.95rem;
  border-top: 1px solid rgba(45, 116, 182, 0.13);
}

.faq-answer p,
.faq-a p {
  margin: 0.85rem 0 0;
  color: var(--sd-text-muted);
  line-height: 1.72;
}

.section-label {
  margin-bottom: 0.58rem;
  color: var(--sd-blue-dark);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

body.sd-location-page .section-label[style*='color:var(--gold)'],
body.sd-location-page .section-label[style*='color:var(--sd-gold)'] {
  color: var(--sd-white) !important;
}

/* Keep FAQ readable on dark sections and prevent blue-on-blue text collisions */
body.sd-location-page .section.dark,
body.sd-location-page .section[style*='background: var(--black)'],
body.sd-location-page .section[style*='background:var(--black)'],
body.sd-location-page .section[style*='background: var(--navy)'],
body.sd-location-page .section[style*='background:var(--navy)'],
body.sd-location-page .section[style*='background: var(--charcoal)'],
body.sd-location-page .section[style*='background:var(--charcoal)'],
body.sd-location-page .cta-section[style*='background: var(--sd-blue)'],
body.sd-location-page .cta-section[style*='background:var(--sd-blue)'],
body.sd-location-page .cta-section[style*='background: var(--navy)'],
body.sd-location-page .cta-section[style*='background:var(--navy)'],
body.sd-location-page .section.dark .faq-item,
body.sd-location-page .section.dark .faq-question,
body.sd-location-page .section.dark .faq-q,
body.sd-location-page .section.dark .faq-answer,
body.sd-location-page .section.dark .faq-a,
body.sd-location-page .section[style*='background: var(--black)'] *,
body.sd-location-page .section[style*='background:var(--black)'] *,
body.sd-location-page .section[style*='background: var(--navy)'] *,
body.sd-location-page .section[style*='background:var(--navy)'] *,
body.sd-location-page .section[style*='background: var(--charcoal)'] *,
body.sd-location-page .section[style*='background:var(--charcoal)'] * {
  color: var(--sd-white) !important;
}

body.sd-location-page .section.dark .cta-section .btn-dark,
body.sd-location-page .section.dark .cta-section .btn-gold,
body.sd-location-page .cta-section .btn-white,
body.sd-location-page .cta-section [style*='color: var(--black)'] {
  color: var(--sd-white) !important;
}

body.sd-location-page .section.dark .faq-question,
body.sd-location-page .section.dark .faq-q,
body.sd-location-page .section.dark .faq-item,
body.sd-location-page .section[style*='background: var(--black)'] .faq-question,
body.sd-location-page .section[style*='background:var(--black)'] .faq-question,
body.sd-location-page .section[style*='background: var(--navy)'] .faq-question,
body.sd-location-page .section[style*='background:var(--navy)'] .faq-question,
body.sd-location-page .section[style*='background: var(--charcoal)'] .faq-question,
body.sd-location-page .section[style*='background:var(--charcoal)'] .faq-question,
body.sd-location-page .section.dark .faq-q,
body.sd-location-page .section[style*='background: var(--black)'] .faq-q,
body.sd-location-page .section[style*='background:var(--black)'] .faq-q,
body.sd-location-page .section[style*='background: var(--navy)'] .faq-q,
body.sd-location-page .section[style*='background:var(--navy)'] .faq-q,
body.sd-location-page .section[style*='background: var(--charcoal)'] .faq-q,
body.sd-location-page .section[style*='background:var(--charcoal)'] .faq-q {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Ensure FAQ copy remains readable when section backgrounds use local theme variables */
body.sd-location-page .faq-list .faq-question,
body.sd-location-page .faq-list .faq-q {
  color: var(--sd-text) !important;
  padding: 1rem 1.15rem 1rem 1.05rem !important;
  gap: 0.95rem;
}

body.sd-location-page .faq-list .faq-question span,
body.sd-location-page .faq-list .faq-q span {
  padding-right: 0.2rem;
}

body.sd-location-page .faq-list .faq-answer,
body.sd-location-page .faq-list .faq-a {
  padding: 0 1.15rem 1rem 1.05rem !important;
}

body.sd-location-page .faq-list .faq-question:hover,
body.sd-location-page .faq-list .faq-question:focus-visible,
body.sd-location-page .faq-list .faq-q:hover,
body.sd-location-page .faq-list .faq-q:focus-visible {
  color: var(--sd-blue-dark) !important;
}

body.sd-location-page .faq-list .faq-question[aria-expanded='true'],
body.sd-location-page .faq-list .faq-q[aria-expanded='true'],
body.sd-location-page .faq-list .faq-question[aria-expanded='true'] .faq-icon,
body.sd-location-page .faq-list .faq-q[aria-expanded='true'] .faq-chevron {
  color: var(--sd-blue) !important;
}

body.sd-location-page .faq-list .faq-item {
  background: var(--sd-white);
  border: 1px solid rgba(248, 186, 43, 0.4) !important;
  border-left: 4px solid var(--sd-gold) !important;
  box-shadow: 0 8px 22px rgba(45, 116, 182, 0.08);
}

body.sd-location-page .faq-list .faq-item + .faq-item {
  margin-top: 0.15rem;
}

body.sd-location-page .faq-list .faq-answer p,
body.sd-location-page .faq-list .faq-a p {
  color: var(--sd-text) !important;
  margin: 0.85rem 0 0 !important;
  line-height: 1.72;
}

body.sd-location-page .section[style*='background: var(--black)'] .faq-list .faq-question,
body.sd-location-page .section[style*='background:var(--black)'] .faq-list .faq-question,
body.sd-location-page .section[style*='background: var(--navy)'] .faq-list .faq-question,
body.sd-location-page .section[style*='background:var(--navy)'] .faq-list .faq-question,
body.sd-location-page .section[style*='background: var(--charcoal)'] .faq-list .faq-question,
body.sd-location-page .section[style*='background:var(--charcoal)'] .faq-list .faq-question,
body.sd-location-page .section[style*='background: var(--black)'] .faq-list .faq-q,
body.sd-location-page .section[style*='background:var(--black)'] .faq-list .faq-q,
body.sd-location-page .section[style*='background: var(--navy)'] .faq-list .faq-q,
body.sd-location-page .section[style*='background:var(--navy)'] .faq-list .faq-q,
body.sd-location-page .section[style*='background: var(--charcoal)'] .faq-list .faq-q,
body.sd-location-page .section[style*='background:var(--charcoal)'] .faq-list .faq-q {
  color: var(--sd-text) !important;
}

.section h2,
.section h3 {
  color: var(--sd-blue-dark);
}

.section-alt p,
.section p {
  color: var(--sd-text-muted);
}

.section.dark,
.dark {
  background: var(--sd-blue-dark);
  color: var(--sd-white);
}

body.sd-location-page .section[aria-labelledby^='nearby-areas-'] {
  background: var(--sd-white) !important;
  color: var(--sd-text) !important;
}

body.sd-location-page .section[aria-labelledby^='nearby-areas-'] .section-label,
body.sd-location-page .section[aria-labelledby^='nearby-areas-'] h3,
body.sd-location-page .section[aria-labelledby^='nearby-areas-'] .nearby-links a {
  color: var(--sd-blue-dark) !important;
}

body.sd-location-page .section[aria-labelledby^='nearby-areas-'] .nearby-links li {
  background: var(--sd-white);
}

.section.dark p,
.section.dark h2,
.section.dark h3,
.section.dark a,
.section.dark .section-label {
  color: var(--sd-white);
}

body.sd-location-page .trust-bar {
  background: var(--sd-blue-dark);
  color: var(--sd-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

body.sd-location-page .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.88rem;
  color: var(--sd-white);
  font-weight: 600;
}

body.sd-location-page .trust-item svg {
  color: var(--sd-gold);
}

body.sd-location-page .section.dark .section-label[style*='color:var(--gold)'],
body.sd-location-page .section.dark .section-label[style*='color:var(--sd-gold)'] {
  color: var(--sd-white) !important;
}

.services-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  background: var(--sd-white);
  border: 1px solid rgba(248, 186, 43, 0.65);
  border-left: 4px solid var(--sd-gold);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
  transition: border-color 0.25s ease, border-left-color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

body.sd-location-page .services-grid .service-card,
body.sd-location-page .section .services-grid .service-card {
  border: 1px solid rgba(248, 186, 43, 0.65) !important;
  border-left: 4px solid var(--sd-gold) !important;
  background: var(--sd-white) !important;
}

body.sd-location-page .services-grid .service-card h3,
body.sd-location-page .section .services-grid .service-card h3 {
  color: var(--sd-blue-dark) !important;
}

body.sd-location-page .services-grid .service-card p,
body.sd-location-page .section .services-grid .service-card p {
  color: var(--sd-text-muted) !important;
}

body.sd-location-page .services-grid .service-card .service-icon,
body.sd-location-page .section .services-grid .service-card .service-icon {
  color: var(--sd-gold);
}

body.sd-location-page .services-grid .service-card:hover,
body.sd-location-page .services-grid .service-card:focus-within,
body.sd-location-page .section .services-grid .service-card:hover,
body.sd-location-page .section .services-grid .service-card:focus-within {
  border-color: var(--sd-blue-dark) !important;
  border-left-color: var(--sd-blue-dark) !important;
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--sd-blue-dark);
  border-left-color: var(--sd-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(45, 116, 182, 0.16);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 116, 182, 0.12);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.06rem;
}

.service-card p {
  margin: 0;
  color: var(--sd-text);
}

body.sd-location-page .section-alt .service-card p,
body.sd-location-page .section-alt .service-card p[style*='color:rgba(255,255,255'] {
  color: var(--sd-white) !important;
}

body.sd-location-page [style*='color:rgba(255,255,255'] {
  color: var(--sd-white) !important;
}

body.sd-location-page .deployment-box p,
body.sd-location-page .deployment-box ul li,
body.sd-location-page .intro-bold,
body.sd-location-page .base-name,
body.sd-location-page .base-hoods,
body.sd-location-page .partner-desc,
body.sd-location-page .partner-list li,
body.sd-location-page .cta-section p,
body.sd-location-page .cta-info,
body.sd-location-page .cta-contact-info,
body.sd-location-page .cta-contact-info a,
body.sd-location-page .cta-info a,
body.sd-location-page .nearby-tag,
body.sd-location-page .intro-callout p,
body.sd-location-page .neighborhoods,
body.sd-location-page .hero-sub {
  color: var(--sd-white) !important;
}

.service-icon svg,
.sd-inline-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--sd-blue-dark);
}

.partner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  width: 1.35em;
  height: 1.35em;
  border-radius: 999px;
  color: var(--sd-gold);
  font-size: 1.28rem;
}

.partner-icon:empty::before {
  content: '\2022';
  width: 1em;
  height: 1em;
  color: inherit;
}

.cta-section {
  text-align: center;
  background: var(--sd-blue);
  color: var(--sd-white);
  padding: clamp(2.3rem, 7vw, 3rem) 1.25rem 2.6rem;
  border: 1px solid rgba(248, 186, 43, 0.42);
  border-radius: 14px;
}

.cta-section h2,
.cta-section p {
  color: var(--sd-white);
}

.cta-contact-info a {
  color: var(--sd-gold);
  font-weight: 700;
}

.cta-contact-info a:hover,
.cta-contact-info a:focus-visible {
  text-decoration: underline;
}

/* =========================
   LIGHTWEIGHT LOCATION PAGES (fixed layout pass)
========================= */
main.sd-location-lite {
  display: block;
}

main.sd-location-lite .hero,
main.sd-location-lite .section,
main.sd-location-lite .cta-section,
main.sd-location-lite .partner-block,
main.sd-location-lite .deployment-box,
main.sd-location-lite .base-card,
main.sd-location-lite .faq-item,
main.sd-location-lite .trust-bar,
main.sd-location-lite .partner-card,
main.sd-location-lite .sd-image-section-inner {
  border-color: rgba(248, 186, 43, 0.42);
}

main.sd-location-lite .faq-item {
  border-left: 3px solid rgba(248, 186, 43, 0.5);
}

main.sd-location-lite .hero {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

main.sd-location-lite .hero h1 {
  font-size: clamp(2rem, 4.8vw, 2.75rem);
}

main.sd-location-lite .hero-sub {
  max-width: 54ch;
  line-height: 1.72;
}

main.sd-location-lite .section {
  padding-top: clamp(2.3rem, 7vw, 3.2rem);
  padding-bottom: clamp(2.3rem, 7vw, 3.2rem);
}

main.sd-location-lite .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

main.sd-location-lite .service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

main.sd-location-lite .service-card p {
  margin-top: auto;
  line-height: 1.6;
}

main.sd-location-lite .sd-image-section {
  padding-top: 2.2rem;
  padding-bottom: 2.6rem;
}

main.sd-location-lite .sd-image-section-inner {
  border: 1px solid var(--sd-border);
}

main.sd-location-lite .sd-image-grid {
  gap: 1.05rem;
}

main.sd-location-lite .section-alt {
  border-top: 1px solid var(--sd-border);
}

main.sd-location-lite .nearby-links {
  list-style: none;
  margin-top: 0.55rem;
  padding: 0;
  gap: 0.62rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

main.sd-location-lite .nearby-links li {
  border-left: 3px solid transparent;
  background: var(--sd-white);
  border: 1px solid rgba(248, 186, 43, 0.3);
  padding: 0.6rem 0.75rem;
  border-radius: 0.55rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

main.sd-location-lite .nearby-links li:hover {
  border-color: var(--sd-gold);
  transform: translateY(-1px);
}

main.sd-location-lite .nearby-links a {
  font-weight: 600;
}

main.sd-location-lite .cta-section {
  margin-top: 0.55rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

main.sd-location-lite .cta-contact-info {
  margin-top: 0.95rem;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER / NAV
========================= */
.sd-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--sd-blue);
  border-bottom: 3px solid var(--sd-gold);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.sd-header-inner {
  max-width: 1600px;
  margin: 0 auto;
  min-height: 88px;
  padding: 0 clamp(22px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(6px, 1vw, 14px);
  transition: min-height 0.25s ease, padding 0.25s ease;
}

.sd-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.sd-header.is-scrolled .sd-header-inner {
  min-height: 72px;
  padding-top: 0;
  padding-bottom: 0;
}

.sd-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.sd-logo {
  display: block;
  width: 350px;
  max-width: 100%;
  height: 92px;
  max-height: 92px;
  object-fit: contain;
  transition: width 0.25s ease, height 0.25s ease, max-width 0.25s ease;
}

.sd-header.is-scrolled .sd-logo {
  width: 325px;
  height: 86px;
}

.sd-nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.4vw, 28px);
}

.sd-nav-link,
.sd-nav-submenu a,
.sd-nav-mobile-subtitle {
  color: var(--sd-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.sd-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--sd-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.sd-nav .sd-nav-link:hover,
.sd-nav .sd-nav-link.is-active {
  opacity: 1;
  background: none;
  border-radius: 0;
}

.sd-nav .sd-nav-link:hover::after,
.sd-nav .sd-nav-link.is-active::after {
  transform: scaleX(1);
}

.sd-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.sd-nav-dropdown {
  position: relative;
}

.sd-nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
  z-index: 18;
}

.sd-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  white-space: nowrap;
}

.sd-nav-caret {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  margin-left: 0.35rem;
  flex: 0 0 auto;
}

.sd-nav-dropdown.is-open .sd-nav-caret,
.sd-nav-dropdown:hover .sd-nav-caret,
.sd-nav-dropdown:focus-within .sd-nav-caret {
  transform: rotate(45deg);
}

.sd-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 252px;
  background: var(--sd-white);
  border: 1px solid var(--sd-border);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(45, 116, 182, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  pointer-events: none;
  z-index: 20;
}

.sd-nav-dropdown.is-open .sd-nav-submenu,
.sd-nav-dropdown:hover .sd-nav-submenu,
.sd-nav-dropdown:focus-within .sd-nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sd-nav-submenu .sd-nav-sublink {
  color: var(--sd-text);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  display: block;
  width: 100%;
  padding: 10px 11px;
  border-radius: 9px;
}

.sd-nav-submenu .sd-nav-sublink:hover,
.sd-nav-submenu .sd-nav-sublink:focus-visible {
  background: var(--sd-light);
  color: var(--sd-blue-dark);
}

.sd-nav-submenu .sd-nav-sublink::after {
  content: none;
}

.sd-nav-cta {
  background: var(--sd-gold);
  color: var(--sd-text) !important;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--sd-gold-dark);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.sd-nav-cta:hover,
.sd-nav-cta.is-active {
  background: var(--sd-gold-dark);
  transform: translateY(-1px);
}

.sd-nav-cta::after,
.sd-nav-cta:hover::after,
.sd-nav-cta:focus-visible::after {
  content: none;
}

.sd-nav-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.sd-nav-desktop {
  display: flex;
  flex: 1;
  min-width: 0;
}

.sd-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  color: var(--sd-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 12px 18px;
  min-width: 142px;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 13px;
  font-weight: 700;
}

.sd-menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.sd-menu-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sd-white);
}

.sd-menu-text {
  font-weight: 500;
  font-size: 14px;
}

.sd-mobile-menu {
  display: none;
  background: var(--sd-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sd-mobile-menu.is-open {
  display: block;
}

.sd-nav-mobile {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.sd-nav-mobile-subtitle {
  width: 100%;
  text-align: left;
  border: 0;
  padding: 2px 0;
  background: transparent;
  cursor: default;
  color: var(--sd-white);
}

.sd-nav-mobile-submenu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0 0 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  margin: 0.1rem 0 0.45rem;
}

.sd-nav-mobile-submenu .sd-nav-link {
  width: 100%;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.96;
}

.sd-nav-mobile a {
  width: 100%;
  padding: 2px 0;
}

/* =========================
   LOCATION PAGE STABILIZATION
========================= */
/* Keep shared structural spacing while preserving page-specific theme colors */
:where(body.sd-location-page) {
  --location-grid-gap: 1.2rem;
}

body.sd-location-page .services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--location-grid-gap);
}

body.sd-location-page .nearby-links {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding: 0.2rem 0 0;
}

body.sd-location-page .nearby-links li a {
  color: var(--sd-blue);
}

body.sd-location-page .local-block {
  border-left-color: var(--sd-gold);
  border-left-width: 4px;
}

body.sd-location-page .sd-image-section {
  padding-top: 2.5rem;
  padding-bottom: 2.8rem;
}

/* Shared layout used by header/footer compatibility */
.page-wrap,
main {
  width: 100%;
}

/* =========================
   SAN DIEGO HUB (index.php)
========================= */
.hub-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px, 52vh, 560px);
  color: var(--sd-white);
  display: grid;
  place-items: center;
  padding: 3.5rem 1.25rem;
  background:
    radial-gradient(1000px 400px at 15% 15%, rgba(255, 255, 255, 0.15), transparent 62%),
    linear-gradient(120deg, #2d74b6 0%, #2d74b6 52%, #2d74b6 100%);
}

.hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.25), transparent 38%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.09) 0, rgba(255, 255, 255, 0.09) 1px, transparent 1px, transparent 7px);
  pointer-events: none;
}

.hub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at 90% 0%, rgba(248, 186, 43, 0.35), transparent 40%);
  pointer-events: none;
}

.hub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: min(1120px, 100%);
  display: grid;
  gap: 1rem;
  text-align: left;
}

.hub-kicker {
  margin: 0;
  color: var(--sd-gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.83rem;
}

.hub-hero h1 {
  margin: 0;
  color: var(--sd-white);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  max-width: 30ch;
}

.hub-hero-title {
  display: block;
}

.hub-hero-title .hub-hero-accent {
  display: inline;
}

.hub-hero-title-linebreak {
  display: block;
}

.hub-hero-accent {
  color: var(--sd-gold);
  font-style: normal;
}

.hub-hero p {
  margin: 0;
  max-width: 74ch;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  padding: 0.76rem 1.35rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hub-btn:hover {
  transform: translateY(-1px);
}

.hub-btn-primary {
  background: var(--sd-white);
  color: var(--sd-blue-dark);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.hub-btn-primary:hover {
  background: var(--sd-light);
}

.hub-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--sd-white);
}

.hub-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hub-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.35rem 1.25rem;
}

.hub-service-icon-strip {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

.hub-service-icon-item {
  text-decoration: none;
  color: var(--sd-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-width: 0;
  min-height: 86px;
  line-height: 1.25;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  justify-content: flex-start;
}

.hub-service-icon-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hub-service-icon-item .sd-inline-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hub-service-icon-item .sd-inline-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hub-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.hub-service-list .hub-service-item .sd-inline-icon,
.hub-services-list .hub-service-item .sd-inline-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.32rem;
  color: var(--sd-gold);
}

.hub-services-list .hub-service-item .sd-inline-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hub-section-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  color: var(--sd-blue-dark);
}

.hub-section-sub {
  margin: 0 auto;
  max-width: 80ch;
  text-align: center;
  color: var(--sd-text-muted);
}

.hub-service-subsection {
  margin-top: 2rem;
  padding: 1.4rem 1rem 1.6rem;
  border: 1px solid var(--sd-border);
  border-radius: 14px;
  background: var(--sd-white);
}

.hub-service-subsection + .hub-service-subsection {
  margin-top: 1.2rem;
}

.hub-service-subsection-head {
  margin-bottom: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.hub-subsection-title {
  margin: 0;
  text-align: left;
  color: var(--sd-blue-dark);
  font-size: 1.3rem;
}

.hub-subsection-copy {
  margin: 0.3rem 0 0;
  color: var(--sd-text-muted);
  max-width: 64ch;
}

.hub-service-subsection--military {
  border-left: 4px solid var(--sd-gold);
}

.hub-section--light {
  background: var(--sd-white);
  margin-top: 1.5rem;
  border-top: 1px solid var(--sd-border);
  border-bottom: 1px solid var(--sd-border);
}

.hub-service-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.hub-service-card {
  text-decoration: none;
  background: var(--sd-white);
  border: 1px solid var(--sd-border);
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  position: relative;
  isolation: isolate;
  min-height: 112px;
}

.hub-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--sd-blue-dark);
  box-shadow: 0 10px 18px rgba(45, 116, 182, 0.12);
}

.hub-service-card.is-hidden {
  display: none;
}

.hub-service-grid.is-expanded .hub-service-card.is-hidden {
  display: flex;
}

.hub-service-card::after {
  content: "\2192";
  color: var(--sd-gold);
  position: absolute;
  right: 0.8rem;
  bottom: 0.72rem;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hub-service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.hub-service-toggle-wrap {
  display: flex;
  justify-content: center;
}

.hub-service-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--sd-blue-dark);
  padding-right: 1.5rem;
}

.hub-service-card p {
  margin: 0;
  color: var(--sd-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  flex: 1;
}

.hub-service-card:hover,
.hub-service-card:focus-visible {
  border-color: var(--sd-blue-dark);
  text-decoration: none;
  outline: none;
}

.hub-service-card:focus-visible {
  box-shadow: 0 10px 18px rgba(45, 116, 182, 0.15);
}

.hub-service-toggle {
  margin-top: 0.8rem;
  border: 1px solid var(--sd-gold-dark);
  border-radius: 999px;
  background: var(--sd-gold);
  color: #102a4f;
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.58rem 1.2rem;
  position: relative;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hub-service-toggle::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.45rem;
  color: #102a4f;
  transform: rotate(0deg);
  transition: transform 0.23s ease;
}

.hub-service-toggle:hover,
.hub-service-toggle:focus-visible {
  background: var(--sd-gold-dark);
  border-color: var(--sd-gold-dark);
  transform: translateY(-1px);
  outline: none;
}

.hub-service-toggle[aria-expanded='true']::after {
  transform: rotate(180deg);
}

.hub-service-toggle.is-pulsing {
  animation: hub-service-toggle-pop 0.36s ease-out;
}

@keyframes hub-service-toggle-pop {
  0% {
    box-shadow: 0 0 0 rgba(248, 186, 43, 0);
    transform: translateY(-1px) scale(1);
  }

  55% {
    box-shadow: 0 12px 30px rgba(248, 186, 43, 0.4);
    transform: translateY(-1px) scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 rgba(248, 186, 43, 0);
    transform: translateY(-1px) scale(1);
  }
}

.hub-service-subsection-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.hub-services-list {
  margin: 1.2rem auto 0;
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 2rem;
  max-width: 980px;
}

.hub-services-list li {
  padding: 0.36rem 0 0.36rem 1.3rem;
  color: var(--sd-text-muted);
  position: relative;
}

.hub-services-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--sd-gold);
  top: 0.4rem;
}

/* =========================
   SHARED LOCATION IMAGE BLOCKS
========================= */
.sd-image-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3rem;
}

.sd-image-section-inner {
  background: var(--sd-white);
  border-radius: 14px;
  border: 2px solid var(--sd-gold);
  padding: 1.5rem;
  box-shadow: var(--sd-shadow);
}

.sd-image-section-title {
  margin: 0 0 0.5rem;
  color: var(--sd-blue);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.sd-image-section-description {
  margin: 0 0 1.3rem;
  color: var(--sd-text-muted);
  max-width: 80ch;
}

.sd-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sd-image-card {
  margin: 0;
  background: var(--sd-white);
  border: 1px solid rgba(248, 186, 43, 0.4);
  border-left: 4px solid var(--sd-gold);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(45, 116, 182, 0.08);
}

.sd-service-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sd-image-card figcaption {
  padding: 0.75rem 0.9rem 0.9rem;
  font-size: 0.95rem;
  color: var(--sd-text);
}

.sd-inline-image {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--sd-border);
}

.sd-cta-image {
  max-width: 820px;
  border-radius: 14px;
  border: 1px solid var(--sd-border);
}
/* =========================
   FOOTER (shared site styling)
========================= */
.sd-footer {
  background: var(--sd-white);
  color: var(--sd-text);
  margin-top: 40px;
}

.sd-footer-main {
  width: 100%;
  background: var(--sd-white);
  color: var(--sd-text);
  border-top: 1px solid var(--sd-border);
}

.sd-footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #dddddd;
}

.sd-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(45, 116, 182, 0.12);
  color: var(--sd-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.sd-instagram:hover {
  background: var(--sd-light);
}

.sd-instagram-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.45rem;
}

.sd-instagram-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.sd-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.sd-footer-col h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.3;
  color: var(--sd-text);
}

.sd-footer-col p {
  margin-bottom: 12px;
  color: var(--sd-text-muted);
}

.sd-footer-col a {
  color: var(--sd-blue);
  text-decoration: none;
}

.sd-footer-col a:hover {
  text-decoration: underline;
}

.sd-footer-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-bottom: 16px;
}

.sd-footer-text {
  max-width: 40ch;
}

.sd-footer-col a.sd-footer-service-areas-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--sd-white);
  background: var(--sd-blue);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.sd-footer-col a.sd-footer-service-areas-link:hover,
.sd-footer-col a.sd-footer-service-areas-link:focus-visible {
  background: var(--sd-blue-dark);
}

.sd-footer-bottom {
  margin: 0 auto;
  padding: 18px 28px;
  border-top: 1px solid var(--sd-border);
  background: var(--sd-light-gray);
  color: var(--sd-text-muted);
  font-size: 14px;
  text-align: center;
}

/* =========================
   BREADCRUMBS
========================= */
.sd-breadcrumbs {
  background: var(--sd-white);
  color: var(--sd-text-muted);
  border-top: 1px solid var(--sd-border);
}

.sd-breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  color: var(--sd-text-muted);
  font-size: 0.82rem;
}

.sd-breadcrumb-list a {
  color: var(--sd-blue);
  text-decoration: none;
}

.sd-breadcrumb-list a:hover,
.sd-breadcrumb-list a:focus-visible {
  text-decoration: underline;
}

.sd-breadcrumb-current {
  color: var(--sd-text);
}

/* -------------------------
   Legacy compatibility cleanup
-------------------------- */
.dark-section {
  background: var(--sd-white);
  color: var(--sd-text);
  border-top: 1px solid var(--sd-border);
  border-bottom: 1px solid var(--sd-border);
}

.section-title,
.two-col,
.container,
.cta-box,
.services {
  background: transparent;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hub-service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .sd-header-inner {
    min-height: auto;
    padding: 14px 18px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .sd-header.is-scrolled .sd-header-inner {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sd-logo {
    max-width: 280px;
    height: auto;
  }

  .sd-header.is-scrolled .sd-logo {
    max-width: 250px;
    height: auto;
  }

  .sd-nav-desktop {
    display: none;
  }

  .sd-menu-toggle {
    display: inline-flex;
    margin-bottom: 4px;
  }

  .sd-mobile-menu {
    padding-bottom: 8px;
  }

  .sd-footer-top,
  .sd-footer-inner,
  .sd-footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sd-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hub-hero {
    min-height: 460px;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .hub-hero-inner {
    text-align: left;
  }

  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 820px) {
  .hub-services-list {
    columns: 1;
  }

  .hub-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-service-icon-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hub-hero {
    min-height: 420px;
  }

  .hub-hero h1 {
    font-size: clamp(1.6rem, 5.6vw, 2.05rem);
    line-height: 1.2;
  }

  .sd-logo {
    max-width: 220px;
    height: auto;
  }

  .sd-header.is-scrolled .sd-logo {
    max-width: 210px;
    height: auto;
  }

  .hub-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hub-service-grid {
    grid-template-columns: 1fr;
  }

  .hub-section {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }

  .hub-service-icon-item {
    font-size: 0.82rem;
    padding: 0.56rem 0.62rem;
  }

  .hub-service-icon-item .sd-inline-icon {
    width: 0.95rem;
    height: 0.95rem;
  }
}



/* shared image section responsive */
@media (max-width: 1024px) {
  .sd-image-grid {
    grid-template-columns: 1fr;
  }

  .sd-image-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 560px) {
  .sd-image-section-title {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .sd-image-card figcaption {
    font-size: 0.9rem;
  }
}




