/* Salud Sostenible Platform UI (namespaced) */
:root{
  --ssp-accent:#1fbf9b;
  --ssp-accent2:#2b7cff;
  --ssp-ink:#0f172a;
  --ssp-muted:#475569;
  --ssp-line:rgba(15,23,42,.10);
  --ssp-surface:rgba(255,255,255,.84);
  --ssp-radius:22px;
}

.ssp-block{border-radius:28px;border:1px solid var(--ssp-line);background:var(--ssp-surface);backdrop-filter: blur(10px);box-shadow:0 18px 60px rgba(15,23,42,.08);padding:18px;}
.ssp-home{display:flex;flex-direction:column;gap:18px;}
.ssp-section{margin-top:10px;}

.ssp-h2{margin:0 0 8px;font-size:28px;line-height:1.1;color:var(--ssp-ink);}
.ssp-p{margin:0;color:var(--ssp-muted);max-width:75ch;}

.ssp-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:16px;
  border:1px solid rgba(31,191,155,.26);
  background:linear-gradient(135deg, rgba(31,191,155,.16), rgba(43,124,255,.10));
  color:var(--ssp-ink); text-decoration:none;
  font-weight:800; cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease;
}
.ssp-btn:hover{transform: translateY(-1px); border-color: rgba(31,191,155,.42); box-shadow:0 10px 30px rgba(31,191,155,.14);}
.ssp-btn--ghost{background:transparent;border-color:var(--ssp-line);}
.ssp-btn--full{width:100%;}
.ssp-btn--xl{padding:13px 16px;border-radius:18px;}

.ssp-pill{display:inline-flex;padding:6px 10px;border-radius:999px;border:1px solid rgba(43,124,255,.18);background:rgba(43,124,255,.06);font-size:12px;color:var(--ssp-ink);}
.ssp-pill--soft{border-color:rgba(31,191,155,.18);background:rgba(31,191,155,.06);}

.ssp-chip{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;font-size:12px;border:1px solid var(--ssp-line);color:rgba(15,23,42,.86);background:rgba(255,255,255,.65);}
.ssp-chip--accent{border-color:rgba(31,191,155,.22);background:rgba(31,191,155,.08);}

.ssp-hero{position:relative;overflow:hidden;padding:0;}
.ssp-hero__bg{position:absolute;inset:0;background:
  radial-gradient(1200px 520px at 10% 18%, rgba(31,191,155,.22), transparent 55%),
  radial-gradient(900px 520px at 85% 32%, rgba(43,124,255,.20), transparent 55%),
  linear-gradient(180deg, rgba(255,255,255,.85), rgba(248,250,252,.85));
}
.ssp-hero__content{position:relative;display:grid;grid-template-columns:1.2fr .8fr;gap:16px;padding:26px;}
@media (max-width: 1000px){ .ssp-hero__content{grid-template-columns:1fr;} }
.ssp-kicker{display:inline-flex;align-items:center;gap:8px;font-size:12px;color:rgba(15,23,42,.74);border:1px solid var(--ssp-line);background:rgba(255,255,255,.55);padding:7px 10px;border-radius:999px;margin-bottom:12px;}
.ssp-hero__title{font-size:44px;line-height:1.05;margin:0 0 10px;color:var(--ssp-ink);}
@media (max-width: 700px){ .ssp-hero__title{font-size:34px;} }
.ssp-hero__subtitle{margin:0;color:rgba(15,23,42,.72);max-width:58ch;}
.ssp-hero__ctas{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;}
.ssp-hero__trust{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.ssp-trust{display:flex;gap:10px;align-items:center;border:1px solid var(--ssp-line);background:rgba(255,255,255,.55);padding:10px 12px;border-radius:18px;}
.ssp-trust__n{font-weight:900;font-size:16px;color:var(--ssp-ink);}
.ssp-trust__t{font-size:12px;color:rgba(15,23,42,.66);}

.ssp-dashboard{border-radius:24px;border:1px solid var(--ssp-line);background:rgba(255,255,255,.62);padding:14px;backdrop-filter: blur(12px);box-shadow: 0 20px 50px rgba(15,23,42,.10);}
.ssp-dashboard__top{display:flex;align-items:center;gap:8px;color:rgba(15,23,42,.60);font-size:12px;margin-bottom:10px;}
.ssp-dot{width:10px;height:10px;border-radius:999px;background:rgba(15,23,42,.10);border:1px solid rgba(15,23,42,.10);}
.ssp-dashboard__label{margin-left:auto;border:1px solid rgba(31,191,155,.22);padding:6px 10px;border-radius:999px;background:rgba(31,191,155,.08);font-weight:800;}
.ssp-dashboard__grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.ssp-metric{border:1px solid var(--ssp-line);background:rgba(255,255,255,.65);border-radius:18px;padding:12px;}
.ssp-metric span{display:block;color:rgba(15,23,42,.60);font-size:12px;}
.ssp-metric strong{display:block;margin-top:6px;font-size:18px;color:var(--ssp-ink);}
.ssp-dashboard__cta{margin-top:12px;}

.ssp-search{padding:18px;}
.ssp-search__panel{display:grid;grid-template-columns: 1fr 1fr 2fr auto;gap:12px;align-items:end;margin:14px 0 14px;}
@media (max-width: 900px){ .ssp-search__panel{grid-template-columns:1fr; } }
.ssp-field label{display:block;font-weight:800;margin:0 0 6px;color:var(--ssp-ink);}
.ssp-input, .ssp-select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--ssp-line);
  background:rgba(255,255,255,.70);
  color:var(--ssp-ink);
}
.ssp-input::placeholder{color:rgba(15,23,42,.45);}
.ssp-actions{display:flex;gap:10px;justify-content:flex-end;align-items:center;}
@media (max-width: 900px){ .ssp-actions{justify-content:flex-start;} }

.ssp-search__content{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,420px);gap:14px;align-items:start;}
@media (max-width: 980px){ .ssp-search__content{grid-template-columns:1fr;} }

.ssp-results{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
@media (max-width: 1100px){ .ssp-results{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 650px){ .ssp-results{grid-template-columns: 1fr;} }

.ssp-card{
  border:1px solid var(--ssp-line);
  border-radius:var(--ssp-radius);
  padding:14px;
  background:rgba(255,255,255,.74);
  box-shadow:0 14px 40px rgba(15,23,42,.06);
}
.ssp-card__top{display:flex;gap:12px;align-items:center;}
.ssp-avatar{width:62px;height:62px;border-radius:18px;background:rgba(15,23,42,.04);overflow:hidden;flex:0 0 auto;border:1px solid var(--ssp-line);}
.ssp-avatar img{width:100%;height:100%;object-fit:cover;}
.ssp-card__name{margin:0;font-size:18px;line-height:1.2;color:var(--ssp-ink);}
.ssp-card__meta{color:rgba(15,23,42,.64);font-size:13px;margin-top:4px;}
.ssp-badges{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px;}
.ssp-card__actions{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap;}

.ssp-map{position:sticky;top:18px;}
.ssp-map__canvas{height:520px;border-radius:22px;border:1px solid var(--ssp-line);overflow:hidden;}
.ssp-map__hint{margin-top:8px;color:rgba(15,23,42,.55);font-size:12px;}

.ssp-pagination{margin-top:14px;display:flex;gap:8px;flex-wrap:wrap;}
.ssp-pagebtn{padding:8px 10px;border-radius:12px;border:1px solid var(--ssp-line);background:rgba(255,255,255,.70);color:var(--ssp-ink);cursor:pointer;font-weight:800;}
.ssp-pagebtn[aria-current="true"]{border-color:rgba(31,191,155,.42);}

.ssp-empty{grid-column:1/-1;color:rgba(15,23,42,.64);padding:16px;border:1px dashed var(--ssp-line);border-radius:var(--ssp-radius);background:rgba(255,255,255,.55);}

.ssp-grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
@media (max-width: 1100px){ .ssp-grid4{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 650px){ .ssp-grid4{grid-template-columns:1fr;} }
.ssp-grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
@media (max-width: 900px){ .ssp-grid3{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 650px){ .ssp-grid3{grid-template-columns:1fr;} }

.ssp-card__k{font-size:12px;color:rgba(15,23,42,.62);margin-bottom:8px;font-weight:900;}
.ssp-card--glow{border-color:rgba(31,191,155,.28);box-shadow:0 0 0 1px rgba(31,191,155,.10), 0 24px 60px rgba(15,23,42,.10);}

.ssp-cat{display:flex;align-items:center;gap:12px;padding:14px;border-radius:22px;border:1px solid var(--ssp-line);background:rgba(255,255,255,.70);text-decoration:none;color:var(--ssp-ink);transition:transform .08s ease, border-color .2s ease, box-shadow .2s ease;}
.ssp-cat:hover{transform: translateY(-1px);border-color:rgba(43,124,255,.22);box-shadow:0 14px 40px rgba(15,23,42,.08);}
.ssp-cat__icon{width:46px;height:46px;border-radius:16px;display:flex;align-items:center;justify-content:center;background:rgba(43,124,255,.08);border:1px solid rgba(43,124,255,.16);font-size:18px;}
.ssp-cat__name{font-weight:900;}
.ssp-cat__arrow{margin-left:auto;color:rgba(15,23,42,.50);font-weight:900;}

.ssp-steps__grid{display:grid;grid-template-columns:repeat(6, 1fr);gap:10px;}
@media (max-width: 1200px){ .ssp-steps__grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width: 700px){ .ssp-steps__grid{grid-template-columns:1fr;} }
.ssp-step{border:1px solid var(--ssp-line);background:rgba(255,255,255,.70);border-radius:22px;padding:14px;}
.ssp-step__n{width:34px;height:34px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-weight:900;background:rgba(31,191,155,.12);border:1px solid rgba(31,191,155,.22);margin-bottom:10px;}
.ssp-step__t{font-weight:900;margin-bottom:6px;color:var(--ssp-ink);}
.ssp-step__d{color:rgba(15,23,42,.62);font-size:13px;}

.ssp-legal__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:10px;}
@media (max-width: 800px){ .ssp-legal__grid{grid-template-columns:1fr;} }
.ssp-legal__item{border:1px solid var(--ssp-line);background:rgba(255,255,255,.70);border-radius:20px;padding:14px;display:flex;flex-direction:column;gap:8px;}
.ssp-legal__item span{color:rgba(15,23,42,.62);font-size:13px;}

/* Single */
.ssp-single{margin:24px 0;}
.ssp-single__wrap{max-width:1200px;margin:0 auto;padding:0 16px;}
.ssp-single__card{border:1px solid var(--ssp-line);background:rgba(255,255,255,.78);border-radius:28px;box-shadow:0 18px 60px rgba(15,23,42,.08);overflow:hidden;}
.ssp-single__top{display:grid;grid-template-columns:.9fr 1.1fr;gap:16px;padding:18px;}
@media (max-width: 900px){ .ssp-single__top{grid-template-columns:1fr;} }
.ssp-single__img{width:100%;height:360px;object-fit:cover;border-radius:22px;border:1px solid var(--ssp-line);}
.ssp-single__img--placeholder{background:rgba(15,23,42,.04);}
.ssp-single__title{margin:0 0 10px;font-size:34px;line-height:1.1;color:var(--ssp-ink);}
.ssp-single__meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px;}
.ssp-single__clinic{margin:0 0 6px;color:rgba(15,23,42,.80);}
.ssp-single__address{margin:0 0 12px;color:rgba(15,23,42,.62);}
.ssp-single__actions{display:flex;gap:10px;flex-wrap:wrap;margin:12px 0 10px;}
.ssp-single__body{display:grid;grid-template-columns:1.4fr .8fr;gap:16px;padding:18px;border-top:1px solid var(--ssp-line);}
@media (max-width: 1000px){ .ssp-single__body{grid-template-columns:1fr;} }
.ssp-prose{border:1px solid var(--ssp-line);background:rgba(255,255,255,.70);border-radius:22px;padding:16px;}
.ssp-prose p{color:rgba(15,23,42,.76);}
.ssp-side .ssp-card{background:rgba(255,255,255,.70);}
.ssp-list{margin:0;padding-left:18px;color:rgba(15,23,42,.76);}
.ssp-muted{color:rgba(15,23,42,.55);font-size:12px;margin-top:8px;}

/* Home top (clean, no banner) */
.ssp-home-top__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:16px;align-items:start;}
@media (max-width: 1000px){ .ssp-home-top__grid{grid-template-columns:1fr;} }
.ssp-home-top__title{margin:0 0 10px;font-size:44px;line-height:1.05;color:var(--ssp-ink);}
@media (max-width: 700px){ .ssp-home-top__title{font-size:34px;} }
.ssp-home-top__subtitle{margin:0;color:rgba(15,23,42,.72);max-width:66ch;}
.ssp-home-top__ctas{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;}
.ssp-home-top__bullets{display:grid;gap:10px;margin-top:14px;}
.ssp-bullet{border:1px solid var(--ssp-line);background:rgba(255,255,255,.65);border-radius:18px;padding:12px;display:flex;flex-direction:column;gap:6px;}
.ssp-bullet strong{color:var(--ssp-ink);}
.ssp-bullet span{color:rgba(15,23,42,.62);font-size:13px;}
.ssp-panel{border:1px solid var(--ssp-line);background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));border-radius:22px;padding:14px;box-shadow:0 14px 40px rgba(15,23,42,.06);}
.ssp-panel__head{font-weight:900;color:var(--ssp-ink);margin-bottom:10px;}
.ssp-panel__rows{display:grid;gap:10px;margin-bottom:12px;}
.ssp-panel__row{display:flex;gap:10px;align-items:flex-start;border:1px solid var(--ssp-line);background:rgba(255,255,255,.70);border-radius:18px;padding:10px;}
.ssp-panel__row span{width:26px;height:26px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-weight:900;background:rgba(31,191,155,.12);border:1px solid rgba(31,191,155,.22);}
.ssp-panel__row strong{display:block;color:var(--ssp-ink);line-height:1.2;}
.ssp-panel__row small{display:block;color:rgba(15,23,42,.60);font-size:12px;margin-top:2px;}

/* Directory tweaks (FindMyOsteo-inspired, more modern) */

.ssp-search__header{display:flex;flex-direction:column;gap:6px;}
@media (max-width: 600px){
  .ssp-search{padding:14px;}
  .ssp-block{padding:14px;border-radius:22px;}
}
@media (max-width: 900px){
  .ssp-search__panel{position:sticky;top:10px;z-index:5;background:rgba(255,255,255,.92);backdrop-filter: blur(12px);border-radius:18px;padding:12px;border:1px solid var(--ssp-line);}
  .ssp-actions{justify-content:stretch;}
  .ssp-actions .ssp-btn{flex:1;}
}
@media (max-width: 1000px){
  .ssp-map{position:relative;top:auto;}
  .ssp-map__canvas{height:360px;}
}
@media (max-width: 650px){
  .ssp-home-top__ctas .ssp-btn{width:100%;}
  .ssp-hero__ctas .ssp-btn{width:100%;}
  .ssp-card__actions .ssp-btn{flex:1;}
  .ssp-card__actions{display:grid;grid-template-columns:1fr 1fr;}
}
.ssp-card{transition:transform .10s ease, box-shadow .2s ease, border-color .2s ease;}
.ssp-card:hover{transform: translateY(-2px); border-color: rgba(43,124,255,.18); box-shadow:0 18px 55px rgba(15,23,42,.10);}

/* Make room for footer + avoid overlap */
.ssp-home{padding-bottom:56px;}
.ssp-single{padding-bottom:56px;}
.ssp-section{margin-bottom:18px;}

/* Uniform cards */
.ssp-results{align-items:stretch;}
.ssp-card{display:flex;flex-direction:column;min-height:100%;}
.ssp-card__actions{margin-top:auto;}
.ssp-card__meta{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.ssp-card__name{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:44px;}
.ssp-avatar{width:64px;height:64px;}

/* Dark theme (premium navy) */
.ssp-theme-dark{
  --ssp-accent:#22c7a4;        /* mint */
  --ssp-accent2:#3b82f6;       /* blue */
  --ssp-ink:#f8fafc;           /* text */
  --ssp-muted:#cbd5e1;         /* muted */
  --ssp-line:rgba(148,163,184,.22);
  --ssp-surface:rgba(12,18,32,.78);
}
.ssp-theme-dark .ssp-block{
  background: linear-gradient(180deg, rgba(10,16,28,.82), rgba(10,16,28,.66));
  border-color: rgba(148,163,184,.16);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.ssp-theme-dark .ssp-kicker,
.ssp-theme-dark .ssp-trust,
.ssp-theme-dark .ssp-panel,
.ssp-theme-dark .ssp-step,
.ssp-theme-dark .ssp-legal__item,
.ssp-theme-dark .ssp-cat,
.ssp-theme-dark .ssp-pagebtn,
.ssp-theme-dark .ssp-input,
.ssp-theme-dark .ssp-select{
  background: rgba(15,23,42,.55);
  border-color: rgba(148,163,184,.18);
}
.ssp-theme-dark .ssp-input, .ssp-theme-dark .ssp-select{color:var(--ssp-ink);}
.ssp-theme-dark .ssp-input::placeholder{color:rgba(226,232,240,.55);}

/* Buttons: make them POP */
.ssp-theme-dark .ssp-btn{
  background: linear-gradient(135deg, rgba(34,199,164,1), rgba(59,130,246,.90));
  border-color: rgba(34,199,164,.55);
  color:#06101f;
  box-shadow: 0 16px 45px rgba(34,199,164,.18);
}
.ssp-theme-dark .ssp-btn:hover{
  box-shadow: 0 18px 60px rgba(59,130,246,.20);
  transform: translateY(-2px);
}
.ssp-theme-dark .ssp-btn--ghost{
  background: rgba(15,23,42,.35);
  color: var(--ssp-ink);
  border-color: rgba(148,163,184,.26);
  box-shadow:none;
}
.ssp-theme-dark .ssp-btn--ghost:hover{
  border-color: rgba(34,199,164,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

/* Cards: decongest + consistent sizing */
.ssp-theme-dark .ssp-card{
  background: rgba(15,23,42,.55);
  border-color: rgba(148,163,184,.20);
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
}
.ssp-theme-dark .ssp-card__meta{color:rgba(226,232,240,.78);}
.ssp-theme-dark .ssp-card__name{color:var(--ssp-ink); letter-spacing:.2px;}
.ssp-theme-dark .ssp-avatar{background: rgba(148,163,184,.08); border-color: rgba(148,163,184,.18);}

.ssp-theme-dark .ssp-pill{
  background: rgba(59,130,246,.10);
  border-color: rgba(59,130,246,.22);
  color: rgba(226,232,240,.92);
  padding:5px 9px;
}
.ssp-theme-dark .ssp-pill--soft{
  background: rgba(34,199,164,.10);
  border-color: rgba(34,199,164,.22);
}

.ssp-theme-dark .ssp-chip{
  background: rgba(34,199,164,.08);
  border-color: rgba(34,199,164,.22);
  color: rgba(226,232,240,.90);
  padding:5px 9px;
}

/* Reduce vertical noise on cards */
.ssp-card__top{align-items:flex-start;}
.ssp-card__top > div:last-child{min-width:0;}
.ssp-card__meta{line-height:1.45;}
.ssp-badges{gap:6px; margin-top:10px;}
.ssp-card__actions{gap:10px; margin-top:12px;}
.ssp-card__actions .ssp-btn{padding:12px 12px;border-radius:16px;font-weight:900;}
/* Clamp chips: show max 2 rows */
.ssp-badges{max-height:78px; overflow:hidden;}
/* On mobile: show fewer pills to avoid clutter */
@media (max-width:650px){
  .ssp-card{padding:14px;}
  .ssp-card__meta .ssp-pill:nth-child(n+3){display:none;} /* keep city + 1 specialty */
  .ssp-badges{max-height:56px;}
  .ssp-card__actions{grid-template-columns:1fr;display:grid;}
}
/* Make buttons more visible in light theme too */
.ssp-btn{font-weight:900;}

/* Full-width alignment */
.ssp-block{width:100%;}
.ssp-home, .ssp-search{width:100%;}
/* Load more */
.ssp-loadmore-wrap{display:flex;justify-content:center;margin:14px 0 4px;}
.ssp-loadmore{min-width:260px;}
/* Prevent layout collapse */
.ssp-search__content > *{min-width:0;}
.ssp-map__canvas{width:100%;}
/* Better map positioning */
@media (max-width:900px){
  .ssp-search__content{grid-template-columns:1fr;}
  .ssp-map__canvas{height:320px;}
}

@media (max-width:520px){
  .ssp-search__panel{gap:10px;}
  .ssp-btn--xl{padding:12px 14px;}
  .ssp-card__actions{grid-template-columns:1fr;display:grid;}
}

/* Clean theme (minimal, premium clinic) */
.ssp-theme-clean{
  --ssp-accent:#18b89a;
  --ssp-accent2:#2f6fed;
  --ssp-ink:#0b1220;
  --ssp-muted:#475569;
  --ssp-line:rgba(15,23,42,.12);
  --ssp-surface:rgba(255,255,255,.88);
}
.ssp-theme-clean .ssp-block{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.88));
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 18px 60px rgba(15,23,42,.08);
}
.ssp-theme-clean .ssp-btn{
  background: linear-gradient(135deg, rgba(24,184,154,1), rgba(47,111,237,.95));
  border-color: rgba(24,184,154,.45);
  color:#05101f;
  box-shadow: 0 16px 45px rgba(47,111,237,.15);
}
.ssp-theme-clean .ssp-btn--ghost{
  background: rgba(255,255,255,.75);
  color: var(--ssp-ink);
  border-color: rgba(15,23,42,.14);
  box-shadow:none;
}
.ssp-theme-clean .ssp-btn--ghost:hover{border-color: rgba(24,184,154,.35); box-shadow:0 10px 28px rgba(15,23,42,.08);}
.ssp-theme-clean .ssp-input, .ssp-theme-clean .ssp-select{
  background: rgba(255,255,255,.88);
  color: var(--ssp-ink);
}
.ssp-theme-clean .ssp-card{
  background: rgba(255,255,255,.86);
  border-color: rgba(15,23,42,.10);
}
.ssp-theme-clean .ssp-card__meta{color:rgba(15,23,42,.68);}
.ssp-theme-clean .ssp-chip{background:rgba(24,184,154,.08); border-color:rgba(24,184,154,.18);}
.ssp-theme-clean .ssp-pill{background:rgba(47,111,237,.06); border-color:rgba(47,111,237,.14);}
.ssp-theme-clean .ssp-pill--soft{background:rgba(24,184,154,.06); border-color:rgba(24,184,154,.16);}

/* Fix any unreadable text inside sections */
.ssp-theme-clean .ssp-h2, .ssp-theme-clean .ssp-home-top__title, .ssp-theme-clean .ssp-home-top__subtitle,
.ssp-theme-clean .ssp-panel__head, .ssp-theme-clean .ssp-panel__row strong,
.ssp-theme-clean .ssp-step__t, .ssp-theme-clean .ssp-card__name { color: var(--ssp-ink); }
.ssp-theme-clean .ssp-p, .ssp-theme-clean .ssp-panel__row small, .ssp-theme-clean .ssp-step__d{ color: rgba(15,23,42,.66); }

/* Results grid: avoid squish next to map */
@media (max-width: 1280px){ .ssp-results{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width: 900px){ .ssp-results{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width: 650px){ .ssp-results{grid-template-columns:1fr;} }

/* Decongest cards further */
.ssp-card__meta{margin-top:8px;}
.ssp-badges{margin-top:10px;}
.ssp-card__actions{margin-top:14px;}

/* Featured doctors on Home (no map, more space) */
.ssp-featured{padding:22px;}
.ssp-featured__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:14px;}
@media (max-width: 1024px){ .ssp-featured__grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width: 650px){ .ssp-featured__grid{grid-template-columns:1fr;} }
.ssp-featured .ssp-card{padding:16px;border-radius:26px;}
.ssp-featured .ssp-card__actions{display:flex;gap:10px;flex-wrap:wrap;}
.ssp-featured__cta{display:flex;justify-content:center;margin-top:16px;}

/* When map disabled, results full width */
.ssp-search .ssp-search__content{grid-template-columns:1fr;}
.ssp-search .ssp-results{grid-template-columns:repeat(3,minmax(0,1fr));}
@media (max-width:1024px){ .ssp-search .ssp-results{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:650px){ .ssp-search .ssp-results{grid-template-columns:1fr;} }

/* Single profile (beautiful, responsive) */
.ssp-single{padding:24px 0;}
.ssp-single__wrap{max-width:1180px;margin:0 auto;padding:0 18px;}
.ssp-single__card{background:var(--ssp-surface);border:1px solid var(--ssp-line);border-radius:28px;box-shadow:0 18px 60px rgba(15,23,42,.08);padding:18px;}
.ssp-single__top{display:grid;grid-template-columns:160px 1fr;gap:16px;align-items:start;}
.ssp-single__avatar{width:160px;height:160px;border-radius:24px;overflow:hidden;border:1px solid var(--ssp-line);background:rgba(15,23,42,.03);}
.ssp-single__img{width:100%;height:100%;object-fit:cover;display:block;}
.ssp-single__img--placeholder{width:100%;height:100%;background:linear-gradient(135deg, rgba(47,111,237,.10), rgba(24,184,154,.10));}
.ssp-single__title{margin:0;font-size:44px;line-height:1.05;color:var(--ssp-ink);letter-spacing:.2px;}
.ssp-single__meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;}
.ssp-single__clinic,.ssp-single__address{margin:8px 0 0;color:rgba(15,23,42,.70);}
.ssp-single__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.ssp-single__body{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:16px;margin-top:18px;}
.ssp-prose{color:rgba(15,23,42,.78);font-size:16px;line-height:1.65;}
.ssp-prose p{margin:0 0 12px;}
.ssp-prose h3{margin:18px 0 10px;font-size:18px;color:var(--ssp-ink);}
.ssp-prose ul{margin:0 0 12px 18px;}
.ssp-prose li{margin:6px 0;}
.ssp-side .ssp-card{background:rgba(255,255,255,.88);}
@media (max-width: 980px){
  .ssp-single__body{grid-template-columns:1fr;}
  .ssp-side{order:2;}
}
@media (max-width: 640px){
  .ssp-single{padding:16px 0;}
  .ssp-single__card{padding:14px;border-radius:22px;}
  .ssp-single__top{grid-template-columns:96px 1fr;}
  .ssp-single__avatar{width:96px;height:96px;border-radius:18px;}
  .ssp-single__title{font-size:30px;}
  .ssp-single__actions .ssp-btn{width:100%;}
}

/* Join team section */
.ssp-join{padding:22px;}
.ssp-join__grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:14px;align-items:start;}
@media (max-width: 980px){ .ssp-join__grid{grid-template-columns:1fr;} }
.ssp-join__form .wpforms-container{margin:0 !important;}
.ssp-join__form .wpforms-form{background:rgba(255,255,255,.92);border:1px solid rgba(15,23,42,.10);border-radius:22px;padding:14px;box-shadow:0 16px 50px rgba(15,23,42,.06);}
.ssp-join__form input, .ssp-join__form textarea, .ssp-join__form select{
  border-radius:14px !important;
  border:1px solid rgba(15,23,42,.14) !important;
  padding:12px 12px !important;
}
.ssp-join__form .wpforms-submit{
  border-radius:16px !important;
  padding:12px 16px !important;
  font-weight:900 !important;
  background: linear-gradient(135deg, rgba(24,184,154,1), rgba(47,111,237,.95)) !important;
  border: 1px solid rgba(24,184,154,.45) !important;
  color:#05101f !important;
  box-shadow: 0 16px 45px rgba(47,111,237,.15) !important;
}


/* FIX: long description layout (prevent narrow columns / theme interference) */
.ssp-single .ssp-single__body{display:grid !important;}
.ssp-single .ssp-single__body > *{min-width:0 !important;}
.ssp-single .ssp-prose{
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  column-count: initial !important;
  column-gap: initial !important;
  float:none !important;
}
.ssp-single .ssp-prose p, .ssp-single .ssp-prose li{
  max-width:none !important;
  width:100% !important;
  white-space:normal !important;
  word-break:normal;
  overflow-wrap:anywhere;
}
.ssp-single .ssp-prose ul{padding-left:18px;}


/* Mobile/Tablet hardening for Home + Search (no horizontal overflow, buttons stack) */
.ssp-home, .ssp-search, .ssp-single { max-width: 100vw; overflow-x: clip; }
.ssp-home * , .ssp-search * , .ssp-single * { box-sizing: border-box; }

@media (max-width: 820px){
  .ssp-home-top__grid{grid-template-columns:1fr !important;}
  .ssp-home-top__right{margin-top:12px;}
  .ssp-home-top__title{font-size:34px !important; line-height:1.05;}
  .ssp-home-top__subtitle{font-size:15px !important;}
  .ssp-home-top__ctas{display:grid !important; grid-template-columns:1fr !important; gap:10px !important;}
  .ssp-home-top__ctas .ssp-btn{width:100% !important; justify-content:center;}
  .ssp-grid3{grid-template-columns:1fr !important;}
  .ssp-grid4{grid-template-columns:1fr !important;}
  .ssp-block{border-radius:20px;}
  .ssp-section{padding-left:12px !important; padding-right:12px !important;}
  .ssp-block{padding:16px !important;}
}

/* Prevent theme forcing columns / widths on our buttons */
.ssp-btn{max-width:100%; white-space:normal;}


/* Single profile: make long description full-width (contact below, not side-by-side) */
.ssp-single .ssp-single__body{
  grid-template-columns: 1fr !important;
}
.ssp-single .ssp-side{
  order: 2;
  width: 100% !important;
}
.ssp-single .ssp-side .ssp-panel{
  width: 100% !important;
}


/* Testimonials */
.ssp-quotes{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.ssp-quote{background:#fff;border:1px solid rgba(20,30,40,.10);border-radius:18px;padding:16px;box-shadow:0 10px 25px rgba(10,20,30,.06);}
.ssp-quote__text{font-size:15px;line-height:1.55;color:#14202d;}
.ssp-quote__meta{margin-top:10px;font-size:13px;color:#607287;}
@media (max-width: 980px){.ssp-quotes{grid-template-columns:1fr;}}

/* Forced templates: keep content centered and avoid horizontal overflow */

.ssp-forced-page{
  box-sizing:border-box;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:16px clamp(14px, 3vw, 28px) 48px;
  overflow-x:clip;
}
.ssp-forced-page *{ box-sizing:border-box; }
@media (max-width: 600px){
  .ssp-forced-page{ padding:14px 14px 40px; }
  .ssp-home-top__ctas{display:grid !important; grid-template-columns:1fr !important; gap:10px !important;}
  .ssp-home-top__ctas .ssp-btn{width:100% !important; justify-content:center;}
}

/* Forced templates wrapper */

.ssp-forced-page{
  width:100%;
  margin:0;
  padding:0;
  overflow-x:hidden;
}
.ssp-shell{
  box-sizing:border-box;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:16px clamp(14px, 3vw, 28px) 56px;
}
.ssp-shell *{box-sizing:border-box;}
@media (max-width: 700px){
  .ssp-shell{padding:14px 14px 48px;}
  .ssp-block{padding:16px;}
  .ssp-hero{border-radius:22px;}
  .ssp-home-top__cta-row{display:flex;flex-direction:column;gap:12px;}
  .ssp-home-top__cta-row .ssp-btn{width:100%;}
}

/* Home background: keep gaps white and clean */
.ssp-home{background:#fff;border-radius:0;padding:0;}
.ssp-section{background:transparent;}


/* Home Team block */
.ssp-teamblock{padding:22px;}
.ssp-teamgrid{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:center;}
@media (max-width: 980px){ .ssp-teamgrid{grid-template-columns:1fr;} }
.ssp-teamvisual{border:1px solid var(--ssp-line);background:rgba(255,255,255,.55);border-radius:24px;overflow:hidden;box-shadow:0 14px 40px rgba(15,23,42,.06);}
.ssp-teamvisual__img{display:block;width:100%;height:auto;object-fit:cover;}
.ssp-teamcopy .ssp-h2{margin-bottom:10px;}
.ssp-ceocard{margin-top:14px;display:grid;grid-template-columns:110px 1fr;gap:12px;align-items:center;border:1px solid var(--ssp-line);background:rgba(255,255,255,.70);border-radius:22px;padding:12px;box-shadow:0 14px 40px rgba(15,23,42,.06);}
@media (max-width: 520px){ .ssp-ceocard{grid-template-columns:1fr;} }
.ssp-ceocard__img{width:110px;height:110px;border-radius:18px;object-fit:cover;border:1px solid var(--ssp-line);background:#fff;}
@media (max-width: 520px){ .ssp-ceocard__img{width:100%;height:220px;} }
.ssp-ceocard__kicker{display:inline-flex;font-size:12px;color:rgba(15,23,42,.70);border:1px solid var(--ssp-line);background:rgba(255,255,255,.55);padding:6px 10px;border-radius:999px;margin-bottom:8px;}
.ssp-ceocard__name{font-weight:900;color:var(--ssp-ink);font-size:18px;line-height:1.1;}
.ssp-ceocard__role{color:rgba(15,23,42,.60);font-size:12px;margin-top:2px;}
.ssp-ceocard__text{color:rgba(15,23,42,.70);font-size:13px;margin-top:8px;max-width:70ch;}

/* --- Single Professional (Premium) --- */
.ssp-wrap{max-width:1240px;margin:0 auto;padding:18px 16px;}
.ssp-single{padding:20px 0;}
.ssp-single__heroGrid{display:grid;grid-template-columns:140px 1fr;gap:18px;align-items:start;}
.ssp-single__avatar{width:120px;height:120px;border-radius:26px;border:1px solid var(--ssp-line);overflow:hidden;background:linear-gradient(135deg, rgba(31,191,155,.14), rgba(43,124,255,.10));}
.ssp-single__avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.ssp-single__avatarPh{width:100%;height:100%;}
.ssp-chip{display:inline-flex;align-items:center;gap:8px;padding:7px 10px;border-radius:999px;border:1px solid var(--ssp-line);background:rgba(255,255,255,.7);font-size:12px;color:var(--ssp-ink);}
.ssp-chip--ghost{background:rgba(255,255,255,.55);color:var(--ssp-muted);}
.ssp-chip--mint{background:rgba(31,191,155,.10);border-color:rgba(31,191,155,.22);}
.ssp-chip--soft{background:rgba(15,23,42,.03);}
.ssp-single__title{margin:10px 0 10px;font-size:38px;line-height:1.05;color:var(--ssp-ink);letter-spacing:-.02em;}
.ssp-single__chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px;}
.ssp-single__actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.ssp-btn--primary{background:linear-gradient(135deg,var(--ssp-accent),var(--ssp-accent2));color:#071019;border-color:rgba(255,255,255,.0);box-shadow:0 12px 28px rgba(43,124,255,.22);}
.ssp-btn--primary:hover{filter:brightness(1.02);}
.ssp-btn--ghost{background:#fff;border-color:rgba(15,23,42,.14);color:var(--ssp-ink);}
.ssp-btn--ghost2{background:rgba(15,23,42,.02);border-color:rgba(15,23,42,.10);color:var(--ssp-ink);}
.ssp-btn--white{background:#fff;border-color:rgba(255,255,255,.0);color:var(--ssp-ink);}
.ssp-btn--block{width:100%;}
.ssp-single__badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px;}
.ssp-verified{display:inline-flex;align-items:center;gap:8px;margin-left:10px;font-size:14px;color:var(--ssp-ink);background:rgba(31,191,155,.12);border:1px solid rgba(31,191,155,.25);padding:6px 10px;border-radius:999px;vertical-align:middle;}
.ssp-verified__dot{width:8px;height:8px;border-radius:50%;background:var(--ssp-accent2);box-shadow:0 0 0 3px rgba(43,124,255,.18);}
.ssp-h3{margin:0 0 10px;font-size:18px;color:var(--ssp-ink);}
.ssp-list{margin:0;padding-left:18px;color:var(--ssp-muted);}
.ssp-list li{margin:6px 0;}
.ssp-note{margin-top:10px;padding:10px 12px;border-radius:14px;background:rgba(31,191,155,.08);border:1px solid rgba(31,191,155,.18);color:var(--ssp-muted);font-size:13px;}
.ssp-contact{display:flex;flex-direction:column;gap:8px;}
.ssp-contact a{color:var(--ssp-ink);text-decoration:none;border-bottom:1px dashed rgba(15,23,42,.18);width:fit-content}
.ssp-contact a:hover{border-bottom-color:rgba(43,124,255,.55);}
.ssp-single__journey{position:relative;overflow:hidden;}
.ssp-single__journeyHead{max-width:72ch;}
.ssp-p--small{font-size:13px;color:rgba(71,85,105,.92);}
.ssp-single__journeyWave{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;margin-top:18px;padding-top:14px;position:relative;}
.ssp-single__journeyWave:before{content:'';position:absolute;left:0;right:0;top:2px;height:120px;background:radial-gradient(closest-side, rgba(31,191,155,.16), rgba(31,191,155,0)) , radial-gradient(closest-side, rgba(43,124,255,.10), rgba(43,124,255,0));opacity:.9;filter:blur(10px);}
.ssp-step{position:relative;z-index:1;border:1px solid var(--ssp-line);border-radius:18px;background:rgba(255,255,255,.66);padding:12px;}
.ssp-step__n{width:34px;height:34px;border-radius:999px;background:rgba(31,191,155,.12);border:1px solid rgba(31,191,155,.22);display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--ssp-ink);}
.ssp-step__t{margin-top:10px;font-weight:700;color:var(--ssp-ink);}
.ssp-step__d{margin-top:6px;font-size:12px;color:var(--ssp-muted);}
.ssp-single__grid{display:grid;grid-template-columns:1.35fr .65fr;gap:18px;align-items:start;}
.ssp-prose{padding:22px;}
.ssp-prose__hr{height:1px;background:var(--ssp-line);margin:16px 0;}
.ssp-prose__content{color:var(--ssp-muted);}
.ssp-prose__content h2,.ssp-prose__content h3{color:var(--ssp-ink);}
.ssp-prose__content ul{padding-left:20px;}
.ssp-single__programsHead{max-width:76ch;margin-bottom:12px;}
.ssp-cards{display:grid;gap:12px;}
.ssp-cards--3{grid-template-columns:repeat(3,minmax(0,1fr));}
.ssp-card{border:1px solid var(--ssp-line);border-radius:22px;background:rgba(255,255,255,.70);padding:16px;display:flex;flex-direction:column;gap:10px;}
.ssp-card__t{font-weight:800;color:var(--ssp-ink);}
.ssp-card__d{font-size:13px;color:var(--ssp-muted);}
.ssp-card--accent{background:linear-gradient(135deg, rgba(31,191,155,.16), rgba(43,124,255,.14));border-color:rgba(43,124,255,.18);}
.ssp-blur{filter:blur(8px);user-select:none;}
.ssp-single--blur .ssp-single__title,.ssp-single--blur .ssp-single__avatar{position:relative;}
/* Responsive */
@media (max-width: 980px){
  .ssp-single__heroGrid{grid-template-columns:110px 1fr;}
  .ssp-single__title{font-size:32px;}
  .ssp-single__grid{grid-template-columns:1fr; }
  .ssp-cards--3{grid-template-columns:1fr;}
  .ssp-single__journeyWave{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width: 560px){
  .ssp-wrap{padding:14px 12px;}
  .ssp-single__heroGrid{grid-template-columns:1fr; }
  .ssp-single__avatar{width:96px;height:96px;}
  .ssp-single__title{font-size:28px;}
  .ssp-single__journeyWave{grid-template-columns:repeat(2,minmax(0,1fr));}
}


/* Blur identity (name + photo) */
.ssp-is-blurred .ssp-card__name,
.ssp-is-blurred .ssp-card__title,
.ssp-is-blurred .ssp-chip,
.ssp-blurTxt,
.ssp-blur {
  filter: blur(7px);
}

.ssp-is-blurred .ssp-avatar img,
.ssp-single__avatar.ssp-blur img {
  filter: blur(10px);
}

.ssp-is-blurred .ssp-card__name,
.ssp-blurTxt,
.ssp-blur {
  user-select: none;
}

/* Verified badge */
.ssp-verifiedBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  border-radius:999px;
  font-size:12px;
  margin-left:6px;
  background: rgba(34,197,94,0.15);
  color: #16a34a;
  border:1px solid rgba(34,197,94,0.35);
  vertical-align:middle;
}



/* Profile journey redesign */
.ssp-single__journey{
  position:relative;
  overflow:hidden;
}
.ssp-single__journey::before{
  content:"";
  position:absolute;
  inset:auto -6% 14px -6%;
  height:170px;
  background:
    radial-gradient(120px 50px at 12% 35%, rgba(31,191,155,.10), transparent 60%),
    radial-gradient(120px 50px at 50% 38%, rgba(43,124,255,.09), transparent 60%),
    radial-gradient(120px 50px at 88% 35%, rgba(31,191,155,.10), transparent 60%);
  pointer-events:none;
}
.ssp-single__journeyHead{position:relative;z-index:2;margin-bottom:18px;}
.ssp-single__journeyWave{
  position:relative;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
  align-items:start;
  z-index:2;
}
.ssp-single__journeyWave::before{
  content:"";
  position:absolute;
  left:3%;
  right:3%;
  top:42px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(31,191,155,.9), rgba(43,124,255,.88));
  box-shadow:0 0 0 8px rgba(31,191,155,.04);
}
.ssp-single__journeyWave .ssp-step{
  position:relative;
  background:rgba(255,255,255,.72);
  border:1px solid var(--ssp-line);
  border-radius:22px;
  padding:62px 14px 18px;
  min-height:172px;
}
.ssp-single__journeyWave .ssp-step__n{
  position:absolute;
  top:16px;
  left:18px;
  width:46px;
  height:46px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#15a39a;
  background:#eef9f7;
  border:3px solid #8ed9d0;
  box-shadow:0 0 0 6px rgba(255,255,255,.85);
}
.ssp-single__journeyWave .ssp-step:last-child .ssp-step__n{
  color:#2b7cff;
  border-color:#8ebeff;
  background:#eef5ff;
}
.ssp-single__journeyWave .ssp-step__t{font-size:18px;font-weight:900;color:var(--ssp-ink);line-height:1.15;margin-bottom:8px;}
.ssp-single__journeyWave .ssp-step__d{font-size:14px;color:var(--ssp-muted);line-height:1.45;}
@media (max-width: 1100px){
  .ssp-single__journeyWave{grid-template-columns:repeat(3,minmax(0,1fr));}
  .ssp-single__journeyWave::before{display:none;}
}
@media (max-width: 680px){
  .ssp-single__journeyWave{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 520px){
  .ssp-single__journeyWave{grid-template-columns:1fr;}
  .ssp-single__journeyWave .ssp-step{min-height:auto;}
}

/* Right column how-it-works */

.ssp-single__side{display:grid;gap:14px;align-content:start;}
.ssp-single__how .ssp-p{margin-bottom:12px;}
.ssp-howList{margin:0;padding-left:18px;color:var(--ssp-muted);display:grid;gap:10px;}
.ssp-howList li{line-height:1.5;}
.ssp-howList strong{color:var(--ssp-ink);}

/* Consultation block */
.ssp-single__consultGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:center;
}
.ssp-single__consultVisual{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--ssp-line);
  background:rgba(255,255,255,.65);
}
.ssp-single__consultVisual img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
.ssp-single__consultCopy .ssp-h2{margin-bottom:10px;}
.ssp-single__ceoCard{
  margin-top:16px;
  display:grid;
  grid-template-columns:92px 1fr auto;
  gap:14px;
  align-items:center;
  padding:12px;
  border-radius:20px;
  border:1px solid var(--ssp-line);
  background:rgba(255,255,255,.72);
}
.ssp-single__ceoImg{
  width:92px;
  height:92px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--ssp-line);
}
.ssp-single__ceoName{font-weight:900;font-size:20px;line-height:1.1;color:var(--ssp-ink);}
.ssp-single__ceoRole{font-size:13px;color:var(--ssp-muted);margin-top:4px;}
@media (max-width: 980px){
  .ssp-single__consultGrid{grid-template-columns:1fr;}
}
@media (max-width: 640px){
  .ssp-single__ceoCard{grid-template-columns:80px 1fr; }
  .ssp-single__ceoCard .ssp-btn{grid-column:1 / -1;}
  .ssp-single__ceoImg{width:80px;height:80px;}
}

.ssp-badgeCorner{
position:absolute;
top:6px;
right:6px;
background:#fff;
border-radius:50%;
width:26px;
height:26px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
box-shadow:0 2px 6px rgba(0,0,0,.15);
}
.ssp-badgeCorner--grey{color:#2f2f2f;}
.ssp-badgeCorner--green{color:#22a652;}

.ssp-networkLine{
display:flex;
align-items:center;
gap:6px;
font-weight:600;
margin-top:6px;
}
.ssp-badgeGrey{color:#2f2f2f;}
.ssp-badgeGreen{color:#22a652;}


/* Profile hero meta layout fix */
.ssp-single__hero .ssp-single__meta{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  gap:10px !important;
  margin-bottom:0 !important;
}
.ssp-single__hero .ssp-single__chips,
.ssp-single__hero .ssp-single__badges,
.ssp-single__hero .ssp-single__actions{
  width:100%;
}
.ssp-single__hero .ssp-single__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:4px;
}
.ssp-single__hero .ssp-single__actions .ssp-btn{
  min-width:220px;
}
@media (max-width: 720px){
  .ssp-single__hero .ssp-single__actions .ssp-btn{
    width:100%;
    min-width:0;
  }
}


/* Home consultation section redesign */
.ssp-teamblock{padding:22px;display:grid;gap:18px;}
.ssp-teamvisual--wide{width:100%;}
.ssp-teamvisual--wide .ssp-teamvisual__img{width:100%;display:block;aspect-ratio:16/6;object-fit:cover;}
.ssp-teamexpert{display:grid;grid-template-columns:320px 1fr;gap:22px;align-items:center;}
.ssp-teamexpert__media{border:1px solid var(--ssp-line);background:rgba(255,255,255,.65);border-radius:24px;overflow:hidden;box-shadow:0 14px 40px rgba(15,23,42,.06);}
.ssp-teamexpert__img{display:block;width:100%;height:100%;aspect-ratio:4/5;object-fit:cover;}
.ssp-teamexpert__content{display:grid;gap:12px;align-content:start;}
.ssp-teamperson{display:grid;gap:4px;padding-top:4px;}
@media (max-width: 980px){
  .ssp-teamexpert{grid-template-columns:1fr;}
  .ssp-teamexpert__img{aspect-ratio:16/9;}
}
@media (max-width: 640px){
  .ssp-teamvisual--wide .ssp-teamvisual__img{aspect-ratio:4/3;}
}

/* Profile hero actions below metadata */
.ssp-single__hero .ssp-single__meta{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  gap:10px !important;
}
.ssp-single__hero .ssp-single__chips,
.ssp-single__hero .ssp-networkLine,
.ssp-single__hero .ssp-single__badges,
.ssp-single__hero .ssp-single__actions{
  width:100%;
}
.ssp-single__hero .ssp-single__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:4px;
}
.ssp-single__hero .ssp-single__actions .ssp-btn{min-width:220px;}
@media (max-width:720px){
  .ssp-single__hero .ssp-single__actions .ssp-btn{width:100%;min-width:0;}
}



/* Appended home sections inside normal pages: keep them below content and responsive */
.ssp-page-after-content{
  display:block;
  clear:both;
  float:none;
  width:100%;
  max-width:100%;
  margin:32px 0 clamp(36px, 6vw, 84px);
  padding:0;
  overflow:visible;
  height:auto;
  min-height:0;
}
.ssp-page-after-content .ssp-home,
.ssp-page-after-content .ssp-home-sections,
.ssp-page-after-content .ssp-section,
.ssp-page-after-content .ssp-block{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.ssp-page-after-content .ssp-home-top__grid,
.ssp-page-after-content .ssp-teamgrid,
.ssp-page-after-content .ssp-teamexpert,
.ssp-page-after-content .ssp-single__consultGrid{
  width:100%;
  max-width:100%;
}
.ssp-page-after-content .ssp-home-top__title,
.ssp-page-after-content .ssp-home-top__subtitle,
.ssp-page-after-content .ssp-p,
.ssp-page-after-content .ssp-h2{
  overflow-wrap:anywhere;
  word-break:normal;
}
@media (max-width: 1024px){
  .ssp-page-after-content{
    margin-top:24px;
  }
  .ssp-page-after-content .ssp-home-top__grid,
  .ssp-page-after-content .ssp-teamgrid,
  .ssp-page-after-content .ssp-teamexpert{
    grid-template-columns:1fr !important;
  }
}
@media (max-width: 767px){
  .ssp-page-after-content{
    margin-top:20px;
  }
  .ssp-page-after-content .ssp-block{
    padding:16px !important;
    border-radius:22px;
  }
  .ssp-page-after-content .ssp-home-top__title{
    font-size:30px !important;
    line-height:1.08 !important;
  }
  .ssp-page-after-content .ssp-home-top__subtitle,
  .ssp-page-after-content .ssp-p{
    font-size:15px !important;
    line-height:1.55 !important;
  }
  .ssp-page-after-content .ssp-btn{
    width:100%;
  }
  .ssp-page-after-content .ssp-panel__rows,
  .ssp-page-after-content .ssp-grid3,
  .ssp-page-after-content .ssp-steps__grid{
    grid-template-columns:1fr !important;
  }
}


/* ===== Scoped responsive safety layer for SSP-rendered content only =====
   Keep this plugin from changing global theme/header/footer layout. */
.ssp-theme-clean,
.ssp-theme-clean *,
.ssp-theme-clean *::before,
.ssp-theme-clean *::after{box-sizing:border-box;}
.ssp-theme-clean{width:100%;max-width:100%;clear:both;}
.ssp-theme-clean img,
.ssp-theme-clean video,
.ssp-theme-clean iframe,
.ssp-theme-clean canvas,
.ssp-theme-clean svg{max-width:100%;height:auto;}
.ssp-theme-clean table{max-width:100%;}
.ssp-theme-clean h1,
.ssp-theme-clean h2,
.ssp-theme-clean h3,
.ssp-theme-clean h4,
.ssp-theme-clean h5,
.ssp-theme-clean h6,
.ssp-theme-clean p,
.ssp-theme-clean li,
.ssp-theme-clean a,
.ssp-theme-clean span{overflow-wrap:break-word;word-break:normal;}
@media (max-width:1024px){
  .ssp-theme-clean table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch;}
}

/* Concept sections: home + profile */
.ssp-conceptblock{display:grid;gap:18px;}
.ssp-conceptblock__head{display:grid;gap:10px;}
.ssp-conceptgrid,
.ssp-ecosystemGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.ssp-conceptcard,
.ssp-ecosystemCard{
  border:1px solid var(--ssp-line);
  background:rgba(255,255,255,.72);
  border-radius:22px;
  padding:18px;
  box-shadow:0 14px 40px rgba(15,23,42,.05);
}
.ssp-conceptcard__title,
.ssp-ecosystemCard__title{
  font-size:20px;
  line-height:1.15;
  font-weight:900;
  color:var(--ssp-ink);
  margin-bottom:10px;
}
.ssp-conceptcard__text{color:var(--ssp-muted);line-height:1.6;}
.ssp-pillars{display:flex;flex-wrap:wrap;gap:10px;}
.ssp-conceptnote{
  border:1px solid rgba(43,124,255,.14);
  background:linear-gradient(135deg, rgba(31,191,155,.08), rgba(43,124,255,.06));
  border-radius:18px;
  padding:14px 16px;
  color:var(--ssp-muted);
  line-height:1.55;
}
.ssp-single__ecosystemHead{display:grid;gap:8px;margin-bottom:16px;}
.ssp-ecosystemList{margin:0;padding-left:18px;display:grid;gap:10px;color:var(--ssp-muted);line-height:1.55;}
@media (max-width: 980px){
  .ssp-conceptgrid,
  .ssp-ecosystemGrid{grid-template-columns:1fr;}
}

/* Fixed opinions cards */
.ssp-opinions-block{background:transparent;border:0;box-shadow:none;padding:0;}
.ssp-opinions-block .ssp-h2{margin-bottom:8px;}
.ssp-opinions-block .ssp-p{margin-bottom:18px;max-width:72ch;}
.ssp-opinions-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch;}
@media (max-width: 980px){.ssp-opinions-grid{grid-template-columns:1fr;}}
.ssp-opinion-card{display:flex;flex-direction:column;background:#f8f4f2;border:1px solid rgba(20,30,40,.10);border-radius:18px;overflow:hidden;box-shadow:0 8px 24px rgba(10,20,30,.05);}
.ssp-opinion-card__image-wrap{aspect-ratio: 16 / 11;background:#eae3de;overflow:hidden;}
.ssp-opinion-card__image{width:100%;height:100%;object-fit:cover;display:block;}
.ssp-opinion-card__body{padding:22px 24px 26px;display:flex;flex-direction:column;gap:16px;}
.ssp-opinion-card__meta{font-size:14px;line-height:1.3;color:#534b46;font-weight:500;}
.ssp-opinion-card__title{margin:0;font-size:22px;line-height:1.12;color:#332d28;font-weight:500;letter-spacing:-.02em;}
.ssp-opinion-card__text{color:#4b4743;font-size:16px;line-height:1.75;}
.ssp-opinion-card__text p{margin:0 0 14px;}
.ssp-opinion-card__text p:last-child{margin-bottom:0;}


/* Especialidades SaaS page */
.ssp-specialties-page{display:flex;flex-direction:column;gap:18px;padding-bottom:56px;position:relative;overflow:hidden;isolation:isolate;}
.ssp-specialties-hero{position:relative;overflow:hidden;background:#fff;}
.ssp-specialties-hero__bg{position:absolute;inset:0;background:radial-gradient(900px 420px at 8% 10%, rgba(31,191,155,.14), transparent 56%),radial-gradient(900px 520px at 92% 18%, rgba(43,124,255,.14), transparent 58%),linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,.96));}
.ssp-specialties-hero__content{position:relative;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);gap:18px;align-items:stretch;padding:10px;}
@media (max-width: 980px){.ssp-specialties-hero__content{grid-template-columns:1fr;}}
.ssp-specialties-hero__title{margin:0 0 12px;font-size:52px;line-height:1.02;color:var(--ssp-ink);max-width:11ch;}
@media (max-width: 700px){.ssp-specialties-hero__title{font-size:36px;max-width:none;}}
.ssp-specialties-hero__subtitle{margin:0;color:rgba(15,23,42,.72);max-width:65ch;font-size:17px;}
.ssp-specialties-hero__signals{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;}
.ssp-specialties-hero__ctas{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px;}
@media (max-width: 640px){.ssp-specialties-hero__ctas .ssp-btn{width:100%;}}
.ssp-specialties-highlight{border:1px solid rgba(43,124,255,.12);border-radius:26px;background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,252,.92));padding:20px;box-shadow:0 18px 50px rgba(15,23,42,.07);display:flex;flex-direction:column;justify-content:space-between;}
.ssp-specialties-highlight__eyebrow{display:inline-flex;align-self:flex-start;padding:8px 12px;border-radius:999px;background:rgba(43,124,255,.08);border:1px solid rgba(43,124,255,.16);font-size:12px;font-weight:800;color:var(--ssp-ink);margin-bottom:12px;}
.ssp-specialties-highlight h2{margin:0 0 10px;font-size:28px;line-height:1.08;color:var(--ssp-ink);}
.ssp-specialties-highlight p{margin:0;color:rgba(15,23,42,.66);}
.ssp-specialties-highlight__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px;}
@media (max-width: 640px){.ssp-specialties-highlight__stats{grid-template-columns:1fr;}}
.ssp-specialties-stat{padding:14px;border-radius:20px;border:1px solid var(--ssp-line);background:#fff;}
.ssp-specialties-stat strong{display:block;font-size:24px;line-height:1;color:var(--ssp-ink);margin-bottom:6px;}
.ssp-specialties-stat span{display:block;color:rgba(15,23,42,.62);font-size:13px;}
.ssp-specialties-benefits{background:#fff;}
.ssp-specialties-advantages{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px;}
@media (max-width: 1100px){.ssp-specialties-advantages{grid-template-columns:repeat(2,1fr);}}
@media (max-width: 700px){.ssp-specialties-advantages{grid-template-columns:1fr;}}
.ssp-specialties-advcard{padding:18px;border-radius:22px;border:1px solid var(--ssp-line);background:linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,.95));box-shadow:0 10px 30px rgba(15,23,42,.04);}
.ssp-specialties-advcard h3{margin:0 0 8px;font-size:18px;line-height:1.15;color:var(--ssp-ink);}
.ssp-specialties-advcard p{margin:0;color:rgba(15,23,42,.64);font-size:14px;}
.ssp-specialties-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:16px;}
@media (max-width: 1180px){.ssp-specialties-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width: 740px){.ssp-specialties-grid{grid-template-columns:1fr;}}
.ssp-specialties-card{display:flex;flex-direction:column;gap:16px;padding:18px;border-radius:24px;border:1px solid var(--ssp-line);background:linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,.92));box-shadow:0 14px 38px rgba(15,23,42,.05);transition:transform .12s ease, box-shadow .2s ease, border-color .2s ease;}
.ssp-specialties-card:hover{transform:translateY(-3px);border-color:rgba(43,124,255,.18);box-shadow:0 22px 50px rgba(15,23,42,.10);}
.ssp-specialties-card__head{display:flex;gap:14px;align-items:flex-start;}
.ssp-specialties-card__head h3{margin:0 0 4px;font-size:20px;line-height:1.12;color:var(--ssp-ink);}
.ssp-specialties-card__head p{margin:0;color:rgba(15,23,42,.58);font-size:13px;}
.ssp-specialties-card__icon{width:54px;height:54px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg, rgba(31,191,155,.14), rgba(43,124,255,.10));border:1px solid rgba(31,191,155,.16);font-size:24px;flex:0 0 auto;}
.ssp-specialties-tags{display:flex;flex-wrap:wrap;gap:8px;}
.ssp-specialties-card__cta{margin-top:auto;}
.ssp-specialties-coverage{background:#fff;}
.ssp-specialties-coverage__grid{display:grid;grid-template-columns:1fr minmax(300px,.8fr);gap:16px;align-items:center;}
@media (max-width: 920px){.ssp-specialties-coverage__grid{grid-template-columns:1fr;}}
.ssp-specialties-coverage__panel{border:1px solid rgba(31,191,155,.18);border-radius:24px;padding:20px;background:linear-gradient(135deg, rgba(31,191,155,.09), rgba(43,124,255,.07));box-shadow:0 14px 42px rgba(15,23,42,.06);}
.ssp-specialties-coverage__mapline{font-size:20px;line-height:1.35;font-weight:800;color:var(--ssp-ink);margin-bottom:16px;}


/* Especialidades en fichas visibles con separación generosa */
.ssp-specialties-network .ssp-block + .ssp-block{margin-top:30px;}
.ssp-specialties-grid--independent{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:18px !important;}
@media (max-width: 1180px){.ssp-specialties-grid--independent{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}}
@media (max-width: 900px){.ssp-specialties-grid--independent{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media (max-width: 640px){.ssp-specialties-grid--independent{grid-template-columns:1fr !important;}}
.ssp-specialties-card--single{min-height:260px;justify-content:space-between;padding:22px;border-radius:26px;background:linear-gradient(180deg,#fff 0%,rgba(248,250,252,.96) 100%);}
.ssp-specialties-card__eyebrow{display:inline-flex;align-self:flex-start;padding:7px 11px;border-radius:999px;background:rgba(31,191,155,.10);border:1px solid rgba(31,191,155,.18);color:var(--ssp-ink);font-size:12px;font-weight:800;letter-spacing:.01em;}
.ssp-specialties-card__single-title{margin:4px 0 10px;font-size:24px;line-height:1.1;color:var(--ssp-ink);min-height:2.2em;}
.ssp-specialties-card__single-copy{margin:0;color:rgba(15,23,42,.66);font-size:14px;line-height:1.55;max-width:30ch;}
.ssp-specialties-card--single .ssp-specialties-card__cta{margin-top:18px;}


.ssp-specialties-grid--independent > .ssp-specialties-card{width:100%;max-width:none;margin:0;}
.ssp-section-head{display:flex;flex-direction:column;gap:8px;margin-bottom:16px;}
.ssp-specialties-concept__panel{padding:24px;border:1px solid var(--ssp-line);border-radius:28px;background:linear-gradient(180deg,#fff 0%,rgba(248,250,252,.95) 100%);box-shadow:0 14px 40px rgba(15,23,42,.05);}
.ssp-specialties-concept__panel .ssp-p + .ssp-p{margin-top:14px;}
.ssp-specialties-grid--categories{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
@media (max-width: 1100px){.ssp-specialties-grid--categories{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 700px){.ssp-specialties-grid--categories{grid-template-columns:1fr;}}
.ssp-specialties-card--category{min-height:100%;gap:14px;padding:22px;}
.ssp-specialties-card--category .ssp-specialties-card__single-title{min-height:0;font-size:22px;margin:0;}
.ssp-specialties-card--category .ssp-specialties-card__single-copy{max-width:none;}
.ssp-specialties-category-lines{display:flex;flex-direction:column;gap:10px;margin-top:4px;}
.ssp-specialties-category-line{padding:12px 14px;border-radius:18px;background:#fff;border:1px solid rgba(43,124,255,.10);color:rgba(15,23,42,.78);font-size:14px;line-height:1.5;box-shadow:0 8px 24px rgba(15,23,42,.03);}
.ssp-specialties-faq__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
@media (max-width: 900px){.ssp-specialties-faq__grid{grid-template-columns:1fr;}}
.ssp-specialties-faq__item{padding:22px;border-radius:24px;border:1px solid var(--ssp-line);background:linear-gradient(180deg,#fff 0%,rgba(248,250,252,.96) 100%);box-shadow:0 12px 34px rgba(15,23,42,.04);}
.ssp-specialties-faq__item h3{margin:0 0 10px;font-size:19px;line-height:1.25;color:var(--ssp-ink);}
.ssp-specialties-faq__item p{margin:0;color:rgba(15,23,42,.66);font-size:14px;line-height:1.6;}

/* About / Nosotros */
.ssp-about-ceo{display:grid;grid-template-columns:120px minmax(0,1fr);gap:22px;align-items:start}
.ssp-about-ceo__img{width:120px;height:120px;object-fit:cover;border-radius:24px;display:block;box-shadow:0 10px 30px rgba(15,23,42,.12)}
@media (max-width: 767px){.ssp-about-ceo{grid-template-columns:1fr}.ssp-about-ceo__img{width:108px;height:108px}}


/* About v2 */
.ssp-about-hero__grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);gap:34px;align-items:center}
.ssp-about-hero__intro{padding:8px 8px 8px 0;max-width:760px}
.ssp-about-hero__title{font-size:clamp(52px,5.6vw,78px);line-height:.98;letter-spacing:-.04em;max-width:8.5ch}
.ssp-about-hero__subtitle{max-width:760px;font-size:clamp(18px,1.55vw,24px);line-height:1.6}
.ssp-about-leader-visual{display:flex;flex-direction:column;gap:18px;padding:18px;border:1px solid rgba(148,163,184,.22);border-radius:32px;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(246,248,251,.94));box-shadow:0 18px 48px rgba(15,23,42,.07)}
.ssp-about-leader-visual__media{width:100%}
.ssp-about-leader-visual__img{width:100%;aspect-ratio:4/4.8;object-fit:cover;display:block;border-radius:24px}
.ssp-about-leader-visual__meta{display:flex;flex-direction:column;gap:8px;padding:2px 6px 6px}
.ssp-about-leader-visual__meta h2{font-size:clamp(28px,2.4vw,40px);line-height:1.02;margin:0;color:#0f172a;word-break:normal;overflow-wrap:break-word}
.ssp-about-leader-card__caption{font-size:14px;color:#64748b;margin-bottom:0}
.ssp-about-ceo-story__grid{display:grid;grid-template-columns:minmax(220px,.38fr) minmax(0,1fr);gap:30px;align-items:start}
.ssp-about-ceo-story__intro{padding-right:8px}
.ssp-about-ceo-story__intro .ssp-h2{margin:8px 0 10px;font-size:clamp(34px,3vw,48px);line-height:1.02}
.ssp-about-ceo-story__content{padding:28px 30px;border:1px solid rgba(148,163,184,.22);border-radius:28px;background:linear-gradient(180deg,#fff 0%,rgba(248,250,252,.96) 100%);box-shadow:0 14px 40px rgba(15,23,42,.05)}
.ssp-about-ceo-story__content .ssp-p{max-width:none;font-size:clamp(18px,1.35vw,22px);line-height:1.75;color:#4b5563}
.ssp-about-ceo-story__content .ssp-p + .ssp-p{margin-top:16px}
.ssp-about-benefits__grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.ssp-about-model__grid{display:grid;grid-template-columns:minmax(320px,.75fr) minmax(0,1fr);gap:30px;align-items:stretch}
.ssp-about-model__media img{width:100%;height:100%;min-height:420px;object-fit:cover;border-radius:30px;display:block;box-shadow:0 18px 48px rgba(15,23,42,.09)}
.ssp-about-model__content{padding:10px 2px}
.ssp-about-model__content .ssp-p{max-width:920px}
.ssp-about-coverage-note{margin-top:24px;padding:22px 24px;border:1px solid rgba(148,163,184,.22);border-radius:24px;background:#fff}
.ssp-about-coverage-note strong{display:block;font-size:20px;color:#0f172a;margin-bottom:8px}
.ssp-about-coverage-note p{margin:0;color:#4b5563;line-height:1.7}
.ssp-specialties-concept__layout{display:grid;grid-template-columns:minmax(260px,.42fr) minmax(0,1fr);gap:28px;align-items:stretch}
.ssp-specialties-concept__media img{width:100%;height:100%;min-height:360px;object-fit:cover;border-radius:28px;display:block;box-shadow:0 18px 48px rgba(15,23,42,.09)}
.ssp-specialties-concept__panel .ssp-p{max-width:none}
@media (max-width: 1100px){.ssp-about-benefits__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ssp-about-hero__grid,.ssp-about-model__grid,.ssp-specialties-concept__layout,.ssp-about-ceo-story__grid{grid-template-columns:1fr}.ssp-about-hero__title{max-width:11ch}.ssp-about-leader-visual__img{aspect-ratio:4/3;min-height:320px}}
@media (max-width: 767px){.ssp-about-benefits__grid{grid-template-columns:1fr}.ssp-about-hero__title{font-size:clamp(42px,12vw,58px);max-width:9ch}.ssp-about-ceo-story__content{padding:22px}.ssp-about-ceo-story__content .ssp-p{font-size:18px}.ssp-about-leader-visual__meta h2{font-size:30px}}


/* About v3 */
.ssp-about-hero__cta-row{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-top:26px}
.ssp-about-hero__microcopy{font-size:14px;color:#64748b;line-height:1.6}
.ssp-about-ecosystem .ssp-specialties-concept__layout{display:grid;grid-template-columns:minmax(0,.88fr) minmax(320px,1.12fr);gap:28px;align-items:start}
.ssp-about-ecosystem__panel{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.ssp-about-ecosystem__item{padding:22px 22px;border:1px solid rgba(148,163,184,.22);border-radius:24px;background:linear-gradient(180deg,#fff 0%,rgba(248,250,252,.98) 100%);box-shadow:0 12px 34px rgba(15,23,42,.04);font-size:16px;line-height:1.65;color:#334155}
.ssp-about-ecosystem__item:last-child{grid-column:1/-1}
.ssp-about-proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:24px}
.ssp-about-proof-card{padding:18px 18px;border-radius:22px;background:#fff;border:1px solid rgba(148,163,184,.18)}
.ssp-about-proof-card strong{display:block;font-size:18px;line-height:1.2;color:#0f172a;margin-bottom:6px}
.ssp-about-proof-card span{display:block;font-size:14px;line-height:1.55;color:#64748b}
.ssp-about-phases .ssp-search__header{margin-bottom:26px}
.ssp-about-phase-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:18px;align-items:stretch}
.ssp-about-phase-card{position:relative;padding:24px 22px;border-radius:28px;background:linear-gradient(180deg,#fff 0%,rgba(248,250,252,.98) 100%);border:1px solid rgba(148,163,184,.22);box-shadow:0 16px 42px rgba(15,23,42,.05);min-height:100%}
.ssp-about-phase-card:nth-child(1),.ssp-about-phase-card:nth-child(2),.ssp-about-phase-card:nth-child(3){grid-column:span 4}
.ssp-about-phase-card:nth-child(4),.ssp-about-phase-card:nth-child(5){grid-column:span 6}
.ssp-about-phase-card__index{font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:#94a3b8;margin-bottom:14px}
.ssp-about-phase-card h3{margin:0 0 12px;font-size:clamp(24px,1.85vw,32px);line-height:1.08;letter-spacing:-.02em;color:#0f172a;max-width:12ch;text-wrap:balance}
.ssp-about-phase-card p{margin:0;font-size:15px;line-height:1.72;color:#475569;max-width:62ch}
.ssp-about-faq__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.ssp-about-faq__card{padding:24px 24px;border-radius:26px;background:#fff;border:1px solid rgba(148,163,184,.22);box-shadow:0 12px 34px rgba(15,23,42,.04)}
.ssp-about-faq__card h3{margin:0 0 10px;font-size:20px;line-height:1.28;color:#0f172a}
.ssp-about-faq__card p{margin:0;font-size:15px;line-height:1.72;color:#475569}
@media (max-width: 1200px){.ssp-about-phase-card:nth-child(1),.ssp-about-phase-card:nth-child(2),.ssp-about-phase-card:nth-child(3),.ssp-about-phase-card:nth-child(4),.ssp-about-phase-card:nth-child(5){grid-column:span 6}}
@media (max-width: 1100px){.ssp-about-ecosystem .ssp-specialties-concept__layout,.ssp-about-proof-grid{grid-template-columns:1fr}.ssp-about-ecosystem__panel{grid-template-columns:1fr 1fr}}
@media (max-width: 767px){.ssp-about-hero__cta-row{align-items:flex-start}.ssp-about-ecosystem__panel,.ssp-about-faq__grid{grid-template-columns:1fr}.ssp-about-phase-grid{grid-template-columns:1fr}.ssp-about-phase-card:nth-child(1),.ssp-about-phase-card:nth-child(2),.ssp-about-phase-card:nth-child(3),.ssp-about-phase-card:nth-child(4),.ssp-about-phase-card:nth-child(5){grid-column:auto}.ssp-about-phase-card{padding:22px 20px}.ssp-about-faq__card{padding:22px 20px}}


.ssp-patient-hero-card{align-self:stretch}
.ssp-patient-experience__grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.ssp-patient-note{margin-top:22px}
.ssp-patient-records{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0 14px}
.ssp-patient-support__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.ssp-patient-support__closing{margin-top:14px}
.ssp-patient-benefits__list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.ssp-patient-benefit{padding:18px 20px;border-radius:22px;background:#fff;border:1px solid rgba(148,163,184,.22);box-shadow:0 12px 34px rgba(15,23,42,.04);font-size:16px;line-height:1.6;color:#334155}
.ssp-patient-cta{max-width:820px;margin:0 auto;text-align:center;padding:6px 0}
.ssp-patient-final-cta{padding-top:0}
@media (max-width: 1100px){.ssp-patient-experience__grid,.ssp-patient-support__grid,.ssp-patient-benefits__list{grid-template-columns:1fr 1fr}}
@media (max-width: 767px){.ssp-patient-experience__grid,.ssp-patient-support__grid,.ssp-patient-benefits__list{grid-template-columns:1fr}}


.ssp-networkteam-hero-card .ssp-about-leader-visual__img{aspect-ratio:4/3;min-height:360px;object-position:center}
.ssp-networkteam-model-grid,.ssp-networkteam-specialists-grid,.ssp-networkteam-diff-grid,.ssp-networkteam-benefits-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.ssp-networkteam-levels-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.ssp-networkteam-proof-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.ssp-networkteam-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch}
.ssp-networkteam-step-card h3{max-width:none}
.ssp-networkteam-step-card p{max-width:none}
.ssp-networkteam-goals p{margin:0;color:#4b5563;line-height:1.7}
@media (max-width: 1200px){.ssp-networkteam-proof-grid,.ssp-networkteam-steps{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 767px){.ssp-networkteam-model-grid,.ssp-networkteam-specialists-grid,.ssp-networkteam-diff-grid,.ssp-networkteam-benefits-grid,.ssp-networkteam-levels-grid,.ssp-networkteam-proof-grid,.ssp-networkteam-steps{grid-template-columns:1fr}}

.ssp-patient-hero__visual{position:relative;overflow:hidden;border-radius:34px;min-height:540px;background:#e2e8f0;box-shadow:0 28px 80px rgba(15,23,42,.14)}
.ssp-patient-hero__visual img{width:100%;height:100%;display:block;object-fit:cover;object-position:center}
.ssp-patient-hero__visual::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,23,42,.04),rgba(15,23,42,.16) 55%,rgba(15,23,42,.38))}
.ssp-patient-hero__badge{position:absolute;left:22px;right:22px;bottom:22px;z-index:2;display:inline-flex;align-items:center;justify-content:center;padding:16px 20px;border-radius:22px;background:rgba(15,23,42,.56);backdrop-filter:blur(8px);color:#fff;font-size:18px;line-height:1.4;text-align:center;border:1px solid rgba(255,255,255,.18)}
.ssp-patient-hero__commitment{margin-top:26px}
.ssp-patient-hero__commitment .ssp-patient-hero-card{max-width:none}
@media (max-width: 1100px){.ssp-patient-hero__visual{min-height:420px}}
@media (max-width: 767px){.ssp-patient-hero__visual{min-height:340px;border-radius:26px}.ssp-patient-hero__badge{left:14px;right:14px;bottom:14px;padding:14px 16px;font-size:16px}}
.ssp-specialties-grid--overview{margin-bottom:18px}
.ssp-specialties-showcase{display:flex;flex-direction:column;gap:28px;margin-top:26px}
.ssp-specialties-feature{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(320px,.98fr);gap:22px;align-items:stretch;padding:22px;border-radius:30px;border:1px solid var(--ssp-line);background:linear-gradient(180deg,#fff 0%,rgba(248,250,252,.96) 100%);box-shadow:0 18px 46px rgba(15,23,42,.06)}
.ssp-specialties-feature--reverse{grid-template-columns:minmax(320px,.98fr) minmax(0,1.02fr)}
.ssp-specialties-feature--reverse .ssp-specialties-feature__media{order:2}
.ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:1}
.ssp-specialties-feature__media img{width:100%;height:100%;min-height:340px;object-fit:cover;border-radius:24px;display:block;box-shadow:0 16px 42px rgba(15,23,42,.10)}
.ssp-specialties-feature__content{display:flex;flex-direction:column;gap:12px}
.ssp-specialties-feature__eyebrow{display:inline-flex;align-self:flex-start;padding:8px 12px;border-radius:999px;background:rgba(31,191,155,.10);border:1px solid rgba(31,191,155,.18);color:var(--ssp-ink);font-size:12px;font-weight:800;letter-spacing:.01em}
.ssp-specialties-feature__title{margin:0;font-size:34px;line-height:1.05;color:var(--ssp-ink)}
.ssp-specialties-feature__intro{margin:0;font-size:17px;line-height:1.6;color:var(--ssp-ink);font-weight:700}
.ssp-specialties-feature__body{margin:0;color:rgba(15,23,42,.68);font-size:15px;line-height:1.72}
.ssp-specialties-feature__panels{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:14px;margin-top:4px}
.ssp-specialties-feature__panel{padding:18px;border-radius:22px;background:#fff;border:1px solid rgba(43,124,255,.10);box-shadow:0 10px 28px rgba(15,23,42,.04)}
.ssp-specialties-feature__panel h4{margin:0 0 10px;font-size:18px;line-height:1.2;color:var(--ssp-ink)}
.ssp-specialties-feature__panel p{margin:0;color:rgba(15,23,42,.66);font-size:14px;line-height:1.65}
.ssp-specialties-feature__panel .ssp-specialties-category-lines{gap:8px}
.ssp-specialties-feature__panel .ssp-specialties-category-line{padding:10px 12px;border-radius:16px;font-size:13px;line-height:1.45}
@media (max-width: 1100px){.ssp-specialties-feature,.ssp-specialties-feature--reverse{grid-template-columns:1fr}.ssp-specialties-feature--reverse .ssp-specialties-feature__media,.ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:initial}.ssp-specialties-feature__panels{grid-template-columns:1fr}.ssp-specialties-feature__title{font-size:30px}}
@media (max-width: 700px){.ssp-specialties-showcase{gap:20px}.ssp-specialties-feature{padding:16px;border-radius:24px}.ssp-specialties-feature__media img{min-height:240px;border-radius:18px}.ssp-specialties-feature__title{font-size:26px}.ssp-specialties-feature__intro{font-size:16px}.ssp-specialties-feature__panel{padding:14px}}


/* === Specialties showcase visual fix: full images + less cramped columns === */
.ssp-specialties-showcase{display:grid;gap:28px}
.ssp-specialties-feature,
.ssp-specialties-feature--reverse{
  grid-template-columns:1fr;
  gap:0;
  padding:18px;
  overflow:hidden;
}
.ssp-specialties-feature--reverse .ssp-specialties-feature__media,
.ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:initial}
.ssp-specialties-feature__media{
  padding:0;
  border-radius:26px;
  background:#f7f1e6;
  overflow:hidden;
}
.ssp-specialties-feature__media img{
  width:100%;
  height:auto;
  min-height:0;
  object-fit:contain;
  object-position:center top;
  border-radius:0;
  box-shadow:none;
  display:block;
}
.ssp-specialties-feature__content{
  padding:22px 8px 6px;
  gap:14px;
}
.ssp-specialties-feature__title{
  font-size:clamp(28px,3vw,42px);
  line-height:1.04;
  max-width:18ch;
}
.ssp-specialties-feature__intro{
  max-width:70ch;
}
.ssp-specialties-feature__body{
  max-width:78ch;
}
.ssp-specialties-feature__panels{
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:18px;
  margin-top:8px;
}
.ssp-specialties-feature__panel{
  min-width:0;
}
.ssp-specialties-feature__panel h4{
  font-size:20px;
}
.ssp-specialties-feature__panel p,
.ssp-specialties-feature__panel .ssp-specialties-category-line{
  font-size:14px;
  line-height:1.6;
}
@media (max-width: 1100px){
  .ssp-specialties-feature,
  .ssp-specialties-feature--reverse{
    padding:16px;
  }
  .ssp-specialties-feature__content{
    padding:18px 4px 2px;
  }
  .ssp-specialties-feature__panels{
    grid-template-columns:1fr;
  }
}
@media (max-width: 700px){
  .ssp-specialties-showcase{gap:22px}
  .ssp-specialties-feature,
  .ssp-specialties-feature--reverse{
    padding:12px;
    border-radius:22px;
  }
  .ssp-specialties-feature__media{
    border-radius:18px;
  }
  .ssp-specialties-feature__content{
    padding:16px 2px 0;
    gap:12px;
  }
  .ssp-specialties-feature__title{
    max-width:none;
    font-size:24px;
  }
  .ssp-specialties-feature__eyebrow{
    font-size:11px;
    padding:7px 10px;
  }
  .ssp-specialties-feature__panel{
    padding:14px;
    border-radius:18px;
  }
}


/* Funnels / premium pricing cards */
.ssp-funnels .ssp-grid3{
  align-items:stretch;
  gap:18px;
}
.ssp-funnels .ssp-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height:100%;
  padding:28px 26px 24px;
  border-radius:30px;
  border:1px solid rgba(15,23,42,.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.92) 100%);
  box-shadow:
    0 18px 60px rgba(15,23,42,.07),
    inset 0 1px 0 rgba(255,255,255,.85);
  overflow:hidden;
}
.ssp-funnels .ssp-card::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, rgba(31,191,155,0), rgba(31,191,155,.18), rgba(59,130,246,.18), rgba(59,130,246,0));
  pointer-events:none;
}
.ssp-funnels .ssp-card:hover{
  transform:translateY(-4px);
  border-color:rgba(59,130,246,.18);
  box-shadow:
    0 24px 70px rgba(15,23,42,.11),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.ssp-funnels .ssp-card--glow{
  border-color:rgba(31,191,155,.22);
  background:
    radial-gradient(circle at top left, rgba(31,191,155,.09), transparent 36%),
    radial-gradient(circle at top right, rgba(59,130,246,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,250,255,.94) 100%);
  box-shadow:
    0 26px 80px rgba(15,23,42,.12),
    0 0 0 1px rgba(31,191,155,.08);
}
.ssp-funnels .ssp-card__k{
  display:inline-flex;
  align-self:flex-start;
  align-items:center;
  min-height:34px;
  margin:0;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.08);
  color:rgba(15,23,42,.72);
  font-size:13px;
  font-weight:800;
  letter-spacing:.01em;
}
.ssp-funnels .ssp-card--glow .ssp-card__k{
  background:linear-gradient(90deg, rgba(31,191,155,.12), rgba(59,130,246,.12));
  border-color:rgba(31,191,155,.18);
  color:var(--ssp-ink);
}
.ssp-funnels .ssp-card__name{
  margin:0;
  min-height:auto;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.ssp-funnels .ssp-card__meta{
  display:block;
  min-height:0;
  margin:0;
  -webkit-line-clamp:unset;
  -webkit-box-orient:unset;
  overflow:visible;
  color:rgba(15,23,42,.70);
  font-size:15px;
  line-height:1.65;
}
.ssp-funnels .ssp-card__checklist{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
  color:rgba(15,23,42,.78);
  font-size:15px;
  line-height:1.45;
}
.ssp-funnels .ssp-card__meta + .ssp-card__checklist{
  margin-top:-4px;
}
.ssp-funnels .ssp-card__checklist li{
  position:relative;
  display:block;
  width:100%;
  padding-left:30px;
  white-space:normal;
}
.ssp-funnels .ssp-card__checklist li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(15,23,42,.04);
  color:var(--ssp-ink);
  font-size:13px;
  font-weight:900;
}
.ssp-funnels .ssp-card .ssp-btn{
  margin-top:auto;
  min-height:68px;
  border-radius:22px;
  font-size:16px;
  font-weight:900;
  box-shadow:none;
}
.ssp-funnels .ssp-card .ssp-btn--ghost{
  background:rgba(255,255,255,.88);
  border-color:rgba(15,23,42,.10);
}
.ssp-funnels .ssp-card .ssp-btn--ghost:hover{
  border-color:rgba(59,130,246,.22);
  box-shadow:0 14px 36px rgba(15,23,42,.08);
}
@media (max-width: 1100px){
  .ssp-funnels .ssp-grid3{gap:14px;}
  .ssp-funnels .ssp-card{
    padding:24px 22px 22px;
    border-radius:26px;
  }
  .ssp-funnels .ssp-card__name{font-size:22px;}
}
@media (max-width: 900px){
  .ssp-funnels .ssp-card__checklist{gap:8px;}
}
@media (max-width: 650px){
  .ssp-funnels .ssp-card{
    padding:20px 18px 18px;
    gap:16px;
    border-radius:24px;
  }
  .ssp-funnels .ssp-card__name{font-size:20px;}
  .ssp-funnels .ssp-card__meta,
  .ssp-funnels .ssp-card__checklist{font-size:14px;}
  .ssp-funnels .ssp-card .ssp-btn{
    min-height:60px;
    border-radius:20px;
  }
}

/* Clinical Network Team: keep step cards perfectly symmetric */
.ssp-networkteam-steps > *{
  min-width:0;
  width:100%;
}
.ssp-networkteam-step-card{
  display:flex;
  flex-direction:column;
  width:100%;
  min-height:100%;
  box-sizing:border-box;
}

/* Prevent horizontal clipping when legacy layouts are wider than viewport */
body .site,
body .site-content,
body .content-area,
body .entry-content,
body .elementor,
body .elementor-section-wrap,
body .elementor-widget-wrap,
body .woocommerce-page,
body .woocommerce{
  min-width:0;
}


/* Shop landing + premium WooCommerce */
.ssp-shop-landing{padding-top:24px;}
.ssp-shop-hero{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr);gap:24px;align-items:stretch;margin-bottom:28px;}
.ssp-shop-hero__panel .ssp-panel{height:100%;border-radius:28px;padding:24px;background:linear-gradient(180deg,#fff,rgba(248,250,252,.96));box-shadow:0 18px 50px rgba(15,23,42,.08);}
.ssp-shop-category-grid .ssp-shop-card{overflow:hidden;padding:0;display:flex;flex-direction:column;}
.ssp-shop-card__media{aspect-ratio:16/10;overflow:hidden;background:#f8fafc;}
.ssp-shop-card__media img{width:100%;height:100%;object-fit:cover;display:block;}
.ssp-shop-card__body{padding:22px;display:flex;flex-direction:column;gap:14px;min-height:100%;}
.ssp-shop-story{margin:28px 0;}
.ssp-woo-shortcode .products{margin-top:8px;}
.woocommerce div.product .product_title{font-size:clamp(30px,4vw,46px);line-height:1.05;letter-spacing:-.03em;}
.woocommerce div.product .summary{background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,250,252,.98));border:1px solid rgba(15,23,42,.06);border-radius:30px;padding:28px;box-shadow:0 18px 50px rgba(15,23,42,.08);}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,.woocommerce div.product div.images img{border-radius:28px;overflow:hidden;}
.ssp-product-hero{margin:0 0 16px;}
.ssp-product-hero__title{margin:8px 0 10px;font-size:clamp(24px,3vw,34px);line-height:1.1;letter-spacing:-.03em;}
.ssp-product-hero__text{margin:0;color:rgba(15,23,42,.72);font-size:15px;line-height:1.65;}
.ssp-product-trust{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 0;}
.woocommerce div.product .price{font-size:32px;font-weight:800;color:#0f172a !important;}
.woocommerce div.product form.cart .button,.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{border-radius:18px;padding:.95em 1.3em;font-weight:800;box-shadow:0 12px 30px rgba(15,23,42,.08);}
.woocommerce-tabs,.ssp-product-premium-grid,.ssp-cross-sells{margin-top:28px;}
.ssp-product-premium-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.ssp-product-panel{background:#fff;border:1px solid rgba(15,23,42,.06);border-radius:24px;padding:22px;box-shadow:0 12px 30px rgba(15,23,42,.05);}
.ssp-product-panel h3{margin:0 0 10px;font-size:20px;line-height:1.15;}
.ssp-product-panel p{margin:0;color:rgba(15,23,42,.72);line-height:1.65;}
.ssp-cross-sells ul.products li.product{border:1px solid rgba(15,23,42,.06);border-radius:24px;padding:14px !important;box-shadow:0 12px 30px rgba(15,23,42,.05);background:#fff;}
.ssp-cross-sells ul.products li.product img{border-radius:18px;}
@media (max-width: 980px){.ssp-shop-hero{grid-template-columns:1fr;}.ssp-product-premium-grid{grid-template-columns:1fr;}}

/* v1.6.2 shop + product corrections */
.ssp-grid4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.ssp-mini-card{padding:22px;}
.ssp-shop-pillars{margin:0 0 28px;}
.ssp-shop-steps,.ssp-shop-buckets{margin-top:12px;}
.ssp-step-card{position:relative;padding-top:56px;}
.ssp-step-card__n{position:absolute;top:18px;left:18px;width:28px;height:28px;border-radius:999px;display:grid;place-items:center;font-weight:800;background:rgba(23,180,176,.12);color:#0f172a;}
.ssp-bucket-card .ssp-woo-shortcode{margin-top:8px;}
.ssp-woo-shortcode--highlight .products li.product{border:1px solid rgba(15,23,42,.06);border-radius:24px;padding:14px !important;box-shadow:0 12px 30px rgba(15,23,42,.05);background:#fff;}
.ssp-woo-shortcode--highlight .products li.product img{border-radius:18px;}
.ssp-shop-legal-note{margin-top:28px;padding:24px;border:1px solid rgba(15,23,42,.06);border-radius:28px;background:linear-gradient(180deg,#fff,rgba(248,250,252,.96));}
.woocommerce.single-product div.product{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:24px;align-items:start;}
.woocommerce.single-product div.product div.images,
.woocommerce.single-product div.product div.summary{float:none !important;width:auto !important;min-width:0;max-width:none;}
.woocommerce.single-product div.product .summary > *{max-width:100%;}
.woocommerce.single-product div.product form.cart table.variations,
.woocommerce.single-product div.product form.cart .variations td,
.woocommerce.single-product div.product form.cart .variations th{width:100%;display:block;}
.woocommerce.single-product div.product .summary .price,
.woocommerce.single-product div.product .product_title,
.woocommerce.single-product div.product .woocommerce-product-details__short-description,
.woocommerce.single-product div.product .product_meta{writing-mode:horizontal-tb !important;transform:none !important;white-space:normal !important;word-break:normal;overflow-wrap:anywhere;}
.woocommerce.single-product div.product .summary .button{white-space:normal;}
@media (max-width: 1200px){
  .ssp-grid4{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 980px){
  .woocommerce.single-product div.product{grid-template-columns:1fr;}
}
@media (max-width: 700px){
  .ssp-grid4{grid-template-columns:1fr;}
}


/* v1.6.5 shop landing cleanup */
.ssp-shop-products-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:14px;}
.ssp-shop-product-card{display:flex;flex-direction:column;border:1px solid rgba(15,23,42,.08);border-radius:22px;background:#fff;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.05);min-width:0;}
.ssp-shop-product-card__media{display:flex;align-items:center;justify-content:center;min-height:170px;padding:16px;background:#f8fafc;text-decoration:none;}
.ssp-shop-product-card__media img{width:100%;height:138px;object-fit:cover;border-radius:16px;display:block;}
.ssp-shop-product-card__media--placeholder{background:linear-gradient(180deg,#ffffff,#f4f7fb);padding:20px;}
.ssp-shop-product-card__media--placeholder span{display:flex;align-items:center;justify-content:center;width:100%;min-height:138px;border:1px solid rgba(15,23,42,.08);border-radius:16px;padding:18px;text-align:center;font-size:20px;line-height:1.25;font-weight:800;letter-spacing:-.02em;color:#0f172a;overflow-wrap:anywhere;word-break:break-word;}
.ssp-shop-product-card__body{padding:16px 16px 18px;display:flex;flex-direction:column;gap:10px;min-width:0;}
.ssp-shop-product-card__title,.ssp-shop-product-card__title a{margin:0;font-size:18px;line-height:1.3;color:#0f172a;text-decoration:none;overflow-wrap:anywhere;word-break:break-word;}
.ssp-shop-product-card__price{font-size:22px;font-weight:800;color:#ef4444;}
.ssp-shop-product-card__price .amount{color:#ef4444;}
.ssp-shop-product-card__button{align-self:flex-start;margin-top:auto;}
.ssp-bucket-card{padding:22px;}
.ssp-bucket-card .ssp-card__meta{margin-bottom:6px;}
.ssp-bucket-card .ssp-woo-shortcode{margin-top:14px;}
.ssp-woo-shortcode--highlight .products{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.ssp-woo-shortcode--highlight .products::before,.ssp-woo-shortcode--highlight .products::after{display:none !important;}
.ssp-woo-shortcode--highlight .products li.product{width:auto !important;float:none !important;margin:0 !important;}
@media (max-width:1100px){.ssp-shop-products-grid,.ssp-woo-shortcode--highlight .products{grid-template-columns:1fr 1fr;}}
@media (max-width:700px){.ssp-shop-products-grid,.ssp-woo-shortcode--highlight .products{grid-template-columns:1fr;}}


/* v1.6.8 shop brands */
.ssp-grid5{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:20px}
.ssp-brand-grid{margin:18px 0 34px}
.ssp-brand-card{padding:24px;display:flex;flex-direction:column;gap:12px;min-height:190px}
.ssp-brand-card__eyebrow{display:inline-flex;align-self:flex-start;padding:6px 10px;border:1px solid rgba(16,24,40,.12);border-radius:999px;font-size:12px;font-weight:700;letter-spacing:.02em;color:#667085;background:#fff}
.ssp-brand-buckets{margin-top:10px}
.ssp-shop-products-grid--compact{grid-template-columns:repeat(3,minmax(0,1fr));}
@media (max-width: 1200px){.ssp-grid5{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width: 820px){.ssp-grid5,.ssp-shop-products-grid--compact{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){.ssp-grid5,.ssp-shop-products-grid--compact{grid-template-columns:1fr;}}


/* v1.6.9 professional shop polish */
.ssp-shop-landing > * + *{margin-top:30px;}
.ssp-section-heading{margin:0 0 18px;}
.ssp-shop-pillars,.ssp-shop-story,.ssp-shop-legal-note,.ssp-brand-grid,.ssp-brand-buckets,.ssp-woo-shortcode--highlight{margin-top:30px;margin-bottom:30px;}
.ssp-brand-buckets{row-gap:30px;}
.ssp-bucket-card .ssp-woo-shortcode{margin-top:18px;}
.ssp-brand-more{display:flex;justify-content:flex-start;margin-top:18px;}
.ssp-shop-products-grid--compact{grid-template-columns:repeat(5,minmax(0,1fr));gap:18px;}
.ssp-shop-product-card{border-radius:24px;box-shadow:0 14px 34px rgba(15,23,42,.05);}
.ssp-shop-product-card__body{padding:18px;}
.ssp-shop-product-card__title,.ssp-shop-product-card__title a{font-size:16px;line-height:1.35;}
.ssp-shop-product-card__media{min-height:190px;}
.ssp-shop-product-card__media img{height:150px;}
.ssp-woo-shortcode--highlight .products{row-gap:20px;}
@media (max-width:1400px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(4,minmax(0,1fr));}}
@media (max-width:1180px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:820px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:560px){.ssp-shop-products-grid--compact{grid-template-columns:1fr;}}


/* v1.6.10 shop spacing */
.ssp-shop-landing > * + * { margin-top: 30px; }
.ssp-section-heading { margin-bottom: 18px; }
.ssp-brand-more { margin-top: 14px; }
.ssp-shop-products-grid--compact { grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 768px) {
  .ssp-shop-products-grid--compact { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1200px) {
  .ssp-shop-products-grid--compact { grid-template-columns: repeat(3, minmax(0,1fr)); }
}


/* Clinical Network Team layout fixes */
.ssp-networkteam-page .ssp-about-ecosystem__item:last-child{
  grid-column:auto;
}
.ssp-networkteam-page .ssp-about-proof-card__list{
  margin:10px 0 0;
  padding-left:18px;
}
.ssp-networkteam-page .ssp-about-proof-card__list li{
  margin:0 0 8px;
  font-size:14px;
  line-height:1.55;
  color:#64748b;
}
.ssp-networkteam-page .ssp-about-proof-card__list li:last-child{
  margin-bottom:0;
}
.ssp-networkteam-steps{
  grid-template-columns:1fr;
}
.ssp-networkteam-step-card{
  grid-column:auto !important;
}


/* === v1.6.28 Specialties containment: protect theme header/footer and avoid footer overlap === */
.ssp-specialties-page{
  display:flow-root;
  width:100%;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  clear:both;
  contain:layout paint;
  overflow:clip;
  padding-left:clamp(16px,2vw,24px);
  padding-right:clamp(16px,2vw,24px);
  padding-bottom:72px;
}
@supports not (overflow: clip){
  .ssp-specialties-page{overflow:hidden;}
}
.ssp-specialties-page::after{content:"";display:block;clear:both;}
.ssp-specialties-page .ssp-block,
.ssp-specialties-page section,
.ssp-specialties-page article,
.ssp-specialties-page div{min-width:0;}
.ssp-specialties-page .ssp-block{position:relative;z-index:0;width:100%;max-width:100%;clear:both;}
.ssp-specialties-page .ssp-specialties-hero__bg,
.ssp-specialties-page [class*="__bg"]{pointer-events:none;}
.ssp-specialties-page img{display:block;max-width:100%;height:auto;}
.ssp-specialties-page .ssp-specialties-feature__media,
.ssp-specialties-page .ssp-specialties-concept__media{min-width:0;max-width:100%;}
.ssp-specialties-page .ssp-specialties-feature__media img,
.ssp-specialties-page .ssp-specialties-concept__media img{width:100%;max-width:100%;}
.ssp-specialties-page .ssp-specialties-grid,
.ssp-specialties-page .ssp-specialties-showcase,
.ssp-specialties-page .ssp-specialties-feature,
.ssp-specialties-page .ssp-specialties-feature__panels,
.ssp-specialties-page .ssp-specialties-faq__grid,
.ssp-specialties-page .ssp-specialties-coverage__grid,
.ssp-specialties-page .ssp-specialties-concept__layout{width:100%;max-width:100%;}
@media (max-width:1024px){
  .ssp-specialties-page{max-width:100%;padding-left:16px;padding-right:16px;}
  .ssp-specialties-page .ssp-specialties-hero__content,
  .ssp-specialties-page .ssp-specialties-concept__layout,
  .ssp-specialties-page .ssp-specialties-coverage__grid,
  .ssp-specialties-page .ssp-specialties-feature,
  .ssp-specialties-page .ssp-specialties-feature--reverse{grid-template-columns:1fr !important;}
}
@media (max-width:767px){
  .ssp-specialties-page{padding-left:14px;padding-right:14px;padding-bottom:64px;}
}

/* === v1.6.29 Responsive + scroll safety for all SSP plugin pages === */
.ssp-theme-clean,.ssp-home,.ssp-search,.ssp-single,.ssp-specialties-page,.ssp-forced-page,.ssp-shop-landing,.ssp-professionals-page,.ssp-networkteam-page,.ssp-about-page,.ssp-patient-page{box-sizing:border-box;width:100%;max-width:100%;min-width:0;clear:both;display:flow-root;position:relative;z-index:0;isolation:isolate;overflow-x:clip;overflow-y:visible;touch-action:pan-y;-webkit-overflow-scrolling:touch;padding-bottom:max(56px,env(safe-area-inset-bottom));}
@supports not (overflow:clip){.ssp-theme-clean,.ssp-home,.ssp-search,.ssp-single,.ssp-specialties-page,.ssp-forced-page,.ssp-shop-landing,.ssp-professionals-page,.ssp-networkteam-page,.ssp-about-page,.ssp-patient-page{overflow-x:hidden;overflow-y:visible;}}
.ssp-theme-clean *,.ssp-theme-clean *::before,.ssp-theme-clean *::after{box-sizing:border-box;max-width:100%;min-width:0;}
.ssp-theme-clean img,.ssp-theme-clean video,.ssp-theme-clean svg,.ssp-theme-clean canvas,.ssp-theme-clean iframe{max-width:100%;}
.ssp-theme-clean img,.ssp-theme-clean video{height:auto;}
.ssp-theme-clean iframe{display:block;width:100%;}
.ssp-theme-clean p,.ssp-theme-clean li,.ssp-theme-clean h1,.ssp-theme-clean h2,.ssp-theme-clean h3,.ssp-theme-clean h4,.ssp-theme-clean h5,.ssp-theme-clean h6,.ssp-theme-clean a,.ssp-theme-clean span{overflow-wrap:break-word;word-break:normal;}
.ssp-theme-clean::after{content:"";display:block;clear:both;height:1px;}
@media (hover:none) and (pointer:coarse){.ssp-theme-clean,.ssp-theme-clean .ssp-block,.ssp-theme-clean section,.ssp-theme-clean article,.ssp-theme-clean [class*="__content"],.ssp-theme-clean [class*="__body"],.ssp-theme-clean [class*="__panel"]{overflow-y:visible!important;-webkit-overflow-scrolling:touch;}.ssp-map,.ssp-search__panel{position:static!important;top:auto!important;}}
@media (max-width:1024px){.ssp-theme-clean{padding-left:clamp(14px,3vw,22px);padding-right:clamp(14px,3vw,22px);}.ssp-shell{max-width:100%;padding-left:0;padding-right:0;}.ssp-theme-clean .ssp-home-top__grid,.ssp-theme-clean .ssp-grid2,.ssp-theme-clean .ssp-grid3,.ssp-theme-clean .ssp-grid4,.ssp-theme-clean .ssp-search__layout,.ssp-theme-clean .ssp-single__body,.ssp-theme-clean .ssp-shop-hero,.ssp-theme-clean .ssp-shop-category-grid,.ssp-theme-clean .ssp-shop-products-grid,.ssp-theme-clean .ssp-about-hero__grid,.ssp-theme-clean .ssp-about-model__grid,.ssp-theme-clean .ssp-about-ceo-story__grid,.ssp-theme-clean .ssp-about-benefits__grid,.ssp-theme-clean .ssp-about-proof__grid,.ssp-theme-clean .ssp-about-ecosystem__grid,.ssp-theme-clean .ssp-specialties-grid,.ssp-theme-clean .ssp-specialties-feature,.ssp-theme-clean .ssp-specialties-feature--reverse,.ssp-theme-clean .ssp-specialties-feature__panels,.ssp-theme-clean .ssp-specialties-coverage__grid,.ssp-theme-clean .ssp-specialties-faq__grid,.ssp-theme-clean .ssp-specialties-concept__layout,.ssp-theme-clean .ssp-patient-hero,.ssp-theme-clean .ssp-networkteam-steps,.ssp-theme-clean .ssp-professionals-grid{grid-template-columns:1fr!important;}.ssp-theme-clean .ssp-map__canvas{height:min(420px,70vh);}}
@media (max-width:767px){.ssp-theme-clean,.ssp-home,.ssp-search,.ssp-single,.ssp-specialties-page,.ssp-forced-page,.ssp-shop-landing,.ssp-professionals-page,.ssp-networkteam-page,.ssp-about-page,.ssp-patient-page{padding-left:14px!important;padding-right:14px!important;padding-bottom:max(64px,env(safe-area-inset-bottom))!important;overflow-x:hidden;overflow-y:visible;}.ssp-theme-clean .ssp-block,.ssp-theme-clean .ssp-panel,.ssp-theme-clean .ssp-card,.ssp-theme-clean .ssp-specialties-card,.ssp-theme-clean .ssp-specialties-feature,.ssp-theme-clean .ssp-about-phase-card,.ssp-theme-clean .ssp-shop-product-card{border-radius:20px;min-height:auto!important;}.ssp-theme-clean .ssp-btn,.ssp-theme-clean button,.ssp-theme-clean input,.ssp-theme-clean select,.ssp-theme-clean textarea{max-width:100%;}.ssp-theme-clean .ssp-btn,.ssp-theme-clean .ssp-home-top__ctas .ssp-btn,.ssp-theme-clean .ssp-specialties-hero__actions .ssp-btn{width:100%;justify-content:center;text-align:center;}.ssp-theme-clean .ssp-home-top__ctas,.ssp-theme-clean .ssp-specialties-hero__actions,.ssp-theme-clean .ssp-actions,.ssp-theme-clean .ssp-search__controls{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;}.ssp-theme-clean .ssp-specialties-feature__media img,.ssp-theme-clean .ssp-specialties-concept__media img,.ssp-theme-clean .ssp-about-model__media img,.ssp-theme-clean .ssp-patient-hero__visual,.ssp-theme-clean .ssp-networkteam-hero-card .ssp-about-leader-visual__img{min-height:0!important;height:auto!important;max-height:none!important;}.ssp-theme-clean .ssp-map__canvas{height:360px;}.ssp-theme-clean .ssp-specialties-card__single-title,.ssp-theme-clean .ssp-card__name{min-height:0!important;}}
.ssp-theme-clean+footer,.ssp-theme-clean+.site-footer,.ssp-theme-clean+#colophon,.ssp-home+footer,.ssp-specialties-page+footer,.ssp-forced-page+footer{clear:both;position:relative;z-index:1;}

/* v1.6.30 - Frontend containment for visitors/cached pages.
   Prevent SSP sections from being clipped and keep the theme footer after plugin content. */
body.ssp-has-plugin-content .ssp-theme-clean,
body.ssp-has-plugin-content .ssp-page-after-content{
  display:block !important;
  position:relative !important;
  clear:both !important;
  float:none !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  min-height:0 !important;
  overflow-x:clip !important;
  overflow-y:visible !important;
  z-index:1;
}
body.ssp-has-plugin-content .ssp-theme-clean::after,
body.ssp-has-plugin-content .ssp-page-after-content::after{
  content:"";
  display:block;
  clear:both;
  width:100%;
  height:1px;
}
body.ssp-has-plugin-content .ssp-specialties-page,
body.ssp-has-plugin-content .ssp-home,
body.ssp-has-plugin-content .ssp-search,
body.ssp-has-plugin-content .ssp-single,
body.ssp-has-plugin-content .ssp-shop-landing{
  margin-bottom:clamp(32px, 5vw, 72px) !important;
  padding-bottom:clamp(32px, 5vw, 72px) !important;
  contain:layout;
}
body.ssp-has-plugin-content main,
body.ssp-has-plugin-content #main,
body.ssp-has-plugin-content .site-main,
body.ssp-has-plugin-content .site-content,
body.ssp-has-plugin-content .content-area,
body.ssp-has-plugin-content .entry-content,
body.ssp-has-plugin-content .elementor-location-single,
body.ssp-has-plugin-content .elementor-location-archive{
  display:flow-root;
  clear:both;
  min-width:0;
  overflow:visible;
}
body.ssp-has-plugin-content footer,
body.ssp-has-plugin-content .site-footer,
body.ssp-has-plugin-content #colophon,
body.ssp-has-plugin-content .elementor-location-footer{
  position:relative !important;
  clear:both !important;
  float:none !important;
  z-index:2;
}
@media (max-width:1024px){
  body.ssp-has-plugin-content .ssp-theme-clean,
  body.ssp-has-plugin-content .ssp-page-after-content{
    overflow-x:hidden !important;
    touch-action:pan-y;
  }
  body.ssp-has-plugin-content .ssp-map,
  body.ssp-has-plugin-content .ssp-search__panel{
    position:relative !important;
    top:auto !important;
  }
}


/* === v1.6.31 Visitor/footer hard fix ===
   Elementor/cached visitor pages can render the footer over SSP content if the theme
   applies absolute/sticky/footer z-index rules or if cached DOM order differs. Keep SSP in normal flow. */
body.ssp-has-plugin-content .ssp-theme-clean,
body.ssp-has-plugin-content .ssp-home,
body.ssp-has-plugin-content .ssp-search,
body.ssp-has-plugin-content .ssp-single,
body.ssp-has-plugin-content .ssp-specialties-page,
body.ssp-has-plugin-content .ssp-forced-page,
body.ssp-has-plugin-content .ssp-shop-landing,
body.ssp-has-plugin-content .ssp-professionals-page,
body.ssp-has-plugin-content .ssp-networkteam-page,
body.ssp-has-plugin-content .ssp-about-page,
body.ssp-has-plugin-content .ssp-patient-page,
body.ssp-has-plugin-content .ssp-page-after-content{
  contain:none !important;
  display:flow-root !important;
  position:relative !important;
  clear:both !important;
  float:none !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  min-height:1px !important;
  overflow-x:clip !important;
  overflow-y:visible !important;
  z-index:auto !important;
  transform:none !important;
}
body.ssp-has-plugin-content .ssp-home,
body.ssp-has-plugin-content .ssp-page-after-content{
  margin-bottom:clamp(96px, 12vw, 180px) !important;
  padding-bottom:clamp(72px, 8vw, 140px) !important;
}
body.ssp-has-plugin-content .ssp-theme-clean::before,
body.ssp-has-plugin-content .ssp-theme-clean::after,
body.ssp-has-plugin-content .ssp-page-after-content::before,
body.ssp-has-plugin-content .ssp-page-after-content::after{
  content:"";
  display:table;
  clear:both;
}
body.ssp-has-plugin-content .elementor-location-footer,
body.ssp-has-plugin-content footer,
body.ssp-has-plugin-content .site-footer,
body.ssp-has-plugin-content #colophon{
  position:static !important;
  inset:auto !important;
  top:auto !important;
  right:auto !important;
  bottom:auto !important;
  left:auto !important;
  clear:both !important;
  float:none !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  min-height:0 !important;
  margin-top:0 !important;
  transform:none !important;
  z-index:auto !important;
}
body.ssp-has-plugin-content .elementor-location-footer *,
body.ssp-has-plugin-content footer *{
  max-width:100%;
}
body.ssp-has-plugin-content .ssp-footer-flow-spacer{
  display:block !important;
  clear:both !important;
  width:100% !important;
  height:80px !important;
  min-height:80px !important;
  pointer-events:none !important;
}
@media (max-width:1024px){
  body.ssp-has-plugin-content .ssp-theme-clean,
  body.ssp-has-plugin-content .ssp-page-after-content{
    overflow-x:hidden !important;
    overflow-y:visible !important;
    touch-action:auto !important;
    overscroll-behavior-y:auto !important;
  }
  body.ssp-has-plugin-content .ssp-home,
  body.ssp-has-plugin-content .ssp-page-after-content{
    margin-bottom:clamp(120px, 18vw, 220px) !important;
    padding-bottom:clamp(90px, 14vw, 170px) !important;
  }
}

/* === v1.6.32 Mobile CTA text visibility fix ===
   Some mobile/theme optimizers can collapse inline text inside SSP CTA buttons after the
   footer containment layer. Keep the home CTA labels visible and readable on phones/tablets. */
@media (max-width:1024px){
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-btn,
  body.ssp-has-plugin-content .ssp-theme-clean a.ssp-btn,
  body.ssp-has-plugin-content .ssp-home .ssp-btn,
  body.ssp-has-plugin-content .ssp-home-top__ctas .ssp-btn,
  body.ssp-has-plugin-content .ssp-hero__ctas .ssp-btn,
  body.ssp-has-plugin-content .ssp-actions .ssp-btn,
  body.ssp-has-plugin-content .ssp-page-after-content .ssp-btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;
    width:auto;
    min-height:46px !important;
    height:auto !important;
    padding:12px 16px !important;
    font-size:15px !important;
    line-height:1.25 !important;
    font-weight:800 !important;
    color:var(--ssp-ink) !important;
    text-indent:0 !important;
    letter-spacing:normal !important;
    white-space:normal !important;
    overflow:visible !important;
    opacity:1 !important;
    visibility:visible !important;
    clip:auto !important;
    -webkit-text-fill-color:currentColor !important;
  }
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-btn *,
  body.ssp-has-plugin-content .ssp-home .ssp-btn *,
  body.ssp-has-plugin-content .ssp-page-after-content .ssp-btn *{
    display:inline !important;
    width:auto !important;
    height:auto !important;
    max-width:none !important;
    min-width:0 !important;
    font-size:inherit !important;
    line-height:inherit !important;
    color:inherit !important;
    text-indent:0 !important;
    overflow:visible !important;
    opacity:1 !important;
    visibility:visible !important;
    clip:auto !important;
    transform:none !important;
    -webkit-text-fill-color:currentColor !important;
  }
}
@media (max-width:767px){
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-home-top__ctas .ssp-btn,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-hero__ctas .ssp-btn,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-actions .ssp-btn,
  body.ssp-has-plugin-content .ssp-page-after-content .ssp-btn{
    width:100% !important;
    max-width:100% !important;
  }
}

/* === v1.6.34 Safe responsive containment rollback ===
   Roll back the aggressive v1.6.33 full-width layer. Keep SSP pages responsive
   without overriding Elementor/theme global containers or breaking the intended design. */
body.ssp-has-plugin-content .ssp-forced-page,
body.ssp-has-plugin-content .ssp-page-after-content{
  width:100% !important;
  max-width:100% !important;
  margin-left:0 !important;
  margin-right:0 !important;
  overflow-x:clip !important;
}
body.ssp-has-plugin-content .ssp-shell,
body.ssp-has-plugin-content .ssp-wrap,
body.ssp-has-plugin-content .ssp-single__wrap{
  box-sizing:border-box !important;
  width:100% !important;
  max-width:min(1240px, calc(100vw - 32px)) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
body.ssp-has-plugin-content .ssp-theme-clean,
body.ssp-has-plugin-content .ssp-theme-clean *{
  box-sizing:border-box;
}
body.ssp-has-plugin-content .ssp-theme-clean img,
body.ssp-has-plugin-content .ssp-theme-clean video,
body.ssp-has-plugin-content .ssp-theme-clean iframe{
  max-width:100% !important;
}
@media (max-width:1024px){
  body.ssp-has-plugin-content .ssp-shell,
  body.ssp-has-plugin-content .ssp-wrap,
  body.ssp-has-plugin-content .ssp-single__wrap{
    max-width:100% !important;
    padding-left:clamp(14px, 4vw, 24px) !important;
    padding-right:clamp(14px, 4vw, 24px) !important;
  }
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-grid3,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-grid4,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-results,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-featured__grid,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-specialties-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  }
}
@media (max-width:767px){
  body.ssp-has-plugin-content .ssp-shell,
  body.ssp-has-plugin-content .ssp-wrap,
  body.ssp-has-plugin-content .ssp-single__wrap{
    padding-left:14px !important;
    padding-right:14px !important;
  }
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-home-top__grid,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-specialties-hero__content,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-specialties-feature,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-specialties-feature--reverse,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-about-hero__grid,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-patient-hero,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-shop-hero,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-single__grid,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-single__consultGrid,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-grid3,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-grid4,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-results,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-featured__grid,
  body.ssp-has-plugin-content .ssp-theme-clean .ssp-specialties-grid{
    grid-template-columns:1fr !important;
  }
  body.ssp-has-plugin-content .ssp-theme-clean{
    min-width:0 !important;
  }
}

/* === v1.6.35 Safe fluid desktop + map stability ===
   Only top-level SSP shortcode roots expand to the available viewport width.
   Nested SSP blocks keep their designed internal layout, so the design does not break. */
body.ssp-has-plugin-content{
  --ssp-fluid-gutter:clamp(24px, 3vw, 48px);
}
@media (min-width:1200px){
  body.ssp-has-plugin-content .ssp-root--top.ssp-theme-clean,
  body.ssp-has-plugin-content .ssp-root--top.ssp-page-after-content{
    box-sizing:border-box !important;
    width:calc(100vw - var(--ssp-fluid-gutter) - var(--ssp-fluid-gutter)) !important;
    max-width:calc(100vw - var(--ssp-fluid-gutter) - var(--ssp-fluid-gutter)) !important;
    margin-left:calc(50% - 50vw + var(--ssp-fluid-gutter)) !important;
    margin-right:0 !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }
  body.ssp-has-plugin-content .ssp-root--top.ssp-theme-clean > .ssp-section,
  body.ssp-has-plugin-content .ssp-root--top.ssp-page-after-content > .ssp-home > .ssp-section{
    width:100% !important;
    max-width:100% !important;
  }
}
@media (max-width:1199px){
  body.ssp-has-plugin-content .ssp-root--top.ssp-theme-clean,
  body.ssp-has-plugin-content .ssp-root--top.ssp-page-after-content{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }
}
body.ssp-has-plugin-content .ssp-map,
body.ssp-has-plugin-content .ssp-map__canvas{
  min-width:0 !important;
  max-width:100% !important;
}
body.ssp-has-plugin-content .ssp-map__canvas{
  min-height:320px;
  background:rgba(15,23,42,.035);
}
@media (max-width:767px){
  body.ssp-has-plugin-content .ssp-map__canvas{height:340px !important; min-height:300px;}
}

/* === v1.6.37 Conservative Leaflet tile repair ===
   Keeps the stable v1.6.35 map JS and only resets visual rules that can hide
   Leaflet tiles/markers. No observers, no fallback loops, no repeated reloads. */
body.ssp-has-plugin-content .ssp-theme-clean .leaflet-container,
.ssp-theme-clean .leaflet-container{
  background:#e8edf2 !important;
  overflow:hidden !important;
}
body.ssp-has-plugin-content .ssp-theme-clean .leaflet-container img.leaflet-tile,
.ssp-theme-clean .leaflet-container img.leaflet-tile,
body.ssp-has-plugin-content .ssp-theme-clean .leaflet-container .leaflet-marker-icon,
.ssp-theme-clean .leaflet-container .leaflet-marker-icon,
body.ssp-has-plugin-content .ssp-theme-clean .leaflet-container .leaflet-marker-shadow,
.ssp-theme-clean .leaflet-container .leaflet-marker-shadow{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  max-width:none !important;
  max-height:none !important;
  min-width:0 !important;
  min-height:0 !important;
  object-fit:fill !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:none !important;
}
body.ssp-has-plugin-content .ssp-theme-clean .leaflet-container img.leaflet-tile,
.ssp-theme-clean .leaflet-container img.leaflet-tile{
  width:256px !important;
  height:256px !important;
}
body.ssp-has-plugin-content .ssp-theme-clean .leaflet-pane,
.ssp-theme-clean .leaflet-pane,
body.ssp-has-plugin-content .ssp-theme-clean .leaflet-tile-pane,
.ssp-theme-clean .leaflet-tile-pane{
  max-width:none !important;
  max-height:none !important;
}


/* v1.6.38 shop UX: compact product archive + categories by interest/dolencia */
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:22px !important;
  margin:24px 0 !important;
}
body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after,
body.tax-product_tag ul.products::before,
body.tax-product_tag ul.products::after{
  display:none !important;
}
body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product{
  float:none !important;
  width:auto !important;
  margin:0 !important;
  min-width:0 !important;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  padding:14px 14px 18px !important;
  box-shadow:0 12px 30px rgba(15,23,42,.05);
}
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img{
  width:100% !important;
  height:210px !important;
  object-fit:contain !important;
  padding:8px !important;
  margin:0 0 14px !important;
  background:#f8fafc;
  border-radius:18px;
}
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title{
  font-size:16px !important;
  line-height:1.3 !important;
  letter-spacing:-.02em;
  min-height:42px;
  padding:0 !important;
  margin:0 0 8px !important;
}
body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price{
  font-size:21px !important;
  line-height:1.2 !important;
  margin:8px 0 12px !important;
}
body.woocommerce-shop ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button,
body.tax-product_cat ul.products li.product .button,
body.tax-product_tag ul.products li.product .button{
  padding:.75em 1em !important;
  border-radius:16px !important;
  font-size:14px !important;
}
@media (min-width:1500px){
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{
    grid-template-columns:repeat(5,minmax(0,1fr)) !important;
  }
  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img{
    height:200px !important;
  }
}
@media (max-width:1180px){
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
}
@media (max-width:820px){
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:16px !important;
  }
  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img{
    height:180px !important;
  }
}
@media (max-width:520px){
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{
    grid-template-columns:1fr !important;
  }
}

.ssp-interest-heading{margin-top:34px;}
.ssp-interest-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
  margin:14px 0 34px;
}
.ssp-interest-card{
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
}
.ssp-interest-card__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.ssp-interest-card__chips span{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(15,23,42,.10);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  line-height:1;
  font-weight:800;
  color:#475569;
  background:#f8fafc;
}
@media (max-width:1400px){.ssp-interest-grid{grid-template-columns:repeat(4,minmax(0,1fr));}}
@media (max-width:1100px){.ssp-interest-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:820px){.ssp-interest-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:560px){.ssp-interest-grid{grid-template-columns:1fr;}}

/* v1.6.39 shop compact visual pass + laboratorio UX */
.ssp-shop-category-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.ssp-shop-card__media{aspect-ratio:16/7;max-height:180px;}
.ssp-shop-card__body{padding:18px;gap:10px;}

.ssp-brand-buckets{display:grid;grid-template-columns:1fr!important;gap:18px;margin-top:10px;}
.ssp-bucket-card{padding:18px!important;border-radius:22px!important;}
.ssp-bucket-card>.ssp-card__name{font-size:22px;line-height:1.15;margin-bottom:6px;}
.ssp-bucket-card>.ssp-card__meta{font-size:14px;line-height:1.55;margin-bottom:10px;max-width:920px;}
.ssp-bucket-card .ssp-woo-shortcode{margin-top:10px!important;}
.ssp-bucket-card .ssp-brand-more{margin-top:12px;}
.ssp-bucket-card .ssp-brand-more .ssp-btn{padding:.68em .95em;font-size:13px;border-radius:14px;}

.ssp-shop-products-grid{gap:12px!important;}
.ssp-shop-products-grid--compact{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:12px!important;}
.ssp-shop-product-card{border-radius:18px!important;box-shadow:0 8px 22px rgba(15,23,42,.045)!important;}
.ssp-shop-product-card__media{min-height:118px!important;height:128px!important;padding:10px!important;background:#f8fafc!important;}
.ssp-shop-product-card__media img{height:104px!important;width:100%!important;max-width:100%!important;object-fit:contain!important;border-radius:12px!important;}
.ssp-shop-product-card__body{padding:11px 12px 13px!important;gap:7px!important;}
.ssp-shop-product-card__title,.ssp-shop-product-card__title a{font-size:13px!important;line-height:1.25!important;min-height:34px;}
.ssp-shop-product-card__price{font-size:17px!important;line-height:1.15!important;}
.ssp-shop-product-card__button{padding:.62em .82em!important;font-size:12.5px!important;border-radius:13px!important;}

body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products{grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:16px!important;}
body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product{border-radius:18px!important;padding:10px 10px 14px!important;box-shadow:0 8px 22px rgba(15,23,42,.045)!important;}
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img{height:150px!important;object-fit:contain!important;padding:6px!important;margin:0 0 10px!important;border-radius:14px!important;}
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title{font-size:14px!important;line-height:1.25!important;min-height:36px!important;margin-bottom:6px!important;}
body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price{font-size:18px!important;margin:6px 0 10px!important;}
body.woocommerce-shop ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button,
body.tax-product_cat ul.products li.product .button,
body.tax-product_tag ul.products li.product .button{font-size:13px!important;padding:.62em .9em!important;border-radius:13px!important;}

@media (min-width:1500px){
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{grid-template-columns:repeat(6,minmax(0,1fr))!important;}
  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img{height:145px!important;}
}
@media (max-width:1400px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(5,minmax(0,1fr))!important;}}
@media (max-width:1180px){
  .ssp-shop-products-grid--compact{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
}
@media (max-width:900px){
  .ssp-shop-products-grid--compact{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width:640px){
  .ssp-shop-products-grid--compact{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;}
  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img{height:130px!important;}
}
@media (max-width:430px){
  .ssp-shop-products-grid--compact,
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{grid-template-columns:1fr!important;}
}

/* v1.6.41 stable Elementor header/footer links + technology cards + extra compact products */
.elementor-location-header,
.elementor-location-header *,
header.site-header,
header.site-header *,
#masthead,
#masthead *,
.elementor-location-footer,
.elementor-location-footer *,
footer,
footer *{
  pointer-events:auto;
}
.elementor-location-header,
header.site-header,
#masthead{
  position:relative;
  z-index:10000;
}
.elementor-location-header .elementor-button,
.elementor-location-header a,
header.site-header .elementor-button,
header.site-header a,
#masthead .elementor-button,
#masthead a,
.elementor-location-footer .elementor-button,
.elementor-location-footer a,
footer .elementor-button,
footer a{
  pointer-events:auto !important;
}
.ssp-theme-clean,
.ssp-page-after-content{
  z-index:1 !important;
}
.ssp-tech-grid{gap:14px!important;align-items:stretch;}
.ssp-tech-card{padding:0!important;overflow:hidden;min-height:0!important;}
.ssp-tech-card__link{display:flex;flex-direction:column;height:100%;gap:12px;padding:18px;text-decoration:none!important;color:inherit!important;}
.ssp-tech-card__link:hover .ssp-tech-card__cta{text-decoration:underline;}
.ssp-tech-card__cta{margin-top:auto;display:inline-flex;align-items:center;font-weight:900;font-size:13px;color:#0f172a;}
.ssp-tech-card__cta::after{content:"→";margin-left:8px;}

.ssp-shop-products-grid--compact{grid-template-columns:repeat(7,minmax(0,1fr))!important;}
.ssp-shop-product-card__media{min-height:96px!important;height:104px!important;padding:8px!important;}
.ssp-shop-product-card__media img{height:86px!important;object-fit:contain!important;}
.ssp-shop-product-card__body{padding:9px 10px 11px!important;gap:5px!important;}
.ssp-shop-product-card__title,.ssp-shop-product-card__title a{font-size:12px!important;line-height:1.2!important;min-height:29px!important;}
.ssp-shop-product-card__price{font-size:15px!important;}
.ssp-shop-product-card__button{padding:.55em .72em!important;font-size:11.5px!important;}
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:14px!important;}
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img{height:125px!important;}
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title{font-size:13px!important;min-height:32px!important;}
body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price{font-size:16px!important;}
@media (min-width:1500px){
  .ssp-shop-products-grid--compact{grid-template-columns:repeat(8,minmax(0,1fr))!important;}
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products{grid-template-columns:repeat(7,minmax(0,1fr))!important;}
}
@media (max-width:1400px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(6,minmax(0,1fr))!important;}}
@media (max-width:1180px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(5,minmax(0,1fr))!important;}body.woocommerce-shop ul.products,body.post-type-archive-product ul.products,body.tax-product_cat ul.products,body.tax-product_tag ul.products{grid-template-columns:repeat(5,minmax(0,1fr))!important;}}
@media (max-width:900px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(3,minmax(0,1fr))!important;}body.woocommerce-shop ul.products,body.post-type-archive-product ul.products,body.tax-product_cat ul.products,body.tax-product_tag ul.products{grid-template-columns:repeat(3,minmax(0,1fr))!important;}}
@media (max-width:640px){.ssp-shop-products-grid--compact{grid-template-columns:repeat(2,minmax(0,1fr))!important;}body.woocommerce-shop ul.products,body.post-type-archive-product ul.products,body.tax-product_cat ul.products,body.tax-product_tag ul.products{grid-template-columns:repeat(2,minmax(0,1fr))!important;}body.woocommerce-shop ul.products li.product a img,body.post-type-archive-product ul.products li.product a img,body.tax-product_cat ul.products li.product a img,body.tax-product_tag ul.products li.product a img{height:115px!important;}}


/* v1.6.44: Tecnología shop ampliada + relacionados a ancho completo */
.ssp-tech-grid{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
.ssp-tech-card__link{
  min-height:190px;
}
.woocommerce.single-product div.product > .related.products,
.woocommerce.single-product div.product > section.related,
.woocommerce.single-product div.product > .upsells.products,
.woocommerce.single-product div.product > .ssp-cross-sells,
.woocommerce.single-product div.product > .woocommerce-tabs{
  grid-column:1 / -1!important;
  width:100%!important;
  max-width:none!important;
  clear:both!important;
}
.woocommerce.single-product div.product > .related.products ul.products,
.woocommerce.single-product div.product > section.related ul.products,
.woocommerce.single-product div.product > .ssp-cross-sells ul.products{
  width:100%!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:18px!important;
}
@media (max-width: 1200px){
  .ssp-tech-grid,
  .woocommerce.single-product div.product > .related.products ul.products,
  .woocommerce.single-product div.product > section.related ul.products,
  .woocommerce.single-product div.product > .ssp-cross-sells ul.products{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}
@media (max-width: 900px){
  .ssp-tech-grid,
  .woocommerce.single-product div.product > .related.products ul.products,
  .woocommerce.single-product div.product > section.related ul.products,
  .woocommerce.single-product div.product > .ssp-cross-sells ul.products{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media (max-width: 640px){
  .ssp-tech-grid,
  .woocommerce.single-product div.product > .related.products ul.products,
  .woocommerce.single-product div.product > section.related ul.products,
  .woocommerce.single-product div.product > .ssp-cross-sells ul.products{
    grid-template-columns:1fr!important;
  }
}

/* v1.6.45: fix ficha de producto - relacionados responsive y sin columnas rotas */
body.single-product .woocommerce div.product,
body.single-product.woocommerce div.product{
  overflow:visible!important;
}
body.single-product .woocommerce div.product::after,
body.single-product.woocommerce div.product::after{
  content:"";
  display:block;
  clear:both;
}
body.single-product .woocommerce div.product > .ssp-cross-sells,
body.single-product.woocommerce div.product > .ssp-cross-sells,
body.single-product .woocommerce div.product > .related.products,
body.single-product.woocommerce div.product > .related.products,
body.single-product .woocommerce div.product > section.related,
body.single-product.woocommerce div.product > section.related,
body.single-product .woocommerce div.product > .upsells.products,
body.single-product.woocommerce div.product > .upsells.products{
  clear:both!important;
  display:block!important;
  width:100%!important;
  max-width:1180px!important;
  margin:42px auto 0!important;
  padding:0 18px!important;
  float:none!important;
  flex:0 0 100%!important;
  grid-column:1 / -1!important;
  box-sizing:border-box!important;
}
body.single-product .ssp-cross-sells .ssp-section-heading,
body.single-product .related.products > h2,
body.single-product section.related > h2,
body.single-product .upsells.products > h2{
  margin:0 0 18px!important;
  text-align:left!important;
}
body.single-product .woocommerce div.product > .ssp-cross-sells ul.products,
body.single-product.woocommerce div.product > .ssp-cross-sells ul.products,
body.single-product .woocommerce div.product > .related.products ul.products,
body.single-product.woocommerce div.product > .related.products ul.products,
body.single-product .woocommerce div.product > section.related ul.products,
body.single-product.woocommerce div.product > section.related ul.products,
body.single-product .woocommerce div.product > .upsells.products ul.products,
body.single-product.woocommerce div.product > .upsells.products ul.products{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(170px,1fr))!important;
  gap:18px!important;
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding:0!important;
  list-style:none!important;
  clear:both!important;
}
body.single-product .woocommerce div.product > .ssp-cross-sells ul.products li.product,
body.single-product.woocommerce div.product > .ssp-cross-sells ul.products li.product,
body.single-product .woocommerce div.product > .related.products ul.products li.product,
body.single-product.woocommerce div.product > .related.products ul.products li.product,
body.single-product .woocommerce div.product > section.related ul.products li.product,
body.single-product.woocommerce div.product > section.related ul.products li.product,
body.single-product .woocommerce div.product > .upsells.products ul.products li.product,
body.single-product.woocommerce div.product > .upsells.products ul.products li.product{
  width:auto!important;
  max-width:none!important;
  min-width:0!important;
  float:none!important;
  clear:none!important;
  margin:0!important;
  padding:14px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  text-align:center!important;
  border:1px solid rgba(15,23,42,.08)!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:0 12px 28px rgba(15,23,42,.05)!important;
  box-sizing:border-box!important;
}
body.single-product .woocommerce div.product > .ssp-cross-sells ul.products li.product a,
body.single-product .woocommerce div.product > .related.products ul.products li.product a,
body.single-product .woocommerce div.product > section.related ul.products li.product a,
body.single-product .woocommerce div.product > .upsells.products ul.products li.product a{
  width:100%!important;
  display:block!important;
  text-decoration:none!important;
}
body.single-product .woocommerce div.product > .ssp-cross-sells ul.products li.product a img,
body.single-product.woocommerce div.product > .ssp-cross-sells ul.products li.product a img,
body.single-product .woocommerce div.product > .related.products ul.products li.product a img,
body.single-product.woocommerce div.product > .related.products ul.products li.product a img,
body.single-product .woocommerce div.product > section.related ul.products li.product a img,
body.single-product.woocommerce div.product > section.related ul.products li.product a img,
body.single-product .woocommerce div.product > .upsells.products ul.products li.product a img,
body.single-product.woocommerce div.product > .upsells.products ul.products li.product a img{
  width:100%!important;
  max-width:150px!important;
  height:135px!important;
  object-fit:contain!important;
  margin:0 auto 12px!important;
  padding:6px!important;
  border-radius:14px!important;
  background:#f8fafc!important;
}
body.single-product .woocommerce div.product > .ssp-cross-sells ul.products li.product .woocommerce-loop-product__title,
body.single-product .woocommerce div.product > .related.products ul.products li.product .woocommerce-loop-product__title,
body.single-product .woocommerce div.product > section.related ul.products li.product .woocommerce-loop-product__title,
body.single-product .woocommerce div.product > .upsells.products ul.products li.product .woocommerce-loop-product__title{
  font-size:15px!important;
  line-height:1.28!important;
  min-height:0!important;
  margin:0 0 8px!important;
  color:#0f172a!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
  hyphens:none!important;
}
body.single-product .woocommerce div.product > .ssp-cross-sells ul.products li.product .price,
body.single-product .woocommerce div.product > .related.products ul.products li.product .price,
body.single-product .woocommerce div.product > section.related ul.products li.product .price,
body.single-product .woocommerce div.product > .upsells.products ul.products li.product .price{
  display:block!important;
  margin:6px 0 12px!important;
  font-size:16px!important;
  line-height:1.2!important;
  font-weight:900!important;
  color:#0f172a!important;
  white-space:normal!important;
}
body.single-product .woocommerce div.product > .ssp-cross-sells ul.products li.product .button,
body.single-product .woocommerce div.product > .related.products ul.products li.product .button,
body.single-product .woocommerce div.product > section.related ul.products li.product .button,
body.single-product .woocommerce div.product > .upsells.products ul.products li.product .button{
  margin-top:auto!important;
  width:auto!important;
  max-width:100%!important;
  white-space:normal!important;
  border-radius:14px!important;
  padding:.68em .95em!important;
  font-size:13px!important;
}
@media (max-width:1100px){
  body.single-product .woocommerce div.product > .ssp-cross-sells ul.products,
  body.single-product.woocommerce div.product > .ssp-cross-sells ul.products,
  body.single-product .woocommerce div.product > .related.products ul.products,
  body.single-product.woocommerce div.product > .related.products ul.products,
  body.single-product .woocommerce div.product > section.related ul.products,
  body.single-product.woocommerce div.product > section.related ul.products,
  body.single-product .woocommerce div.product > .upsells.products ul.products,
  body.single-product.woocommerce div.product > .upsells.products ul.products{grid-template-columns:repeat(3,minmax(160px,1fr))!important;}
}
@media (max-width:760px){
  body.single-product .woocommerce div.product > .ssp-cross-sells,
  body.single-product.woocommerce div.product > .ssp-cross-sells,
  body.single-product .woocommerce div.product > .related.products,
  body.single-product.woocommerce div.product > .related.products,
  body.single-product .woocommerce div.product > section.related,
  body.single-product.woocommerce div.product > section.related,
  body.single-product .woocommerce div.product > .upsells.products,
  body.single-product.woocommerce div.product > .upsells.products{padding:0 14px!important;margin-top:34px!important;}
  body.single-product .woocommerce div.product > .ssp-cross-sells ul.products,
  body.single-product.woocommerce div.product > .ssp-cross-sells ul.products,
  body.single-product .woocommerce div.product > .related.products ul.products,
  body.single-product.woocommerce div.product > .related.products ul.products,
  body.single-product .woocommerce div.product > section.related ul.products,
  body.single-product.woocommerce div.product > section.related ul.products,
  body.single-product .woocommerce div.product > .upsells.products ul.products,
  body.single-product.woocommerce div.product > .upsells.products ul.products{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px!important;}
  body.single-product .woocommerce div.product > .ssp-cross-sells ul.products li.product a img,
  body.single-product .woocommerce div.product > .related.products ul.products li.product a img,
  body.single-product .woocommerce div.product > section.related ul.products li.product a img,
  body.single-product .woocommerce div.product > .upsells.products ul.products li.product a img{max-width:130px!important;height:118px!important;}
}
@media (max-width:430px){
  body.single-product .woocommerce div.product > .ssp-cross-sells ul.products,
  body.single-product.woocommerce div.product > .ssp-cross-sells ul.products,
  body.single-product .woocommerce div.product > .related.products ul.products,
  body.single-product.woocommerce div.product > .related.products ul.products,
  body.single-product .woocommerce div.product > section.related ul.products,
  body.single-product.woocommerce div.product > section.related ul.products,
  body.single-product .woocommerce div.product > .upsells.products ul.products,
  body.single-product.woocommerce div.product > .upsells.products ul.products{grid-template-columns:1fr!important;}
}

/* v1.6.49 - Clinical Network visual block and removed Health Shop shortcuts */
.ssp-join--clinical{padding:22px;}
.ssp-join__grid--clinical{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:22px;
  align-items:stretch;
}
.ssp-join__visual-card,
.ssp-join__grid--clinical .ssp-join__form{
  min-height:100%;
}
.ssp-join__visual-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 55px rgba(15,23,42,.06);
}
.ssp-join__image-wrap{
  flex:1 1 auto;
  min-height:360px;
  background:#f8fafc;
  overflow:hidden;
}
.ssp-join__image{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.ssp-join__copy-card{
  flex:0 0 auto;
  padding:24px 26px 28px;
  background:linear-gradient(180deg,#fff,rgba(248,250,252,.96));
  border-top:1px solid rgba(15,23,42,.08);
}
.ssp-join__copy-card h3{
  margin:0 0 12px;
  font-size:clamp(20px,2vw,28px);
  line-height:1.1;
  color:#0f172a;
  font-weight:800;
}
.ssp-join__copy-card p{
  margin:0;
  color:#4b5563;
  font-size:16px;
  line-height:1.75;
}
.ssp-join__grid--clinical .ssp-join__form,
.ssp-join__grid--clinical .ssp-join__form .wpforms-container,
.ssp-join__grid--clinical .ssp-join__form .wpforms-form{
  height:100%;
}
.ssp-join__grid--clinical .ssp-join__form .wpforms-form{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
@media (max-width: 980px){
  .ssp-join__grid--clinical{grid-template-columns:1fr;}
  .ssp-join__image-wrap,.ssp-join__image{min-height:320px;}
}
@media (max-width: 640px){
  .ssp-join--clinical{padding:16px;}
  .ssp-join__copy-card{padding:20px;}
  .ssp-join__image-wrap,.ssp-join__image{min-height:260px;}
}

/* v1.6.50 - Shop landing: more breathable spacing between sections */
body.ssp-has-plugin-content .ssp-shop-landing .ssp-section-heading{
  margin-top:clamp(34px,3vw,52px)!important;
  margin-bottom:clamp(12px,1.2vw,18px)!important;
}
body.ssp-has-plugin-content .ssp-shop-landing .ssp-shop-pillars{
  margin-bottom:clamp(34px,3vw,50px)!important;
}
body.ssp-has-plugin-content .ssp-shop-landing #ssp-shop-categories,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-interest-grid,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-shop-steps,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-brand-grid,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-brand-buckets,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-woo-shortcode--highlight,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-tech-grid{
  margin-bottom:clamp(36px,3.2vw,58px)!important;
}
body.ssp-has-plugin-content .ssp-shop-landing .ssp-interest-grid + .ssp-shop-story,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-brand-buckets + .ssp-section-heading,
body.ssp-has-plugin-content .ssp-shop-landing .ssp-woo-shortcode--highlight + .ssp-shop-story{
  margin-top:clamp(38px,3.4vw,60px)!important;
}
body.ssp-has-plugin-content .ssp-shop-landing .ssp-shop-story{
  margin-top:clamp(38px,3.4vw,60px)!important;
  margin-bottom:clamp(36px,3.2vw,58px)!important;
}
@media (max-width:767px){
  body.ssp-has-plugin-content .ssp-shop-landing .ssp-section-heading{
    margin-top:30px!important;
    margin-bottom:12px!important;
  }
  body.ssp-has-plugin-content .ssp-shop-landing #ssp-shop-categories,
  body.ssp-has-plugin-content .ssp-shop-landing .ssp-interest-grid,
  body.ssp-has-plugin-content .ssp-shop-landing .ssp-shop-steps,
  body.ssp-has-plugin-content .ssp-shop-landing .ssp-brand-grid,
  body.ssp-has-plugin-content .ssp-shop-landing .ssp-brand-buckets,
  body.ssp-has-plugin-content .ssp-shop-landing .ssp-woo-shortcode--highlight,
  body.ssp-has-plugin-content .ssp-shop-landing .ssp-tech-grid{
    margin-bottom:32px!important;
  }
}

/* v1.6.51 - Ajuste visual específico para fichas de producto N-PRO.
   Mantiene la imagen completa sin recortarla, pero evita que el bote domine la ficha. */
body.single-product.ssp-product-brand-npro .woocommerce div.product{
  align-items:center!important;
  column-gap:34px!important;
}
body.single-product.ssp-product-brand-npro .woocommerce div.product div.images{
  display:flex!important;
  justify-content:center!important;
  align-items:center!important;
  min-width:0!important;
  padding:8px 0!important;
}
body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery,
body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery__image{
  width:100%!important;
  max-width:520px!important;
  margin:0 auto!important;
  text-align:center!important;
}
body.single-product.ssp-product-brand-npro .woocommerce div.product div.images img,
body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .wp-post-image,
body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery__image img{
  width:auto!important;
  height:auto!important;
  max-width:min(100%,460px)!important;
  max-height:560px!important;
  object-fit:contain!important;
  object-position:center center!important;
  display:block!important;
  margin:0 auto!important;
  border-radius:24px!important;
}
body.single-product.ssp-product-brand-npro .woocommerce div.product div.summary{
  align-self:center!important;
  max-width:460px!important;
}
body.single-product.ssp-product-brand-npro .woocommerce div.product .product_title{
  font-size:clamp(26px,3vw,40px)!important;
}
@media (min-width:981px){
  body.single-product.ssp-product-brand-npro .woocommerce div.product{
    grid-template-columns:minmax(360px,.95fr) minmax(360px,.75fr)!important;
  }
}
@media (max-width:980px){
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery,
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery__image{
    max-width:420px!important;
  }
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images img,
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .wp-post-image,
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery__image img{
    max-width:min(100%,360px)!important;
    max-height:430px!important;
  }
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.summary{
    max-width:640px!important;
    margin:0 auto!important;
  }
}
@media (max-width:520px){
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images img,
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .wp-post-image,
  body.single-product.ssp-product-brand-npro .woocommerce div.product div.images .woocommerce-product-gallery__image img{
    max-width:min(100%,300px)!important;
    max-height:360px!important;
  }
}

/* === v1.6.59 Especialidades: imágenes estables, sin repetición y sin bloques vacíos === */
.ssp-specialties-page .ssp-specialties-showcase{gap:34px !important;}
.ssp-specialties-page .ssp-specialties-feature,
.ssp-specialties-page .ssp-specialties-feature--reverse{display:grid !important;grid-template-columns:minmax(0,0.92fr) minmax(360px,1.08fr) !important;gap:24px !important;align-items:center !important;padding:24px !important;}
.ssp-specialties-page .ssp-specialties-feature--reverse{grid-template-columns:minmax(360px,1.08fr) minmax(0,0.92fr) !important;}
.ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__media{order:2 !important;}
.ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:1 !important;}
.ssp-specialties-page .ssp-specialties-feature__media{aspect-ratio:16/10 !important;height:auto !important;min-height:0 !important;max-height:520px !important;overflow:hidden !important;border-radius:24px !important;background:#faf6ee !important;}
.ssp-specialties-page .ssp-specialties-feature__media img{width:100% !important;height:100% !important;min-height:0 !important;max-height:none !important;object-fit:cover !important;object-position:center center !important;display:block !important;border-radius:24px !important;box-shadow:none !important;}
.ssp-specialties-page .ssp-specialties-feature__content{padding:8px 0 !important;}
.ssp-specialties-page .ssp-specialties-feature__title{max-width:22ch !important;}
@media (max-width:1100px){.ssp-specialties-page .ssp-specialties-feature,.ssp-specialties-page .ssp-specialties-feature--reverse{grid-template-columns:1fr !important;}.ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__media,.ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:initial !important;}.ssp-specialties-page .ssp-specialties-feature__media{aspect-ratio:16/9 !important;max-height:460px !important;}}
@media (max-width:700px){.ssp-specialties-page .ssp-specialties-feature,.ssp-specialties-page .ssp-specialties-feature--reverse{padding:14px !important;gap:16px !important;}.ssp-specialties-page .ssp-specialties-feature__media{aspect-ratio:4/3 !important;max-height:320px !important;border-radius:18px !important;}.ssp-specialties-page .ssp-specialties-feature__media img{border-radius:18px !important;}}

/* v1.6.60 - Especialidades: mostrar imágenes completas, sin recortes */
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature,
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature--reverse{align-items:center !important;}
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media{aspect-ratio:auto !important;height:auto !important;min-height:0 !important;max-height:none !important;overflow:visible !important;display:flex !important;align-items:center !important;justify-content:center !important;padding:0 !important;border-radius:24px !important;background:#faf6ee !important;}
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media img{width:100% !important;height:auto !important;min-height:0 !important;max-height:560px !important;object-fit:contain !important;object-position:center center !important;display:block !important;border-radius:24px !important;box-shadow:0 16px 42px rgba(15,23,42,.08) !important;}
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__media{order:2 !important;}
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:1 !important;}
@media (max-width:1100px){body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature,body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature--reverse{grid-template-columns:1fr !important;}body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__media,body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:initial !important;}body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media img{max-height:620px !important;}}
@media (max-width:700px){body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media,body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media img{border-radius:18px !important;}body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media img{max-height:none !important;}}

/* === v1.6.73 Especialidades: imágenes correctas y completas === */
.ssp-specialties-page .ssp-specialties-feature__media{
  aspect-ratio:auto !important;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  overflow:visible !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  border-radius:24px !important;
  background:#faf6ee !important;
}
.ssp-specialties-page .ssp-specialties-feature__media img{
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  max-height:560px !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block !important;
  border-radius:24px !important;
  box-shadow:0 16px 42px rgba(15,23,42,.08) !important;
}
@media (max-width:1100px){
  .ssp-specialties-page .ssp-specialties-feature,
  .ssp-specialties-page .ssp-specialties-feature--reverse{grid-template-columns:1fr !important;}
  .ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__media,
  .ssp-specialties-page .ssp-specialties-feature--reverse .ssp-specialties-feature__content{order:initial !important;}
  .ssp-specialties-page .ssp-specialties-feature__media img{max-height:620px !important;}
}
@media (max-width:700px){
  .ssp-specialties-page .ssp-specialties-feature__media,
  .ssp-specialties-page .ssp-specialties-feature__media img{border-radius:18px !important;}
  .ssp-specialties-page .ssp-specialties-feature__media img{max-height:none !important;}
}

/* === v1.6.74 Especialidades: usar las imágenes exactas completas, sin recorte vertical === */
.ssp-specialties-page .ssp-specialties-feature__media,
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media{
  aspect-ratio:auto !important;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  overflow:visible !important;
}
.ssp-specialties-page .ssp-specialties-feature__media img,
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media img{
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
}

/* v1.6.76: imagen específica y sin recorte para el bloque Clinical Network junto al formulario */
.ssp-join--clinical .ssp-join__image-wrap{
  min-height:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#f8fafc !important;
  padding:18px !important;
}
.ssp-join--clinical .ssp-join__image{
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  max-height:820px !important;
  object-fit:contain !important;
  object-position:center center !important;
  border-radius:18px !important;
}

/* v1.6.76: dar un poco más de presencia vertical a medicina estética y cirugía estética */
.ssp-specialties-page .ssp-specialties-feature__media img,
body.ssp-has-plugin-content .ssp-specialties-page .ssp-specialties-feature__media img{
  max-height:680px;
}

@media (max-width: 767px){
  .ssp-join--clinical .ssp-join__image-wrap{
    padding:10px !important;
  }
  .ssp-join--clinical .ssp-join__image{
    max-height:none !important;
  }
}
