/* APEX RecSite Builder — Bundled theme styles v1.3.1
   Design tokens (--apex-*) are injected inline by inc/design-tokens.php.
   These rules provide structural layout for header, nav, footer, and main
   content areas used by PHP page templates. */

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--apex-font-body, 'Work Sans', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--apex-text, #191c1e);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--apex-primary, #b5106b); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--apex-font-head, 'Hanken Grotesk', sans-serif);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: inherit;
}

/* ── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
.skip-link:focus {
  left: 0; top: 0;
  width: auto; height: auto;
  overflow: visible;
  z-index: 9999;
  background: var(--apex-primary, #b5106b);
  color: #fff;
  padding: .5rem 1rem;
  font-size: .875rem;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.apex-header {
  background: var(--apex-dark, #050e1d);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
/* Minimum height so the header isn't zero-height before fonts load */
.apex-header__inner { min-height: 64px; }

/* Text logo (shown when no logo image is set) */
.apex-header__site-name {
  font-family: var(--apex-font-head, 'Hanken Grotesk', sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.apex-header__site-name:hover { color: var(--apex-primary, #b5106b); text-decoration: none; }

/* Logo image */
.apex-logo { max-height: 48px; width: auto; }

/* Primary navigation */
.apex-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.apex-nav__list > li { margin: 0; }
.apex-nav__list > li > a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--apex-font-head, 'Hanken Grotesk', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-radius: var(--apex-radius, 4px);
  transition: background .15s, color .15s;
}
.apex-nav__list > li > a:hover,
.apex-nav__list > li.current-menu-item > a,
.apex-nav__list > li.current_page_item > a {
  color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

/* ── Main content area ──────────────────────────────────────────────────── */
.apex-main {
  min-height: 55vh;
  display: block;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.apex-footer {
  background: var(--apex-dark, #050e1d);
  color: rgba(255,255,255,.72);
}
.apex-footer a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}
.apex-footer a:hover { color: #fff; text-decoration: none; }

.apex-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .apex-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .apex-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.apex-footer__text {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.apex-footer__logo { max-height: 40px; width: auto; margin-bottom: 1rem; }

.apex-footer__nav-title {
  font-family: var(--apex-font-head, 'Hanken Grotesk', sans-serif);
  font-size: .6875rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 .875rem;
}
.apex-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.apex-footer__nav-list li { margin: 0; }
.apex-footer__nav-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  transition: color .12s;
}
.apex-footer__nav-list a:hover { color: #fff; }

.apex-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.apex-footer__copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* ── Admin bar offset ───────────────────────────────────────────────────── */
.admin-bar .apex-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .apex-header { top: 46px; } }

/* ── WP Job Manager overrides ───────────────────────────────────────────── */
.job-manager-form .fieldset-job_listing_type { display: none !important; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.apex-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--apex-radius, 4px);
  font-family: var(--apex-font-head, sans-serif);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .15s, box-shadow .15s;
  line-height: 1;
}
.apex-btn:hover { opacity: .88; text-decoration: none; }
.apex-btn--primary { background: var(--apex-primary, #b5106b); color: #fff; }
.apex-btn--outline {
  background: transparent;
  color: var(--apex-primary, #b5106b);
  border: 1.5px solid var(--apex-primary, #b5106b);
}
.apex-btn--ghost { background: transparent; color: var(--apex-dark); border: 1.5px solid var(--apex-border); }
.apex-btn--lg { padding: .875rem 1.875rem; font-size: 1rem; }
.apex-btn--sm { padding: .5rem 1rem; font-size: .8125rem; }

/* ── Insight cards ──────────────────────────────────────────────────────── */
.apex-insight-card {
  background: #fff;
  border: 1px solid var(--apex-border, #e0e3e5);
  border-radius: var(--apex-radius, 4px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.apex-insight-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.apex-insight-card__thumbnail { display: block; overflow: hidden; aspect-ratio: 16/9; }
.apex-insight-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.apex-insight-card:hover .apex-insight-card__img { transform: scale(1.04); }
.apex-insight-card__body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .625rem; }
.apex-insight-card__types { display: flex; gap: .375rem; flex-wrap: wrap; }
.apex-insight-type-tag {
  font-size: .6875rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--apex-primary, #b5106b);
}
.apex-insight-card__title {
  font-family: var(--apex-font-head, sans-serif);
  font-size: .9375rem; font-weight: 700;
  color: var(--apex-dark, #050e1d); line-height: 1.3; margin: 0;
}
.apex-insight-card__title a { color: inherit; text-decoration: none; }
.apex-insight-card__title a:hover { color: var(--apex-primary); text-decoration: none; }
.apex-insight-card__excerpt {
  font-size: .875rem; color: var(--apex-text-muted, #45474c);
  line-height: 1.65; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.apex-insight-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-top: auto; padding-top: .875rem;
  border-top: 1px solid var(--apex-border, #e0e3e5);
}
.apex-insight-card__date { font-size: .8rem; color: var(--apex-text-muted, #45474c); }
.apex-insight-card__read-more {
  font-size: .8rem; font-weight: 600;
  color: var(--apex-primary, #b5106b); text-decoration: none;
}
.apex-insight-card__read-more:hover { text-decoration: underline; }

/* ── Article body typography ────────────────────────────────────────────── */
.apex-article-body h2 {
  font-family: var(--apex-font-head, sans-serif);
  font-size: 1.375rem; font-weight: 700;
  color: var(--apex-dark); margin: 2.5rem 0 1rem; line-height: 1.2;
}
.apex-article-body h3 {
  font-family: var(--apex-font-head, sans-serif);
  font-size: 1.125rem; font-weight: 700;
  color: var(--apex-dark); margin: 2rem 0 .75rem;
}
.apex-article-body p { margin-bottom: 1.5rem; }
.apex-article-body ul, .apex-article-body ol {
  padding-left: 1.75rem; margin-bottom: 1.5rem;
}
.apex-article-body li { margin-bottom: .5rem; }
.apex-article-body strong { font-weight: 700; }
.apex-article-body a { color: var(--apex-primary); }

/* ── Featured insight responsive ────────────────────────────────────────── */
@media (max-width: 700px) {
  .apex-featured-insight {
    grid-template-columns: 1fr !important;
  }
}

/* ── Pagination ─────────────────────────────────────────────────────────── */
.page-numbers {
  display: inline-flex;align-items:center;justify-content:center;
  min-width:2rem;height:2rem;padding:0 .5rem;
  font-size:.875rem;font-weight:600;
  color:var(--apex-dark);background:#fff;
  border:1.5px solid var(--apex-border);border-radius:var(--apex-radius);
  text-decoration:none;transition:background .15s,color .15s;margin:0 .125rem;
}
.page-numbers.current,.page-numbers:hover {
  background:var(--apex-primary);color:#fff;border-color:var(--apex-primary);
  text-decoration:none;
}
.page-numbers.dots { background:transparent;border-color:transparent; }

/* ── Job listing hover ──────────────────────────────────────────────────── */
.apex-main--jobs a[style*="border:1.5px solid var(--apex-border)"]:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: var(--apex-primary) !important;
}

/* ── Dropdown navigation ────────────────────────────────────────────────── */
.apex-nav__list li { position: relative; }
.apex-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--apex-dark, #050e1d);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--apex-radius, 4px);
  min-width: 230px;
  padding: .375rem 0;
  z-index: 300;
  box-shadow: 0 8px 28px rgba(0,0,0,.32);
  list-style: none;
  margin: 0;
}
.apex-nav__list li:hover > .sub-menu,
.apex-nav__list li:focus-within > .sub-menu { display: block; }
.apex-nav__list .sub-menu li { margin: 0; }
.apex-nav__list .sub-menu a {
  display: block;
  padding: .625rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: background .12s, color .12s;
  text-decoration: none;
  white-space: nowrap;
}
.apex-nav__list .sub-menu a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}
/* Chevron for parent items */
.apex-nav__list > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 8px; height: 5px;
  margin-left: .3rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='rgba(255,255,255,.55)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  vertical-align: middle;
  transition: transform .18s;
}
.apex-nav__list > li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }

/* ── Mobile navigation ──────────────────────────────────────────────────── */
.apex-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: rgba(255,255,255,.85);
  line-height: 1;
}
.apex-nav-toggle:hover { color: #fff; }
/* Overlay drawer */
.apex-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 198;
}
.apex-nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--apex-dark, #050e1d);
  z-index: 199;
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform .26s ease;
}
body.apex-nav-open .apex-nav-overlay,
body.apex-nav-open .apex-nav-drawer { display: block; }
body.apex-nav-open .apex-nav-drawer { transform: translateX(0); }
.apex-nav-drawer-close {
  position: absolute;
  top: 1.125rem; right: 1.125rem;
  background: none; border: none;
  cursor: pointer;
  color: rgba(255,255,255,.65);
  line-height: 1; padding: .5rem;
}
.apex-nav-drawer-close:hover { color: #fff; }
/* Drawer menu list */
.apex-nav-drawer .apex-nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.apex-nav-drawer .apex-nav__list > li { width: 100%; }
.apex-nav-drawer .apex-nav__list > li > a {
  padding: .75rem .25rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-radius: 0;
}
.apex-nav-drawer .sub-menu {
  position: static;
  display: block;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0 0 .25rem 1rem;
  background: transparent;
  min-width: 0;
}
.apex-nav-drawer .sub-menu a {
  padding: .5rem 0;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

@media (max-width: 900px) {
  .apex-nav { display: none; }
  .apex-nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ── WP Job Manager overrides ────────────────────────────────────────────── */

/* Hide WP JM's default keyword/location inputs — our hero form replaces them */
.apex-jobs-listing .job_filters .search_keywords,
.apex-jobs-listing .job_filters .search_location,
.apex-jobs-listing .job_filters .search_submit { display: none !important; }

/* Keep the job type checkboxes + label row — styled below */
.apex-jobs-listing .job_filters { background: none; border: none; padding: 0; margin: 0 0 1.5rem; }
.apex-jobs-listing .job_filters fieldset { border: none; padding: 0; margin: 0; }
.apex-jobs-listing .job_filters legend { display: none; }
.apex-jobs-listing .job_filters .job_types li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 0 .75rem .5rem 0;
  font-size: .8125rem;
  color: var(--apex-muted, #45474c);
}
.apex-jobs-listing .job_filters .job_types li label { cursor: pointer; }

/* APEX job card — list-item styled as a card */
.apex-job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.apex-job-card { border: 1.5px solid var(--apex-border, #e0e3e5); border-radius: var(--apex-radius, 4px); background: #fff; transition: box-shadow .2s, border-color .2s; }
.apex-job-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); border-color: var(--apex-primary, #163c74); }
.apex-job-card--featured { border-left: 3px solid var(--apex-primary, #163c74); }
.apex-job-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.375rem 1.75rem;
  text-decoration: none;
  color: inherit;
  flex-wrap: wrap;
}
.apex-job-card__main { flex: 1; min-width: 0; }
.apex-job-card__title {
  font-family: var(--apex-font-head, sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--apex-dark, #050e1d);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.apex-job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .875rem;
  align-items: center;
}
.apex-job-card__location {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8125rem;
  color: var(--apex-muted, #45474c);
}
.apex-job-card__salary {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--apex-primary, #163c74);
}
.apex-job-card__remote {
  font-size: .75rem;
  font-weight: 600;
  color: var(--apex-muted, #45474c);
  background: var(--apex-light, #f7f9fb);
  padding: .15rem .6rem;
  border-radius: 999px;
}
.apex-job-card__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  flex-shrink: 0;
}
.apex-job-card__badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .625rem;
  border-radius: 999px;
}
.apex-job-card__badge--featured {
  color: var(--apex-primary, #163c74);
  background: rgba(22,60,116,.07);
}
.apex-job-card__types { display: flex; flex-wrap: wrap; gap: .375rem; justify-content: flex-end; }
.apex-job-card__type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--apex-primary, #163c74);
  background: rgba(22,60,116,.07);
  padding: .2rem .625rem;
  border-radius: 999px;
  border: 1px solid rgba(22,60,116,.15);
}
.apex-job-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--apex-primary, #163c74);
}

/* Load more button */
.apex-jobs-listing .load_more_jobs {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: .875rem;
  background: transparent;
  border: 1.5px solid var(--apex-border, #e0e3e5);
  border-radius: var(--apex-radius, 4px);
  font-family: var(--apex-font-head, sans-serif);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--apex-primary, #163c74);
  cursor: pointer;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.apex-jobs-listing .load_more_jobs:hover {
  background: var(--apex-light, #f7f9fb);
  border-color: var(--apex-primary, #163c74);
}

/* Empty state */
.apex-jobs-empty {
  text-align: center;
  padding: 4rem 2rem;
  border: 1.5px dashed var(--apex-border, #e0e3e5);
  border-radius: var(--apex-radius, 4px);
  color: var(--apex-muted, #45474c);
  font-size: 1.05rem;
}

/* ── Additional buttons ─────────────────────────────────────────────────── */
.apex-btn--secondary {
  background: transparent;
  color: var(--apex-dark, #050e1d);
  border: 1.5px solid var(--apex-border, #e0e3e5);
}
.apex-btn--secondary:hover { background: var(--apex-light, #f7f9fb); }

/* ── Prose content ──────────────────────────────────────────────────────── */
.apex-prose h2, .apex-prose h3, .apex-prose h4 {
  font-family: var(--apex-font-head, sans-serif);
  color: var(--apex-dark, #050e1d);
}
.apex-prose p { line-height: 1.8; }
.apex-prose ul, .apex-prose ol { padding-left: 1.5rem; }
.apex-prose li { margin-bottom: .5rem; line-height: 1.7; }
.apex-prose a { color: var(--apex-primary); }

/* ── Two-column grid mobile collapse ───────────────────────────────────── */
@media (max-width: 720px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns:1fr 360px"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 860px) {
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Contact / Jobs grid responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .apex-contact__grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Article body typography ─────────────────────────────────────────────── */
.apex-article-body h2 {
  font-family: var(--apex-font-head, sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--apex-dark, #050e1d);
  margin: 2rem 0 .75rem;
}
.apex-article-body h3 {
  font-family: var(--apex-font-head, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--apex-dark, #050e1d);
  margin: 1.5rem 0 .5rem;
}
.apex-article-body p { margin: 0 0 1.25rem; }
.apex-article-body ul, .apex-article-body ol { margin: 0 0 1.25rem; padding-left: 1.5rem; }
.apex-article-body li { margin-bottom: .4rem; }

/* ── Share buttons (single job sidebar) ─────────────────────────────────── */
.apex-share-buttons {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.apex-share-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  border-radius: var(--apex-radius, 4px);
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: var(--apex-light, #f7f9fb);
  color: var(--apex-dark, #050e1d);
  transition: background .15s, color .15s, border-color .15s;
  width: 100%;
}
.apex-share-btn:hover { background: var(--apex-border, #e0e3e5); }
.apex-share-btn--linkedin  { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.apex-share-btn--linkedin:hover  { background: #084fa1; border-color: #084fa1; }
.apex-share-btn--facebook  { background: #1877f2; color: #fff; border-color: #1877f2; }
.apex-share-btn--facebook:hover  { background: #1264d3; border-color: #1264d3; }
.apex-share-btn--x         { background: #000; color: #fff; border-color: #000; }
.apex-share-btn--x:hover   { background: #222; border-color: #222; }
.apex-share-btn--whatsapp  { background: #25d366; color: #fff; border-color: #25d366; }
.apex-share-btn--whatsapp:hover  { background: #1db954; border-color: #1db954; }
.apex-share-btn--email     { background: #fff; color: var(--apex-dark, #050e1d); border-color: var(--apex-border, #e0e3e5); }
.apex-share-btn--email:hover { background: var(--apex-light, #f7f9fb); }
.apex-share-btn--copy      { background: #fff; color: var(--apex-dark, #050e1d); border-color: var(--apex-border, #e0e3e5); }
.apex-share-btn--copy:hover { background: var(--apex-light, #f7f9fb); }
.apex-share-btn.is-copied  { background: var(--apex-primary, #163c74); color: #fff; border-color: var(--apex-primary, #163c74); }

/* ── Utility ────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
