/*
-----------------------------------------------------------------------
Coast2Coast First Aid - Universal US Location Page CSS
-----------------------------------------------------------------------
File:        us-location-universal.css
Source:      Consolidated from Los Angeles, Sacramento, San Diego, and San Jose HTML pages
Updated:     2026-06-29
Use:         Upload to /theme/assets/css/ and load from each US location page.
Scope:       Rules are namespaced primarily under .c2c-final plus location-page widgets.
-----------------------------------------------------------------------
*/

/* Ensure text renders immediately with system font while web fonts load */
 @font-face{font-family:'Poppins';font-display:swap}
 @font-face{font-family:'Inter';font-display:swap}
 .c2c-final{
  --navy:#0f234f;
  --navy-2:#183a84;
  --navy-3:#274a98;
  --red:#b53031;
  --red-2:#b53031;
  --red-hover:#9a2829;
  --text:#22324b;
  --muted:#66758b;
  --bg:#f4f7fc;
  --soft:#f8fbff;
  --line:#dce5f0;
  --white:#fff;
  --green:#22a861;
  --gold:#f0b72f;
  --shadow:0 12px 34px rgba(15,35,79,.08);
  --shadow-lg:0 20px 54px rgba(15,35,79,.14);
  --shadow-red:0 12px 28px rgba(216,77,58,.20);
  font-family:'Inter',Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
  width:100vw;
  position:relative;
  left:50%;
  margin-left:-50vw;
  overflow-x:hidden;
  padding-bottom:42px;
 }
 .c2c-final *{box-sizing:border-box}
 .c2c-container{max-width:1220px;margin:0 auto;padding:0 24px}
 .c2c-section{padding:68px 0}
 .c2c-section-tight{padding:44px 0}
 .c2c-section-head{text-align:center;margin-bottom:34px}
 .c2c-section-head h2{
  margin:0 0 12px;
  font-family:'Poppins',sans-serif;
  font-size:clamp(28px,3vw,42px);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.8px;
  color:var(--navy);
 }
 .c2c-section-head p{
  margin:0 auto;
  max-width:820px;
  color:var(--muted);
  font-size:15px;
 }
 .c2c-ai-overview{
  max-width:980px;margin:0 auto 24px;
  background:linear-gradient(135deg,#f4f8ff 0%,#eef4ff 55%,#f8fbff 100%);
  border:1px solid #d8e3f5;border-radius:18px;
  padding:20px 24px;box-shadow:0 6px 22px rgba(15,35,79,.06);
  text-align:left;position:relative;overflow:hidden;
 }
 .c2c-ai-overview:before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--navy-2),var(--red),var(--navy-2));
 }
 .c2c-ai-overview-tldr{
  font-size:15px;line-height:1.7;color:var(--text);
  font-weight:500;margin:0;
 }
 @media (max-width:860px){
  .c2c-ai-overview{padding:18px 16px 16px}
  .c2c-ai-overview-tldr{font-size:14px}
 }
 .c2c-courses-stat-row{
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:8px;margin-top:16px;
 }
 .c2c-stat-pill{
  display:inline-flex;align-items:center;
  padding:7px 14px;border-radius:999px;
  background:rgba(15,35,79,.06);
  border:1px solid rgba(15,35,79,.12);
  color:var(--navy);font-size:12px;font-weight:800;
  letter-spacing:.2px;
 }
 .c2c-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 14px;border-radius:999px;
  background:rgba(216,77,58,.08);border:1px solid rgba(216,77,58,.15);
  color:var(--red);font-size:11px;font-weight:800;
  letter-spacing:1.4px;text-transform:uppercase;margin-bottom:16px;
 }
 .c2c-hero .c2c-eyebrow{
  color:#ffb3a7;background:rgba(255,179,167,.12);border-color:rgba(255,179,167,.25);
 }
 .c2c-btn-row{display:flex;flex-wrap:wrap;gap:12px}
 .c2c-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 24px;border-radius:14px;
  text-decoration:none;font-size:14px;font-weight:800;
  transition:.22s ease;border:2px solid transparent;white-space:nowrap;
 }
 .c2c-btn-primary{
  background:linear-gradient(135deg,var(--red) 0%, var(--red-2) 100%);
  color:#fff !important;box-shadow:var(--shadow-red);
 }
 .c2c-btn-primary:hover,.c2c-btn-primary:focus{
  background:linear-gradient(135deg,#b83828 0%, var(--red-hover) 100%);
  color:#fff !important;transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(216,77,58,.30);
 }
 .c2c-btn-secondary{
  background:transparent;color:#fff;border-color:rgba(255,255,255,.65);
 }
 .c2c-btn-secondary:hover{
  background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.9);
  color:#fff;transform:translateY(-1px);
 }
 .c2c-btn-outline{
  background:#fff;border-color:var(--navy);color:var(--navy);
 }
 .c2c-btn-outline:hover{
  background:var(--navy);color:#fff;transform:translateY(-1px);
 }
 .c2c-btn-full{width:100%}
 .c2c-carousel{position:relative}
 .c2c-carousel-viewport{overflow:visible}
 .c2c-carousel-track{display:contents}
 .c2c-carousel-arrow,.c2c-carousel-dots{display:none !important}
 .c2c-carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:40px;height:40px;border-radius:50%;border:1px solid var(--line);
  background:#fff;color:var(--navy);box-shadow:var(--shadow);
  display:none;align-items:center;justify-content:center;cursor:pointer;z-index:3;
 }
 .c2c-carousel-arrow.prev{left:-6px}
 .c2c-carousel-arrow.next{right:-6px}
 .c2c-carousel-arrow svg{width:18px;height:18px}
 .c2c-carousel-dots{justify-content:center;gap:8px;margin-top:16px}
 .c2c-carousel-dots button{
  width:8px;height:8px;border-radius:50%;border:none;background:#cfd8e6;cursor:pointer;padding:0;
 }
 .c2c-carousel-dots button.active{width:24px;border-radius:999px;background:var(--red)}
 /* HERO */
 .c2c-hero{
  position:relative;padding:64px 0 52px;
  background:linear-gradient(110deg,rgba(15,35,79,.97) 0%, rgba(15,35,79,.94) 42%, rgba(15,35,79,.72) 65%, rgba(15,35,79,.24) 100%),
  url('https://www.c2cfirstaidaquatics.com/wp-content/uploads/2026/04/coast2coast-first-aid-cpr-homepage-desktop-1.webp') center right/cover no-repeat;
  overflow:hidden;
 }
 .c2c-hero-grid{display:grid;grid-template-columns:minmax(0,760px) 1fr;gap:20px;align-items:center;position:relative;z-index:2}
 .c2c-breadcrumb{font-size:12px;color:rgba(255,255,255,.80);margin-bottom:14px}
 .c2c-breadcrumb a{color:rgba(255,255,255,.95);text-decoration:none;font-weight:700}
 .c2c-breadcrumb a:hover{color:#fff;text-decoration:underline}
 .c2c-breadcrumb span{opacity:.55}
 .c2c-hero-title{
  margin:0 0 12px;font-family:'Poppins',sans-serif;
  font-size:clamp(28px,4.2vw,58px);line-height:1.04;font-weight:900;
  letter-spacing:-1.2px;color:#fff;max-width:760px;
 }
 .c2c-hero-title span{color:#ffb3a7}
 .c2c-hero-sub{margin:0 0 20px;color:rgba(255,255,255,.95);font-size:16px;font-weight:600;max-width:600px;line-height:1.55}
 .c2c-hero-copy{margin:0 0 24px;color:rgba(255,255,255,.82);font-size:14px;max-width:630px;line-height:1.7}
 .c2c-hero-pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
 .c2c-pill{
  display:inline-flex;align-items:center;padding:7px 13px;border-radius:999px;
  text-decoration:none;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.28);
  color:rgba(255,255,255,.95);font-size:12px;font-weight:700;transition:.2s ease;
 }
 .c2c-pill:hover{background:rgba(255,255,255,.22);color:#fff}
 /* TRUST */
 .c2c-trust-strip{background:#fff;border-bottom:1px solid var(--line)}
 .c2c-trust-carousel{position:relative;padding:16px 0}
 .c2c-trust-card{
  display:flex;align-items:center;justify-content:center;
  background:#fff;border:1px solid var(--line);border-radius:22px;
  padding:14px;min-height:170px;box-shadow:0 4px 18px rgba(15,35,79,.04);
 }
 .c2c-trust-badge{width:100%;max-width:260px;max-height:110px;object-fit:contain;display:block}
 @media (min-width:861px){
  .c2c-trust-carousel .c2c-carousel-viewport{overflow:visible}
  .c2c-trust-carousel .c2c-carousel-track{display:flex !important;flex-wrap:nowrap;gap:16px;transform:none !important;transition:none !important;width:100%}
  .c2c-trust-carousel .c2c-carousel-slide{flex:1 1 0 !important;min-width:0 !important;width:auto !important}
 }
 /* EXEC SUMMARY */
 .c2c-exec-summary{background:linear-gradient(135deg,#eef4ff 0%,#f8fbff 100%);border-top:3px solid var(--red);border-bottom:1px solid var(--line);padding:28px 0}
 .c2c-exec-inner{max-width:980px;margin:0 auto;display:grid;grid-template-columns:auto 1fr;gap:20px;align-items:center}
 .c2c-exec-icon{width:52px;height:52px;border-radius:16px;background:linear-gradient(135deg,var(--red),var(--red-2));display:flex;align-items:center;justify-content:center;font-size:22px;flex:0 0 52px}
 .c2c-exec-text{font-size:15px;color:var(--text);line-height:1.7}
 .c2c-exec-text strong{color:var(--navy)}
 /* COURSES */
 .c2c-courses{background:var(--bg)}
 .c2c-course-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-bottom:26px}
 .c2c-course-card{background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column}
 .c2c-course-top{padding:18px 20px 16px;display:flex;justify-content:space-between;align-items:flex-start;gap:16px;color:#fff;background:linear-gradient(135deg,var(--navy) 0%, var(--navy-2) 100%)}
 .c2c-course-top.red{background:linear-gradient(135deg,var(--red) 0%, var(--red-2) 100%)}
 .c2c-tag{display:inline-flex;align-items:center;padding:6px 11px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase;white-space:nowrap}
 .c2c-course-card{min-width:0}
 .c2c-course-body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1;min-width:0}
 .c2c-course-body .c2c-disclosure{margin-top:auto}
 .c2c-course-body h3{margin:0 0 6px;font-family:'Poppins',sans-serif;font-size:24px;line-height:1.14;font-weight:800;color:var(--navy);letter-spacing:-.4px}
 .c2c-course-lead{margin:0 0 15px;font-size:14px;color:var(--muted)}
 .c2c-course-lead a,.c2c-next-box a,.c2c-emr-copy p a{color:var(--navy);font-weight:700;text-decoration:underline;text-decoration-color:rgba(24,58,132,.35);text-underline-offset:3px;transition:color .15s ease,text-decoration-color .15s ease}
 .c2c-course-lead a:hover,.c2c-next-box a:hover,.c2c-emr-copy p a:hover{color:var(--red);text-decoration-color:var(--red)}
 .c2c-chip-row{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 16px}
 .c2c-chip{display:inline-flex;align-items:center;padding:7px 10px;border-radius:999px;border:1px solid var(--line);background:#f7faff;color:var(--navy);font-size:11px;font-weight:800}
 .c2c-chip--red{background:rgba(216,77,58,.06);border-color:rgba(216,77,58,.22);color:var(--red)}
 .c2c-next-box{padding:14px 16px;border-radius:14px;border:1px solid var(--line);border-left:4px solid var(--red);background:#fff;margin:0 0 16px;font-size:14px;color:var(--muted);line-height:1.6}
 .c2c-next-box strong{display:block;font-size:13px;font-weight:800;color:var(--navy);margin-bottom:4px}
 .c2c-avail-row{display:flex;flex-wrap:wrap;align-items:center;gap:6px;margin:0 0 16px;padding:10px 12px;background:linear-gradient(90deg,#f0f6ff 0%,#f8fbff 100%);border-radius:12px;border:1px solid #d4e2f5}
 .c2c-feature-list{list-style:none;padding:0;margin:0 0 18px}
 .c2c-feature-list li{position:relative;padding:9px 0 9px 22px;border-bottom:1px solid #edf2f8;font-size:14px;color:var(--text)}
 .c2c-feature-list li:last-child{border-bottom:none}
 .c2c-feature-list li:before{content:'?';position:absolute;left:0;top:9px;color:var(--red);font-weight:900}
 .c2c-course-faq-a a,.c2c-faq-a a{color:var(--navy-2);font-weight:700;text-decoration:underline;text-decoration-color:rgba(24,58,132,.35);text-underline-offset:2px;transition:.15s ease}
 .c2c-course-faq-a a:hover,.c2c-faq-a a:hover{color:var(--red);text-decoration-color:var(--red)}
 .c2c-course-faq{margin:12px 0 0}
 .c2c-course-faq h5{font-size:12px;font-weight:800;letter-spacing:1.1px;text-transform:uppercase;color:var(--navy);margin:0 0 10px}
 .c2c-course-faq-item{border:1px solid var(--line);border-radius:12px;overflow:hidden;margin-bottom:8px}
 .c2c-course-faq-q{width:100%;background:#f8fbff;border:0;padding:11px 14px;text-align:left;display:flex;justify-content:space-between;gap:12px;font-size:13px;font-weight:700;color:var(--navy);cursor:pointer}
 .c2c-course-faq-a{display:none;padding:0 14px 12px;color:var(--muted);font-size:13px}
 .c2c-disclosure{border-top:1px solid var(--line);padding-top:16px;margin-top:8px}
 .c2c-disclosure-btn{width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;border:1px solid var(--line);background:#f8fbff;border-radius:14px;padding:13px 15px;color:var(--navy);font-size:13px;font-weight:800;cursor:pointer}
 .c2c-disclosure-content{display:none;padding:14px 4px 2px;color:var(--muted);font-size:14px}
 .c2c-disclosure-content p{margin:0 0 10px}
 .c2c-actions{display:flex;gap:10px;margin-top:18px}
 .c2c-actions .c2c-btn{flex:1}
 .c2c-provider-chooser{margin-top:20px;padding:16px;border:1px solid var(--line);border-radius:16px;background:#f8fbff;text-align:center}
 .c2c-provider-label{font-size:10px;font-weight:900;letter-spacing:1.2px;text-transform:uppercase;color:var(--muted);margin:0 0 10px}
 .c2c-provider-btns{display:flex;gap:10px}
 .c2c-btn-provider{flex:1;min-height:46px;border:2px solid var(--line);background:#fff;color:var(--navy);border-radius:12px;font-size:13px;font-weight:800;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;transition:.2s ease}
 .c2c-btn-provider:hover{border-color:var(--navy);background:var(--navy);color:#fff;transform:translateY(-1px);box-shadow:0 6px 18px rgba(15,35,79,.15)}
 /* EMR */
 .c2c-emr-spotlight{background:linear-gradient(135deg,#eef4ff 0%, #f8fbff 100%);border:1px solid var(--line);border-radius:26px;padding:28px 30px;display:grid;grid-template-columns:1.25fr .75fr;gap:24px;align-items:center;box-shadow:var(--shadow)}
 .c2c-emr-badge{display:inline-flex;align-items:center;padding:7px 12px;border-radius:999px;background:rgba(24,58,132,.08);border:1px solid rgba(24,58,132,.12);color:var(--navy-2);font-size:11px;font-weight:800;letter-spacing:1.3px;text-transform:uppercase;margin-bottom:14px}
 .c2c-emr-copy p{margin:0 0 14px;color:var(--muted);font-size:14px;max-width:660px}
 .c2c-emr-points{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:8px}
 .c2c-emr-point{background:#fff;border:1px solid var(--line);border-radius:16px;padding:14px;color:var(--navy);font-size:12px;font-weight:700;line-height:1.45}
 .c2c-emr-side{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px}
 .c2c-emr-side h4{margin:0 0 10px;font-family:'Poppins',sans-serif;font-size:18px;line-height:1.15;color:var(--navy)}
 .c2c-emr-side p{margin:0 0 14px;color:var(--muted);font-size:13px}
 .c2c-emr-mini{list-style:none;padding:0;margin:0 0 16px}
 .c2c-emr-mini li{display:flex;justify-content:space-between;gap:12px;padding:9px 0;border-bottom:1px solid var(--line);color:var(--muted);font-size:13px}
 .c2c-emr-mini li:last-child{border-bottom:none}
 .c2c-emr-mini strong{color:var(--navy);font-weight:800}
 /* CORPORATE */
 .c2c-corp-wrap{background:linear-gradient(135deg,var(--navy) 0%, var(--navy-2) 100%);border-radius:24px;padding:24px 30px;color:#fff;display:grid;grid-template-columns:80px 1.4fr auto auto;gap:24px;align-items:center;box-shadow:var(--shadow-lg)}
 .c2c-corp-icon{width:58px;height:58px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.10);font-size:28px}
 .c2c-corp-copy h3{margin:0 0 8px;font-family:'Poppins',sans-serif;font-size:28px;line-height:1.05;color:#fff}
 .c2c-corp-copy p{margin:0;color:rgba(255,255,255,.84);font-size:14px;max-width:620px}
 .c2c-corp-list{list-style:none;margin:0;padding:0}
 .c2c-corp-list li{color:rgba(255,255,255,.88);font-size:13px;font-weight:600;margin:5px 0;white-space:nowrap}
 .c2c-corp-list li:before{content:'?';color:#ff9e90;font-weight:900;margin-right:8px}
 /* AWARDS */
 .c2c-awards{background:var(--bg)}
 .c2c-awards-grid{display:flex;gap:18px;overflow:hidden}
 .c2c-awards-grid .c2c-carousel-slide{flex:0 0 calc((100% - 36px) / 3);min-width:0}
 .c2c-award-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:18px 16px;text-align:center;box-shadow:var(--shadow);min-height:290px;display:flex;flex-direction:column;justify-content:center}
 .c2c-award-imgwrap{width:100%;height:170px;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
 .c2c-award-img{max-width:100%;max-height:160px;width:auto;height:auto;object-fit:contain;display:block}
 .c2c-award-title{font-size:13px;font-weight:800;color:var(--navy);line-height:1.4}
 /* LOCATION */
 .c2c-location-wrap{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
 .c2c-panel{background:#fff;border:1px solid var(--line);border-radius:24px;padding:26px;box-shadow:var(--shadow)}
 .c2c-map{width:100%;min-height:320px;border-radius:16px;display:block;border:0}
 .c2c-review-summary{display:flex;flex-direction:column;gap:10px;margin-bottom:18px}
 .c2c-google-pill{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;background:#f8fbff;border:1px solid var(--line);font-size:12px;font-weight:800;color:var(--navy)}
 .c2c-google-logo{width:16px;height:16px;object-fit:contain}
 .c2c-rating-big{font-family:'Poppins',sans-serif;font-size:48px;font-weight:900;color:var(--navy);line-height:1}
 .c2c-stars{color:var(--gold);font-size:18px;letter-spacing:2px;line-height:1;margin-bottom:4px}
 .c2c-rating-copy{font-size:13px;color:var(--muted);font-weight:700}
 .c2c-map-actions{display:flex;gap:12px;margin-top:auto;padding-top:18px;width:100%}
 .c2c-map-actions .c2c-btn{flex:1 1 0;min-width:0}
 .c2c-geo-statement{display:none}
 .c2c-facilities-block{margin-top:22px}
 .c2c-facilities-header{display:flex;align-items:center;gap:10px;margin-bottom:14px}
 .c2c-facilities-header span{font-size:11px;font-weight:800;letter-spacing:1.3px;text-transform:uppercase;color:var(--navy-2)}
 .c2c-facilities-header:before{content:'';display:block;width:3px;height:18px;border-radius:2px;background:var(--red);flex-shrink:0}
 .c2c-facility-cards{display:grid;grid-template-columns:1fr;gap:10px;margin-bottom:14px}
 .c2c-facility-card{background:linear-gradient(145deg,#f8fbff 0%,#eef4ff 100%);border:1px solid #d4e2f7;border-radius:16px;padding:14px 15px;position:relative;overflow:hidden}
 .c2c-facility-card:before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--navy),var(--navy-2))}
 .c2c-facility-num{font-family:'Poppins',sans-serif;font-size:11px;font-weight:900;color:var(--red);letter-spacing:.5px;text-transform:uppercase;margin-bottom:6px;display:block}
 .c2c-facility-addr{font-size:13px;font-weight:700;color:var(--navy);line-height:1.4;margin-bottom:6px}
 .c2c-facility-tags{display:flex;flex-wrap:wrap;gap:5px}
 .c2c-facility-tag{display:inline-flex;align-items:center;gap:4px;font-size:10px;font-weight:700;color:#4a6a9a;background:rgba(15,35,79,.06);border-radius:999px;padding:3px 8px}
 .c2c-geo-compact{margin-top:16px;padding:14px 15px;background:#f4f8fe;border:1px solid #d0e0f5;border-radius:14px}
 .c2c-geo-compact-head{display:flex;align-items:flex-start;gap:7px;margin-bottom:10px;font-size:12px;font-weight:700;color:var(--navy);line-height:1.45}
 .c2c-geo-compact-head svg{flex-shrink:0;margin-top:1px;color:var(--red)}
 .c2c-geo-compact-pills{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:8px}
 .c2c-geo-cpill{display:inline-flex;align-items:center;padding:4px 10px;border-radius:999px;font-size:11px;font-weight:700;background:#fff;border:1px solid #c8d9f0;color:#4a6080;white-space:nowrap}
 .c2c-geo-cpill--blue{background:rgba(15,35,79,.07);border-color:rgba(15,35,79,.15);color:var(--navy);font-weight:800}
 .c2c-geo-cpill--link{text-decoration:none;cursor:pointer;transition:background .15s,border-color .15s,color .15s}
 .c2c-geo-cpill--link:hover{background:#e8f0fc;border-color:#3a6fd4;color:#1a3f8f}
 .c2c-geo-compact-divider{height:1px;background:#d8e8f5;margin:8px 0}
 .c2c-geo-compact-sub{font-size:10px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;color:#7a92b0;margin-bottom:7px}
 /* REVIEWS */
 .c2c-reviews{background:var(--bg)}
 .c2c-reviews-top{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;margin-bottom:22px}
 .c2c-reviews-head h2{margin:16px 0 8px;font-family:'Poppins',sans-serif;font-size:clamp(24px,2.7vw,34px);line-height:1.08;font-weight:900;color:var(--navy)}
 .c2c-reviews-head p{margin:0;color:var(--muted);font-size:15px}
 .c2c-reviews-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;align-items:stretch}
 .c2c-review-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:18px;box-shadow:var(--shadow);min-height:260px;height:100%;display:flex;flex-direction:column}
 .c2c-review-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}
 .c2c-review-user{display:flex;gap:10px;align-items:flex-start}
 .c2c-review-avatar{width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;font-weight:900;flex:0 0 38px}
 .c2c-review-meta strong{display:block;color:var(--navy);font-size:14px;line-height:1.2}
 .c2c-review-meta span{display:block;color:#8b98ae;font-size:12px;font-weight:700}
 .c2c-review-google{font-size:16px;color:#4285F4;font-weight:900}
 .c2c-review-stars{color:var(--gold);font-size:14px;letter-spacing:1.4px;margin-bottom:10px}
 .c2c-review-body{color:#43536c;font-size:14px;flex:1}
 .c2c-reviews-cta{text-align:center;margin-top:24px}
 /* COMPARE */
 .c2c-compare-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
 .c2c-compare-card{border-radius:24px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow);background:#fff;display:flex;flex-direction:column}
 .c2c-compare-card.dark{background:linear-gradient(155deg,var(--navy) 0%, #1e3770 55%, #253d7b 100%);color:#fff;border-color:rgba(255,255,255,.08)}
 .c2c-compare-head{padding:18px 20px;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:16px}
 .c2c-compare-card.dark .c2c-compare-head{border-bottom-color:rgba(255,255,255,.10)}
 .c2c-compare-head h3{margin:0;font-family:'Poppins',sans-serif;font-size:20px;line-height:1.1;color:inherit}
 .c2c-compare-head p{margin:2px 0 0;font-size:12px;font-weight:700;color:#93a1b4}
 .c2c-compare-card.dark .c2c-compare-head p{color:rgba(255,255,255,.78)}
 .c2c-compare-card.dark .c2c-compare-head h3{color:#fff}
 .c2c-compare-badge{display:inline-flex;align-items:center;padding:6px 12px;border-radius:999px;font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase;background:rgba(36,197,94,.12);color:#9af0b4;border:1px solid rgba(255,255,255,.18);white-space:nowrap}
 .c2c-score{padding:16px 20px 10px}
 .c2c-score strong{font-family:'Poppins',sans-serif;font-size:40px;line-height:1;font-weight:900}
 .c2c-score span{font-size:16px;font-weight:800;color:#8d9bb1}
 .c2c-compare-card.dark .c2c-score span{color:rgba(255,255,255,.72)}
 .c2c-score small{display:block;font-size:11px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:#8d9bb1;margin-top:4px}
 .c2c-compare-card.dark .c2c-score small{color:rgba(255,255,255,.72)}
 .c2c-bar{height:5px;border-radius:999px;background:#dbe4f0;margin-top:10px;overflow:hidden}
 .c2c-compare-card.dark .c2c-bar{background:rgba(255,255,255,.14)}
 .c2c-bar-fill{height:100%;border-radius:999px}
 .c2c-bar-fill.gray{width:40%;background:#9eadc2}
 .c2c-bar-fill.green{width:100%;background:#33d267}
 .c2c-compare-list{list-style:none;margin:0;padding:8px 0 16px;flex:1}
 .c2c-compare-list li{display:flex;align-items:flex-start;gap:10px;padding:12px 20px;border-top:1px solid #edf2f8;font-size:14px;color:#34445d;font-weight:600}
 .c2c-compare-card.dark .c2c-compare-list li{border-top-color:rgba(255,255,255,.08);color:rgba(255,255,255,.9)}
 .c2c-compare-icon{width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex:0 0 20px;font-size:12px;font-weight:900;margin-top:1px}
 .c2c-compare-icon.no{background:#fff1f1;color:#ef4444;border:1px solid #ffd2d2}
 .c2c-compare-icon.yes{background:#ebfff2;color:#22c55e;border:1px solid #c8f2d7}
 .c2c-compare-cta-wrap{display:flex;justify-content:center;margin-top:22px}
 .c2c-compare-cta-wrap .c2c-btn{min-width:320px}
 /* INSTRUCTORS */
 .c2c-inst-topbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
 .c2c-inst-topbar span{font-size:12px;font-weight:800;letter-spacing:1.1px;text-transform:uppercase;color:var(--navy)}
 .c2c-inst-topbar small{font-size:12px;color:var(--muted);font-weight:700}
 .c2c-instructors-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;align-items:stretch}
 .c2c-inst-card{background:#fff;border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow);padding:20px 20px 18px;position:relative;overflow:hidden;height:100%;display:flex;flex-direction:column;min-width:0}
 .c2c-inst-card:before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(180deg,var(--red),var(--navy-2))}
 .c2c-inst-head{display:flex;flex-direction:column;align-items:center;text-align:center;flex:1;gap:0}
 .c2c-inst-avatar{width:140px;height:140px;border-radius:50%;background:linear-gradient(135deg,var(--navy),var(--navy-2));color:#fff;display:flex;align-items:center;justify-content:center;flex:0 0 140px;font-size:28px;font-weight:900;overflow:hidden;border:4px solid #fff;box-shadow:0 6px 20px rgba(15,35,79,.18);margin-bottom:16px}
 .c2c-inst-avatar img{width:100%;height:100%;object-fit:cover;object-position:center top}
 .c2c-inst-content{display:flex;flex-direction:column;align-items:center;gap:0;flex:1}
 .c2c-inst-name{font-family:'Poppins',sans-serif;font-size:18px;font-weight:800;color:var(--navy);margin:0 0 4px;line-height:1.2}
 .c2c-inst-role{font-size:13px;font-weight:700;color:var(--muted);margin:0 0 12px}
 .c2c-inst-bio{font-size:13.5px;color:var(--text);line-height:1.6;margin:0 0 14px;text-align:center}
 .c2c-inst-verified{display:inline-flex;align-items:center;padding:5px 12px;border-radius:999px;background:rgba(34,168,97,.1);border:1px solid rgba(34,168,97,.2);color:var(--green);font-size:11px;font-weight:800;margin-bottom:12px}
 .c2c-inst-biolink{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:700;color:var(--navy-2);text-decoration:none;margin-top:auto}
 .c2c-inst-biolink:hover{color:var(--red)}
 .c2c-inst-biolink svg{width:14px;height:14px}
 /* INDUSTRY */
 .c2c-industry{background:var(--bg)}
 .c2c-industry-carousel{border-radius:24px;overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--line);margin-bottom:20px}
 .c2c-industry-slide{display:none;grid-template-columns:1fr 1fr;min-height:360px}
 .c2c-industry-slide.active{display:grid}
 .c2c-industry-text{display:flex;flex-direction:column;background:#fff}
 .c2c-industry-text-body{padding:32px 30px 20px;flex:1}
 .c2c-industry-text-body h3{font-family:'Poppins',sans-serif;font-size:26px;font-weight:900;color:var(--navy);margin:0 0 10px;line-height:1.1}
 .c2c-industry-text-body p{font-size:14px;color:var(--muted);margin:0 0 14px;line-height:1.65}
 .c2c-industry-text-body ul{list-style:none;padding:0;margin:0}
 .c2c-industry-text-body ul li{font-size:13.5px;color:var(--text);padding:6px 0 6px 20px;position:relative;border-bottom:1px solid #edf2f8}
 .c2c-industry-text-body ul li:last-child{border-bottom:none}
 .c2c-industry-text-body ul li:before{content:'?';position:absolute;left:0;color:var(--red);font-weight:900}
 .c2c-industry-text-cta{padding:16px 30px 24px;background:#fff;border-top:1px solid var(--line)}
 .c2c-industry-img{position:relative;overflow:hidden;min-height:280px}
 .c2c-industry-img img{width:100%;height:100%;object-fit:cover;display:block}
 .c2c-industry-img-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,35,79,.18),rgba(15,35,79,.04))}
 .c2c-industry-nav{display:flex;gap:10px;padding:16px 0 0}
 .c2c-industry-nav button{padding:10px 18px;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--navy);font-size:13px;font-weight:700;cursor:pointer;transition:.2s ease}
 .c2c-industry-nav button:hover{border-color:var(--navy);background:var(--navy);color:#fff}
 .c2c-industry-nav button.active{background:var(--navy);color:#fff;border-color:var(--navy)}
 /* VIDEO */
 .c2c-video-section{padding:52px 0;background:#fff}
 .c2c-video-head{text-align:center;margin-bottom:28px}
 .c2c-video-head h2{font-family:'Poppins',sans-serif;font-size:clamp(24px,2.8vw,36px);font-weight:900;color:var(--navy);margin:0 0 8px;line-height:1.1}
 .c2c-video-head p{color:var(--muted);font-size:15px;margin:0}
 .c2c-vw{position:relative;padding-bottom:56.25%;height:0;border-radius:20px;overflow:hidden;box-shadow:var(--shadow-lg)}
 .c2c-vw iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}
 /* FAQ */
 .c2c-faq{background:var(--bg)}
 .c2c-faq-list{max-width:860px;margin:0 auto}
 .c2c-faq-item{background:#fff;border:1px solid var(--line);border-radius:16px;margin-bottom:10px;overflow:hidden;box-shadow:0 4px 14px rgba(15,35,79,.04)}
 .c2c-faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;border:0;background:#fff;padding:16px 18px;text-align:left;font-size:14.5px;font-weight:800;color:var(--navy);cursor:pointer}
 .c2c-faq-q span{flex:0 0 22px;height:22px;border-radius:50%;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:900}
 .c2c-faq-a{display:none;padding:0 18px 16px;color:var(--muted);font-size:14px;line-height:1.7}
 .c2c-faq-a p{margin:0}
 /* GROUP BAR */
 .c2c-group-bar{display:flex;align-items:center;justify-content:space-between;gap:24px;background:linear-gradient(135deg,var(--navy) 0%, var(--navy-2) 100%);border-radius:24px;padding:28px 32px;box-shadow:var(--shadow-lg)}
 .c2c-group-bar h3{margin:0 0 8px;font-family:'Poppins',sans-serif;font-size:26px;color:#fff;font-weight:900}
 .c2c-group-bar p{margin:0;color:rgba(255,255,255,.84);font-size:14px;max-width:600px}
 /* BLOG */
 .c2c-blog{background:var(--bg)}
 .c2c-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
 .c2c-blog-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;text-decoration:none;box-shadow:var(--shadow);transition:.22s ease}
 .c2c-blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
 .c2c-blog-img{width:100%;height:190px;object-fit:cover;display:block}
 .c2c-blog-body{padding:18px;display:flex;flex-direction:column;flex:1}
 .c2c-blog-kicker{font-size:10px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase;color:var(--red);margin-bottom:8px;display:block}
 .c2c-blog-title{font-family:'Poppins',sans-serif;font-size:16px;font-weight:800;color:var(--navy);margin:0 0 8px;line-height:1.3}
 .c2c-blog-excerpt{font-size:13px;color:var(--muted);line-height:1.6;margin:0 0 14px;flex:1}
 .c2c-blog-meta{display:flex;justify-content:space-between;align-items:center;font-size:12px;color:var(--muted);font-weight:700;margin-top:auto}
 .c2c-blog-readmore{color:var(--red)}
 /* ENTITIES */
 b.entity{color:var(--navy);font-weight:800}
 .c2c-corp-wrap b.entity,.c2c-group-bar b.entity,.c2c-hero b.entity,.c2c-compare-card.dark b.entity{color:#fff;font-weight:800}
 .c2c-hero b.entity{color:#ffcdc6}
 /* LOCATION LAYOUT FIX */
 .c2c-location-wrap{display:grid !important;grid-template-columns:1fr 1fr !important;gap:24px !important;align-items:stretch !important}
 .c2c-location-wrap > .c2c-panel:first-child{display:flex !important;flex-direction:column !important}
 .c2c-location-wrap > .c2c-panel:first-child .c2c-facilities-block{margin-top:auto !important}
 .c2c-loc-cta{margin-top:20px !important;flex-shrink:0 !important;display:flex !important;align-items:center !important;justify-content:center !important;width:100% !important;box-sizing:border-box !important}
 .c2c-map-panel{display:flex !important;flex-direction:column !important}
 .c2c-map-panel .c2c-map{flex:1 1 auto !important;min-height:220px !important}
 @media (max-width:860px){
  .c2c-container{padding:0 16px}
  .c2c-section{padding:46px 0}
  .c2c-section-tight{padding:34px 0}
  .c2c-hero{padding:42px 0 36px}
  .c2c-hero-grid{grid-template-columns:1fr}
  .c2c-hero-copy{display:none}
  .c2c-hero-title{font-size:clamp(26px,7.5vw,36px);margin-bottom:10px;letter-spacing:-.6px}
  .c2c-hero-sub{font-size:15px;margin-bottom:18px}
  .c2c-course-grid,.c2c-location-wrap,.c2c-compare-grid{grid-template-columns:1fr}
  .c2c-reviews-top,.c2c-group-bar{flex-direction:column;align-items:flex-start}
  .c2c-panel,.c2c-course-body{padding:20px}
  .c2c-review-summary{flex-direction:column;align-items:flex-start}
  .c2c-emr-spotlight{grid-template-columns:1fr;padding:22px 20px}
  .c2c-emr-points{grid-template-columns:1fr}
  .c2c-corp-wrap{grid-template-columns:1fr;text-align:left;padding:20px 18px}
  .c2c-corp-icon{display:none}
  .c2c-corp-copy h3{font-size:22px;line-height:1.2;word-break:break-word}
  .c2c-corp-copy p{font-size:13px}
  .c2c-corp-list li{white-space:normal;font-size:12px}
  .c2c-corp-wrap .c2c-btn{width:100%;justify-content:center;margin-top:4px}
  .c2c-btn-row,.c2c-hero-pills{justify-content:center;width:100%}
  .c2c-facility-cards{grid-template-columns:1fr}
  .c2c-exec-inner{grid-template-columns:1fr;gap:12px}
  .c2c-exec-icon{display:none}
  .c2c-industry-slide.active{grid-template-columns:1fr;display:flex;flex-direction:column}
  .c2c-industry-img{min-height:200px}
  .c2c-industry-text-body{padding:20px 18px 14px}
  .c2c-industry-text-cta{padding:12px 18px}
  .c2c-industry-text-body h3{font-size:22px}
  .c2c-industry-nav{flex-wrap:wrap;justify-content:center}
  .c2c-industry-nav button{padding:8px 14px;font-size:12px}
  .c2c-carousel .c2c-carousel-viewport{overflow:hidden}
  .c2c-carousel .c2c-carousel-track{display:flex;transition:transform .45s cubic-bezier(.22,1,.36,1);will-change:transform;touch-action:pan-y}
  .c2c-carousel .c2c-carousel-slide{min-width:100%;flex:0 0 100%}
  .c2c-reviews-grid,.c2c-instructors-grid,.c2c-blog-grid{display:block}
  .c2c-carousel-arrow{display:flex !important}
  .c2c-carousel-dots{display:flex !important}
  .c2c-trust-carousel .c2c-carousel-viewport{overflow:hidden !important}
  .c2c-trust-carousel .c2c-carousel-track{display:flex !important;gap:0 !important;width:100% !important;transition:transform .45s cubic-bezier(.22,1,.36,1) !important;will-change:transform}
  .c2c-trust-carousel .c2c-carousel-slide{flex:0 0 100% !important;min-width:100% !important;width:100% !important}
  .c2c-trust-card{min-height:120px;padding:10px}
  .c2c-trust-badge{max-width:250px;max-height:90px}
  .c2c-map{min-height:340px}
  .c2c-map-actions{flex-direction:column;align-items:stretch}
  .c2c-map-actions .c2c-btn{width:100%}
  .c2c-compare-cta-wrap .c2c-btn{min-width:0;width:100%}
  .c2c-vw{border-radius:14px}
  .c2c-location-wrap{grid-template-columns:1fr !important}
  .c2c-location-wrap > .c2c-panel:first-child{display:block !important}
  .c2c-location-wrap > .c2c-panel:first-child .c2c-facilities-block{margin-top:20px !important}
  .c2c-loc-cta{margin-top:16px !important}
  .c2c-map-panel .c2c-map{min-height:240px !important}
 }
 @media (min-width:861px) and (max-width:1100px){
  .c2c-corp-wrap{grid-template-columns:70px 1fr;gap:18px}
  .c2c-corp-list{grid-column:1 / -1}
 }

 /* Fix: compare cards equal height on desktop */
 @media (min-width:861px){
  .c2c-compare-grid.c2c-carousel-track{
   display:grid !important;
   grid-template-columns:1fr 1fr !important;
   gap:18px !important;
   transform:none !important;
   align-items:stretch !important;
  }
  .c2c-compare-grid .c2c-carousel-slide{
   height:auto !important;
  }
  .c2c-compare-grid .c2c-compare-card{
   height:100% !important;
  }
 }

/* -----------------------------------------------------------------------
   ADDITIONS (June 2026): Location+Reviews, Gallery+Lightbox, Instructors+Video,
   and the 3-card blog grid. Uses the var() tokens defined above.
   ----------------------------------------------------------------------- */

/* -----------------------------------------------------------------------
   2 - LOCATION + REVIEWS
   ----------------------------------------------------------------------- */
.c2c-mr-section{padding:52px 0;overflow:hidden}
   .c2c-mr-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:28px}
   .c2c-mr-left,.c2c-mr-right{min-width:0}
   .c2c-mr-left,.c2c-mr-right{display:flex;flex-direction:column}

   /* LEFT card */
   .c2c-mr-info-panel{display:flex;flex-direction:column;flex:1;
     border-radius:24px;overflow:hidden;
     border:1px solid var(--line);box-shadow:var(--shadow);background:#fff}
   .c2c-mr-loc-header{padding:18px 22px 16px;flex-shrink:0;
     background:linear-gradient(135deg,var(--red) 0%,var(--red-2) 100%);
     display:flex;justify-content:space-between;align-items:flex-start;gap:12px}
   .c2c-mr-loc-title{font-family:'Poppins',sans-serif;font-size:17px;font-weight:800;
     color:#fff;line-height:1.2;margin:0}
   .c2c-mr-loc-subtitle{font-size:11px;color:rgba(255,255,255,.70);margin-top:3px}
   .c2c-mr-loc-badge{display:inline-flex;align-items:center;padding:4px 10px;
     border-radius:999px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);
     font-size:10px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;
     color:#fff;white-space:nowrap;flex-shrink:0}
   .c2c-mr-loc-body{flex:1;display:flex;flex-direction:column;padding:20px 22px 12px}
   .c2c-loc-cta{margin-top:auto !important;min-height:44px;padding:9px 16px;font-size:13px}
   /* Combined single card - flat sections separated by light dividers */
   .c2c-loc-identity{margin:0 0 14px;padding:0 0 14px;background:none;
     border:0;border-bottom:1px solid var(--line);box-shadow:none;border-radius:0;
     display:flex;flex-direction:column;gap:8px}
   .c2c-loc-name{font-family:'Poppins',sans-serif;font-size:15px;font-weight:800;
     color:var(--navy);line-height:1.2}
   .c2c-loc-row{display:flex;align-items:flex-start;gap:7px;font-size:13px;
     color:var(--text);line-height:1.4;font-weight:500}
   .c2c-facilities-block{margin:0 0 14px;padding:0 0 14px;border-bottom:1px solid var(--line)}
   .c2c-facility-cards{margin-bottom:0}
   .c2c-facility-card{background:none !important;border:0 !important;border-radius:0 !important;
     box-shadow:none !important;padding:0 !important}
   .c2c-facility-card:before{display:none !important}
   .c2c-geo-compact{padding:0;background:none;border:0;border-radius:0;box-shadow:none;margin:0}
   .c2c-loc-about{margin:14px 0 24px;padding:14px 0 0;border-top:1px solid var(--line);
     font-size:12.5px;line-height:1.6;color:var(--muted)}
   .c2c-loc-about .entity{color:var(--navy);font-weight:700}

   /* RIGHT card */
   .c2c-mr-right-card{display:flex;flex-direction:column;flex:1;
     border-radius:24px;overflow:hidden;padding:0 !important}
   .c2c-mr-about-block{flex-shrink:0;border-bottom:1px solid var(--line)}
   .c2c-mr-about-header{padding:20px 24px 16px;
     background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%);
     display:flex;justify-content:space-between;align-items:flex-start;gap:12px}
   .c2c-mr-about-title{font-family:'Poppins',sans-serif;font-size:17px;font-weight:800;
     color:#fff;line-height:1.2;margin:0}
   .c2c-mr-about-badge{display:inline-flex;align-items:center;padding:4px 10px;
     border-radius:999px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);
     font-size:10px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;
     color:#fff;white-space:nowrap;flex-shrink:0}
   .c2c-mr-about-body{padding:16px 24px 18px;background:#fff}
   .c2c-mr-about-body p{font-size:14px;color:var(--text);line-height:1.65;margin:0}
   .c2c-mr-about-block ~ *{padding-left:24px;padding-right:24px}
   .c2c-mr-reviews-head{padding-top:6px;flex-shrink:0}
   .c2c-mr-reviews-title{font-family:'Poppins',sans-serif;font-size:clamp(15px,1.2vw,18px);
     font-weight:900;color:var(--navy);margin:0 0 8px;line-height:1.2}
   .c2c-mr-reviews-sub{color:var(--muted);font-size:13px;margin:0 0 10px}
   .c2c-mr-right .c2c-rating-big{font-size:24px !important}
   .c2c-reviews-cta{flex-shrink:0;padding-bottom:8px}
   .c2c-reviews-cta .c2c-btn{min-height:38px;font-size:13px;padding:0 20px}
   .c2c-map-wrapper{flex:1;display:flex;flex-direction:column;padding-left:0 !important;padding-right:0 !important;min-height:0}
   .c2c-mr-map-wrap{flex:1;display:flex;flex-direction:column;min-height:180px;
     border-radius:0 0 24px 24px;overflow:hidden;background:#f0f0f0}
   .c2c-mr-map{display:block;width:100%;flex:1;min-height:180px;border:0}
   .c2c-map-actions{display:flex;align-items:stretch;gap:12px;padding:14px 16px 16px;
     background:#fff;border-top:1px solid var(--line)}
   .c2c-map-actions .c2c-btn{flex:1 1 0;min-width:0;text-align:center;font-size:13px;
     min-height:44px;padding:9px 12px}

   /* Carousel */
   .c2c-mr-carousel{flex-shrink:0;position:relative;padding:0 20px}
   .c2c-mr-carousel .c2c-carousel-viewport{overflow:hidden !important;border-radius:16px}
   .c2c-mr-carousel .c2c-carousel-track{display:flex !important;flex-wrap:nowrap !important;
     transition:transform .45s cubic-bezier(.22,1,.36,1)}
   .c2c-mr-carousel .c2c-carousel-slide{flex:0 0 100% !important;min-width:100% !important}
   .c2c-mr-carousel .c2c-carousel-arrow{display:flex !important;position:absolute;
     top:50%;transform:translateY(-50%);z-index:4;width:32px;height:32px;border-radius:50%;
     background:#fff;border:1px solid var(--line);box-shadow:0 2px 8px rgba(0,0,0,.15);
     align-items:center;justify-content:center;cursor:pointer}
   .c2c-mr-carousel .c2c-carousel-arrow.prev{left:0}
   .c2c-mr-carousel .c2c-carousel-arrow.next{right:0}
   .c2c-mr-carousel .c2c-carousel-arrow svg{width:15px;height:15px;color:var(--navy)}
   .c2c-mr-carousel .c2c-carousel-dots{display:flex !important;
     justify-content:center;gap:6px;margin-top:10px}
   .c2c-mr-carousel .c2c-carousel-dots button{width:8px;height:8px;border-radius:50%;
     background:var(--line);border:none;padding:0;cursor:pointer;transition:all .2s}
   .c2c-mr-carousel .c2c-carousel-dots button.active{width:20px;border-radius:999px;background:var(--red)}
   .c2c-mr-card{min-height:120px !important;display:flex;flex-direction:column;
     padding:18px 20px 16px !important;background:#fff !important;
     border:1px solid rgba(42,60,144,.08) !important;border-radius:18px !important;
     box-shadow:0 12px 30px rgba(42,60,144,.09), 0 2px 6px rgba(42,60,144,.05) !important;
     position:relative;overflow:hidden}
   .c2c-mr-card::after{content:'\201D';position:absolute;right:16px;bottom:-42px;
     font-family:Georgia,'Times New Roman',serif;font-size:150px;line-height:1;
     color:rgba(42,60,144,.05);pointer-events:none;z-index:0}
   .c2c-mr-card > *{position:relative;z-index:1}
   .c2c-mr-card .c2c-review-body{flex:1;font-size:14px;line-height:1.6;color:#3c4a60}
   .c2c-mr-card .c2c-review-head{align-items:center}
   .c2c-mr-card .c2c-review-avatar{width:42px;height:42px;flex:0 0 42px;font-size:15px;
     box-shadow:0 0 0 2px #fff, 0 3px 8px rgba(0,0,0,.16)}
   .c2c-mr-card .c2c-review-meta strong{font-weight:800;font-size:14px}
   .c2c-mr-card .c2c-review-google{width:20px;height:20px;flex-shrink:0;display:block}
   .c2c-mr-card .c2c-review-stars{font-size:15px;letter-spacing:2.5px;margin-bottom:12px}
   .c2c-reviews-incard-cta{position:absolute;top:23px;right:70px;
     z-index:5;white-space:nowrap;min-height:30px;font-size:11.5px;padding:0 13px;border-radius:9px}

   @media(max-width:767px){
    .c2c-mr-section{padding:34px 0}
    .c2c-mr-grid{grid-template-columns:minmax(0,1fr);gap:20px}
    .c2c-mr-map{height:200px}
    .c2c-mr-map-wrap,.c2c-mr-info-panel{max-width:100%;box-sizing:border-box}
    .c2c-reviews-incard-cta{top:auto;bottom:16px;right:16px}
   }

/* -----------------------------------------------------------------------
   3 - GALLERY + IMAGE LIGHTBOX
   ----------------------------------------------------------------------- */
.c2c-gallery-section{padding:54px 0;background:#fff}
   .c2c-gallery-head{text-align:center;margin-bottom:26px}
   .c2c-gallery-kicker{display:inline-block;color:var(--red);font-size:11px;font-weight:800;
     letter-spacing:1.4px;text-transform:uppercase;margin-bottom:10px}
   .c2c-gallery-title{font-family:'Poppins',sans-serif;font-size:clamp(24px,2.6vw,34px);
     font-weight:900;color:var(--navy);margin:0;line-height:1.12}
   .c2c-gallery-carousel{position:relative;padding:0 50px}
   .c2c-gallery-viewport{overflow:hidden}
   .c2c-gallery-track{display:flex;transition:transform .55s cubic-bezier(.22,1,.36,1);will-change:transform}
   .c2c-gallery-slide{flex:0 0 33.3333%;min-width:0;box-sizing:border-box;padding:0 8px}
   .c2c-gallery-img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:0;display:block;
     background:#e9eff8;box-shadow:0 6px 20px rgba(42,60,144,.10);cursor:zoom-in;transition:.25s ease}
   .c2c-gallery-img:hover{box-shadow:0 12px 30px rgba(42,60,144,.20);transform:translateY(-2px)}
   .c2c-gallery-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:3;
     width:42px;height:42px;border-radius:50%;background:#fff;border:1px solid var(--line);
     box-shadow:0 3px 12px rgba(0,0,0,.12);cursor:pointer;display:flex;align-items:center;
     justify-content:center;transition:.2s ease}
   .c2c-gallery-arrow:hover{background:var(--navy);border-color:var(--navy)}
   .c2c-gallery-arrow:hover svg{color:#fff}
   .c2c-gallery-arrow svg{width:18px;height:18px;color:var(--navy)}
   .c2c-gallery-arrow.prev{left:0}
   .c2c-gallery-arrow.next{right:0}
   .c2c-gallery-dots{display:flex;justify-content:center;gap:7px;margin-top:20px}
   .c2c-gallery-dots button{width:9px;height:9px;border-radius:50%;background:var(--line);
     border:none;padding:0;cursor:pointer;transition:all .2s}
   .c2c-gallery-dots button.active{width:24px;border-radius:999px;background:var(--red)}
   @media(max-width:900px){ .c2c-gallery-slide{flex-basis:50%} }
   @media(max-width:600px){
    .c2c-gallery-section{padding:38px 0}
    .c2c-gallery-carousel{padding:0 40px}
    .c2c-gallery-slide{flex-basis:100%}
   }

   /* Image lightbox */
   .c2c-img-modal{position:fixed;inset:0;z-index:99999;display:none;
     align-items:center;justify-content:center;padding:30px}
   .c2c-img-modal.is-open{display:flex}
   .c2c-img-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.88);
     backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px)}
   .c2c-img-modal-fig{position:relative;margin:0;max-width:1100px;max-height:90vh;
     display:flex;flex-direction:column;align-items:center;animation:c2cImgIn .25s ease}
   .c2c-img-modal-fig img{max-width:100%;max-height:82vh;width:auto;height:auto;
     display:block;box-shadow:0 24px 70px rgba(0,0,0,.55)}
   .c2c-img-modal-cap{color:#e8edf5;font-size:13px;margin-top:12px;text-align:center;max-width:90vw}
   .c2c-img-modal-close{position:absolute;top:-46px;right:0;width:40px;height:40px;
     border-radius:50%;border:none;background:#fff;color:#111;font-size:26px;line-height:1;
     cursor:pointer;display:flex;align-items:center;justify-content:center;
     box-shadow:0 4px 14px rgba(0,0,0,.3);transition:transform .15s ease}
   .c2c-img-modal-close:hover{transform:scale(1.08)}
   @keyframes c2cImgIn{from{opacity:0;transform:scale(.97)}to{opacity:1;transform:none}}
   @media(max-width:600px){
    .c2c-img-modal{padding:18px}
    .c2c-img-modal-close{top:auto;bottom:-50px;right:50%;transform:translateX(50%)}
    .c2c-img-modal-close:hover{transform:translateX(50%) scale(1.08)}
   }

/* -----------------------------------------------------------------------
   4 - INSTRUCTORS + VIDEO
   ----------------------------------------------------------------------- */
.c2c-ivid-section{padding:4px 0 44px}
   .c2c-ivid-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:32px;align-items:stretch}
   .c2c-ivid-left,.c2c-ivid-right{min-width:0}
   /* Make the instructor side fill the same height as the video side */
   .c2c-ivid-carousel{flex:1;display:flex;flex-direction:column;min-height:0}
   .c2c-ivid-carousel .c2c-carousel-viewport{flex:1;min-height:0}
   .c2c-ivid-carousel .c2c-carousel-track{height:100%}
   .c2c-ivid-inst-card{height:100%}

   /* -- LEFT: carousel forced into single-slide slider mode -- */
   .c2c-ivid-left{display:flex;flex-direction:column}
   /* Override shared-CSS display:contents on desktop */
   .c2c-ivid-carousel .c2c-carousel-viewport{overflow:hidden !important;border-radius:16px}
   .c2c-ivid-carousel .c2c-carousel-track{
     display:flex !important;
     flex-wrap:nowrap !important;
     transition:transform .45s cubic-bezier(.22,1,.36,1);
     will-change:transform}
   .c2c-ivid-carousel .c2c-carousel-slide{
     flex:0 0 100% !important;
     min-width:100% !important}
   /* Show arrows + dots (shared hides them on desktop by default) */
   .c2c-ivid-carousel .c2c-carousel-arrow{display:flex !important;
     position:absolute;top:50%;transform:translateY(-50%);z-index:2;
     width:32px;height:32px;border-radius:50%;
     background:#fff;border:1px solid var(--line);
     box-shadow:0 2px 8px rgba(0,0,0,.1);
     align-items:center;justify-content:center;cursor:pointer}
   .c2c-ivid-carousel .c2c-carousel-arrow.prev{left:8px}
   .c2c-ivid-carousel .c2c-carousel-arrow.next{right:8px}
   .c2c-ivid-carousel .c2c-carousel-arrow svg{width:16px;height:16px;color:var(--navy)}
   .c2c-ivid-carousel .c2c-carousel-dots{display:flex !important;
     justify-content:center;gap:6px;margin-top:10px}
   .c2c-ivid-carousel .c2c-carousel-dots button{
     width:8px;height:8px;border-radius:50%;
     background:var(--line);border:none;padding:0;cursor:pointer;transition:all .2s}
   .c2c-ivid-carousel .c2c-carousel-dots button.active{
     width:20px;border-radius:999px;background:var(--red)}

   /* -- Card: compact horizontal layout -- */
   .c2c-ivid-inst-card{display:flex;flex-direction:row;align-items:center;gap:16px;
     background:#fff;border:1px solid var(--line);border-radius:16px;
     box-shadow:var(--shadow);padding:18px 20px 18px 22px;
     position:relative;overflow:hidden;min-height:0}
   .c2c-ivid-inst-card::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;
     background:linear-gradient(180deg,var(--red),var(--navy-2))}
   .c2c-ivid-avatar{flex-shrink:0;width:72px;height:72px;border-radius:50%;overflow:hidden;
     border:2px solid var(--line);background:var(--bg)}
   .c2c-ivid-avatar img{width:100%;height:100%;object-fit:cover;object-position:center top}
   .c2c-ivid-inst-body{flex:1;min-width:0}
   .c2c-ivid-inst-name{font-family:'Poppins',sans-serif;font-size:15px;font-weight:800;
     color:var(--navy);margin:0 0 2px;line-height:1.2}
   .c2c-ivid-inst-role{font-size:11.5px;font-weight:700;color:var(--muted);margin:0 0 7px;line-height:1.4}
   .c2c-ivid-inst-bio{font-size:12.5px;color:var(--text);line-height:1.55;margin:0 0 10px}
   .c2c-ivid-inst-footer{display:flex;align-items:center;justify-content:space-between;
     gap:8px;flex-wrap:wrap}

   /* -- RIGHT: video -- */
   .c2c-ivid-right{display:flex;flex-direction:column;gap:10px}
   .c2c-ivid-vid-label{font-family:'Poppins',sans-serif;font-size:14px;font-weight:800;
     color:var(--navy);margin:0;padding-bottom:4px;
     border-bottom:2px solid var(--red);display:inline-block;align-self:flex-start}
   .c2c-ivid-vw{position:relative;width:100%;border-radius:14px;overflow:hidden;
     box-shadow:var(--shadow-lg);aspect-ratio:16/9;background:#000}
   .c2c-ivid-vw iframe,.c2c-ivid-vw .rll-youtube-player,
   .c2c-ivid-vw .rll-youtube-player>div{position:absolute;top:0;left:0;width:100%;height:100%;border:0}
   .c2c-ivid-vw img{width:100%;height:100%;object-fit:cover;display:block}
   .c2c-ivid-vw .play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
     width:56px;height:56px;border-radius:50%;background:rgba(220,0,0,.85);border:none;cursor:pointer}
   .c2c-ivid-vw .play::after{content:'';display:block;width:0;height:0;
     border-style:solid;border-width:10px 0 10px 18px;
     border-color:transparent transparent transparent #fff;margin-left:5px}
   .c2c-video-trigger{display:block;padding:0;font:inherit;color:inherit;cursor:pointer}
   .c2c-video-trigger .play{transition:transform .2s ease,background .2s ease}
   .c2c-video-trigger:hover .play,.c2c-video-trigger:focus-visible .play{
     background:rgba(220,0,0,1);transform:translate(-50%,-50%) scale(1.08)}
   .c2c-video-trigger:focus-visible{outline:3px solid var(--navy);outline-offset:3px}

   /* Video lightbox */
   .c2c-vid-modal{position:fixed;inset:0;z-index:99999;display:none;
     align-items:center;justify-content:center;padding:24px}
   .c2c-vid-modal.is-open{display:flex}
   .c2c-vid-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.85);
     backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px)}
   .c2c-vid-modal-inner{position:relative;width:min(980px,100%);animation:c2cVidIn .25s ease}
   .c2c-vid-modal-frame{position:relative;width:100%;aspect-ratio:16/9;background:#000;
     border-radius:16px;overflow:hidden;box-shadow:0 24px 70px rgba(0,0,0,.55)}
   .c2c-vid-modal-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
   .c2c-vid-modal-close{position:absolute;top:-46px;right:0;width:38px;height:38px;
     border-radius:50%;border:none;background:#fff;color:#111;font-size:26px;line-height:1;
     cursor:pointer;display:flex;align-items:center;justify-content:center;
     box-shadow:0 4px 14px rgba(0,0,0,.3);transition:transform .15s ease}
   .c2c-vid-modal-close:hover{transform:scale(1.08)}
   @keyframes c2cVidIn{from{opacity:0;transform:translateY(12px) scale(.98)}to{opacity:1;transform:none}}
   @media(max-width:767px){
    .c2c-vid-modal-close{top:auto;bottom:-48px;right:50%;transform:translateX(50%)}
    .c2c-vid-modal-close:hover{transform:translateX(50%) scale(1.08)}
   }

   /* -- Mobile -- */
   @media(max-width:767px){
    .c2c-ivid-grid{grid-template-columns:1fr;gap:24px}
    .c2c-ivid-section{padding:4px 0 34px}
    .c2c-ivid-inst-card{padding:14px 16px}
    .c2c-ivid-avatar{width:60px;height:60px}
   }


/* -----------------------------------------------------------------------
   5 - COMPACT LOCATION FINDER (replaces neighbourhood/landmark chips)
   ----------------------------------------------------------------------- */
.c2c-loc-finder{margin:0 0 14px;padding:14px 0;border-bottom:1px solid var(--line)}
.c2c-loc-finder-head{
  display:flex;align-items:center;gap:6px;
  margin-bottom:10px;font-size:12px;font-weight:700;color:var(--navy)}
.c2c-loc-finder-head svg{flex-shrink:0;color:var(--red)}
.c2c-loc-finder-head span{flex:1}
.c2c-loc-finder-all{
  font-size:11px;font-weight:700;color:var(--red);
  text-decoration:none;white-space:nowrap}
.c2c-loc-finder-all:hover{text-decoration:underline}
.c2c-loc-finder-row{display:flex;gap:8px;align-items:stretch}
.c2c-loc-finder-select-wrap{position:relative;flex:1;min-width:0}
.c2c-loc-finder-select{
  width:100%;height:38px;padding:0 30px 0 10px;
  border:1px solid var(--line);border-radius:8px;
  background:#fff;font-size:13px;color:var(--navy);
  font-family:inherit;cursor:pointer;
  -webkit-appearance:none;appearance:none}
.c2c-loc-finder-select:focus{outline:2px solid var(--navy);outline-offset:1px}
.c2c-loc-finder-chevron{
  position:absolute;right:9px;top:50%;transform:translateY(-50%);
  pointer-events:none;color:var(--muted)}
.c2c-loc-finder-go{
  flex-shrink:0;height:38px;min-height:38px;
  padding:0 14px;font-size:13px;white-space:nowrap}
.c2c-loc-finder-go[aria-disabled="true"]{
  opacity:.45;pointer-events:none}

/* -- BLS spotlight card - match white course card background -- */
.c2c-emr-spotlight{background:#fff !important}

/* -- Location intro band (Image 3 style) --------------------------- */
.c2c-loc-intro-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0 40px;
  text-align: center;
}
.c2c-loc-intro-band .c2c-eyebrow { margin-bottom: 16px; }
.c2c-loc-intro-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.8px;
  line-height: 1.08;
  margin: 0 0 18px;
}
.c2c-loc-intro-para {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
}
@media (max-width: 860px) {
  .c2c-loc-intro-band { padding: 40px 0 36px; }
  .c2c-loc-intro-heading { font-size: clamp(24px, 6vw, 32px); }
}

/* -- Location identity block (in left panel) ----------------------- */
.c2c-loc-identity-block {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.c2c-loc-biz-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.c2c-loc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 7px;
}

/* -- Landmark cards -------------------------------------------------- */
.c2c-lm-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.c2c-lm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 18px;
}
.c2c-lm-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
  min-width: 0;
}
.c2c-lm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15,35,79,.28);
}
.c2c-lm-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(216,77,58,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb3a7;
}
.c2c-lm-info { flex: 1; min-width: 0; }
.c2c-lm-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.c2c-lm-area {
  font-size: 10.5px;
  color: rgba(255,255,255,.62);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c2c-lm-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,.45);
  transition: color .15s ease, transform .15s ease;
}
.c2c-lm-card:hover .c2c-lm-arrow {
  color: rgba(255,255,255,.95);
  transform: translate(2px,-2px);
}
.c2c-lm-divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 16px;
}
@media (max-width: 500px) { .c2c-lm-grid { grid-template-columns: 1fr; } }

/* -- Instructor carousel: DESKTOP = 3-up grid, MOBILE = 1-card carousel -- */
.c2c-inst-carousel-wrap { max-width: 720px; margin: 0 auto; }
.c2c-inst-carousel { position: relative; }
.c2c-inst-viewport { overflow: hidden; border-radius: 20px; }
.c2c-inst-track { display: flex; transition: transform .45s cubic-bezier(.22,1,.36,1); will-change: transform; }
.c2c-inst-slide { flex: 0 0 100%; min-width: 100%; }
.c2c-inst-card { display: flex; flex-direction: row; background: #fff; border: 1px solid #e8e8e8; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); min-height: 320px; }
.c2c-inst-photo-wrap { flex: 0 0 260px; width: 260px; overflow: hidden; background: #f0f0f0; }
.c2c-inst-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.c2c-inst-card-body { flex: 1; padding: 32px 30px; display: flex; flex-direction: column; justify-content: center; }
.c2c-inst-card-name { font-size: 22px; font-weight: 800; color: #111; margin: 0 0 6px; }
.c2c-inst-card-role { font-size: 13px; font-weight: 600; color: #c0392b; margin: 0 0 16px; line-height: 1.4; }
.c2c-inst-card-bio { font-size: 15px; color: #555; line-height: 1.7; margin: 0 0 20px; flex: 1; }
.c2c-inst-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.c2c-inst-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid #e0e0e0; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.10); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; color: var(--navy); transition: background .18s ease; }
.c2c-inst-arrow:hover { background: #f4f7fc; }
.c2c-inst-arrow--prev { left: -22px; }
.c2c-inst-arrow--next { right: -22px; }
.c2c-inst-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.c2c-inst-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: #cfd8e6; cursor: pointer; padding: 0; transition: all .2s ease; }
.c2c-inst-dots button.active { width: 24px; border-radius: 999px; background: #c0392b; }

/* desktop 3-up grid removed - instructors always carousel */

/* -- Mobile instructor ------------------------------------------------ */
@media (max-width: 600px) {
  .c2c-inst-card { flex-direction: column !important; min-height: 0; }
  .c2c-inst-photo-wrap { flex: 0 0 auto !important; width: 100% !important; height: 220px !important; }
  .c2c-inst-card-body { padding: 22px 20px !important; }
  .c2c-inst-card-name { font-size: 18px !important; }
  .c2c-inst-arrow--prev { left: -4px; }
  .c2c-inst-arrow--next { right: -4px; }
}

/* -- Awards scroll --------------------------------------------------- */
.c2c-awards-brevo{padding:72px 0 80px;background:#fff;overflow:hidden}
.c2c-awards-brevo .c2c-container{text-align:center}
.c2c-awards-brevo-eyebrow{font-size:11.5px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:#c0392b;margin:0 0 12px}
.c2c-awards-brevo-heading{font-size:clamp(24px,2.8vw,34px);font-weight:800;color:#111;margin:0 auto 18px;line-height:1.25;max-width:900px}
.c2c-awards-brevo-desc{font-size:15px;color:#555;line-height:1.65;max-width:680px;margin:0 auto 40px}
.c2c-ab-shell{background:transparent;border-radius:20px;border:1px solid #e0e5f0;padding:40px 0;margin:0 auto;max-width:1200px;overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent 0%,#000 6%,#000 94%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,#000 6%,#000 94%,transparent 100%)}
@keyframes c2c-ab-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.c2c-ab-track{display:flex;flex-wrap:nowrap;align-items:flex-start;gap:52px;width:max-content;animation:c2c-ab-scroll 32s linear infinite;padding:0 18px}
.c2c-ab-track:hover{animation-play-state:paused}
.c2c-ab-item{flex:0 0 auto;display:flex;flex-direction:column;align-items:center;gap:14px;width:270px;text-align:center}
.c2c-ab-item img{width:270px;height:270px;object-fit:contain;display:block;filter:drop-shadow(0 4px 12px rgba(0,0,0,.13));transition:transform .25s ease}
.c2c-ab-item:hover img{transform:scale(1.06)}
.c2c-ab-label{font-size:12.5px;line-height:1.4;color:#333;margin:0;max-width:200px}
.c2c-ab-label strong{display:block;font-size:14px;font-weight:800;color:#c0392b;margin-bottom:2px}
@media(max-width:768px){.c2c-ab-item{width:170px}.c2c-ab-item img{width:170px;height:170px}.c2c-ab-track{gap:24px;animation-duration:26s}}
@media(max-width:480px){.c2c-ab-item{width:130px}.c2c-ab-item img{width:130px;height:130px}.c2c-ab-track{gap:16px;animation-duration:20s}}


/* -- Map panel identity (address/phone/hours moved here) -- */
.c2c-map-panel { display: flex; flex-direction: column; }
.c2c-map-identity {
  padding-bottom: 0;
  margin-bottom: 18px;
}
.c2c-map-identity .c2c-loc-biz-name {
  font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.c2c-map-identity .c2c-loc-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text); margin-bottom: 7px;
}
.c2c-map-panel .c2c-map {
  flex: 1 1 auto; min-height: 280px; width: 100%; border: 0; border-radius: 14px; display: block;
}
.c2c-map-panel .c2c-map-actions { margin-top: 16px; }

/* Equal height: both location panels stretch */
.c2c-location-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.c2c-location-wrap > .c2c-panel { height: 100%; }
@media (max-width: 860px) {
  .c2c-location-wrap { grid-template-columns: 1fr; }
}


/* -- Clean review summary (no pill row, no white box) -- */
.c2c-review-summary--clean {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: block !important;
}
.c2c-google-attrib {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.c2c-google-attrib .c2c-google-logo { width: 15px; height: 15px; object-fit: contain; display: block; }


/* -- Merged Location+Reviews ------------------------------------- */
.c2c-panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: -.4px;
}
/* Map embed inside left card */
.c2c-map-embed {
  margin: 18px 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.c2c-map-embed .c2c-map {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}
.c2c-location-wrap > .c2c-panel .c2c-map-actions { margin-top: 14px; }

/* Right card: parking row reuses loc-row */
.c2c-map-identity { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.c2c-map-identity .c2c-loc-biz-name { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.c2c-map-identity .c2c-loc-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); margin-bottom: 7px; }

/* Review single-card carousel - fills right panel, card expands with it */
.c2c-rev-carousel {
  position: relative;
  margin-top: 16px;
  padding: 0 36px;
  flex: 1;                        /* grows to fill right panel */
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.c2c-rev-viewport {
  flex: 1;                        /* fills carousel height */
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  min-height: 0;
}
.c2c-rev-track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;                   /* fills viewport */
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.c2c-rev-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;                   /* fills track height */
  box-sizing: border-box;
}
.c2c-rev-slide .c2c-review-card {
  height: 100%;                   /* fills slide - card expands */
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.c2c-rev-slide .c2c-review-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
  margin-top: 10px;
  flex: 1;                        /* body fills remaining card space */
  overflow: hidden;
}
.c2c-rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3; color: var(--navy);
  transition: background .18s ease;
}
.c2c-rev-arrow:hover { background: #f4f7fc; }
.c2c-rev-arrow--prev { left: 0; }
.c2c-rev-arrow--next { right: 0; }
.c2c-rev-dots { display: flex; justify-content: center; gap: 7px; margin-top: 18px; }
.c2c-rev-dots button { width: 7px; height: 7px; border-radius: 50%; border: none; background: #cfd8e6; cursor: pointer; padding: 0; transition: all .2s ease; }
.c2c-rev-dots button.active { width: 22px; border-radius: 999px; background: var(--red); }

@media (max-width: 860px) {
  .c2c-rev-carousel { padding: 0 24px; }
  .c2c-map-embed .c2c-map { height: 240px; }
}


/* -- FINAL SPECIFICITY OVERRIDES --------------------------------------
   These rules use #location prefix to win the cascade cleanly.         */

/* Equal-width, equal-height two-column layout */
#location .c2c-location-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  align-items: stretch !important;
}
#location .c2c-location-wrap > .c2c-panel {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  box-sizing: border-box !important;
}
@media (max-width: 860px) {
  #location .c2c-location-wrap {
    grid-template-columns: 1fr !important;
  }
}


/* -- CTA bottom-pin & map fill -----------------------------------------
   Both cards are flex columns. Map (left) and carousel (right) both have
   flex:1 so they fill available space. CTAs sit immediately after them.  */

/* Left panel: map embed fills space, iframe grows inside it */
#location .c2c-panel:first-child { display: flex !important; flex-direction: column !important; }
#location .c2c-map-embed { flex: 1; display: flex; flex-direction: column; min-height: 200px; }
#location .c2c-map-embed .c2c-map { flex: 1; height: auto !important; min-height: 0 !important; }

/* Right panel: already flex column, carousel has flex:1 */
#location .c2c-panel:last-child { display: flex !important; flex-direction: column !important; }


/* -- Instructors + Video side-by-side ---------------------------- */
.c2c-iv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;          /* equal height cards */
}
.c2c-iv-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.c2c-iv-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--navy);
  margin: 10px 0 10px;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.c2c-iv-sub {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
/* Instructor carousel fills panel, always 1-card */
.c2c-iv-panel .c2c-inst-carousel-wrap {
  max-width: 100% !important;
  margin-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.c2c-iv-panel .c2c-inst-carousel { flex: 1; display: flex; flex-direction: column; }
.c2c-iv-panel .c2c-inst-viewport {
  overflow: hidden !important;
  border-radius: 16px;
  flex: 1;
}
.c2c-iv-panel .c2c-inst-track {
  display: flex !important;
  height: 100%;
  transition: transform .45s cubic-bezier(.22,1,.36,1) !important;
  will-change: transform;
}
.c2c-iv-panel .c2c-inst-slide {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  height: 100%;
}
.c2c-iv-panel .c2c-inst-card {
  flex-direction: column !important;
  min-height: 0 !important;
  height: 100% !important;
  border-radius: 16px !important;
}
/* Photo: face + chest visible, not zoomed in */
.c2c-iv-panel .c2c-inst-photo-wrap {
  flex: 0 0 auto !important;
  width: 100% !important;
  height: 300px !important;
}
.c2c-iv-panel .c2c-inst-photo-wrap img {
  object-position: center 15% !important;  /* pull back to show face + chest */
}
.c2c-iv-panel .c2c-inst-card-body { padding: 18px 20px 16px !important; }
.c2c-iv-panel .c2c-inst-card-name { font-size: 17px !important; }
.c2c-iv-panel .c2c-inst-card-bio { font-size: 13.5px !important; }
.c2c-iv-panel .c2c-inst-arrow--prev { left: -18px !important; display: flex !important; }
.c2c-iv-panel .c2c-inst-arrow--next { right: -18px !important; display: flex !important; }
.c2c-iv-panel .c2c-inst-dots { display: flex !important; }
/* CTA row - pinned to bottom of each panel */
.c2c-iv-cta {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}
.c2c-iv-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
/* Video fills right panel */
.c2c-iv-panel .c2c-vw { border-radius: 16px; margin-top: 24px; flex-shrink: 0; }

@media (max-width: 860px) {
  .c2c-iv-wrap { grid-template-columns: 1fr; gap: 40px; }
  .c2c-iv-cta { margin-top: 20px; }
}


/* -- Video card - mirrors instructor card exactly ---------------- */
.c2c-iv-vid-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
/* Thumbnail = same height as instructor photo */
.c2c-iv-vid-thumb {
  position: relative;
  width: 100%;
  height: 300px;          /* matches .c2c-iv-panel .c2c-inst-photo-wrap height */
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}
/* Card body = identical padding/structure to .c2c-inst-card-body */
.c2c-iv-vid-body {
  padding: 18px 20px 16px;   /* same as .c2c-iv-panel .c2c-inst-card-body */
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* "Student Feedback" = same as instructor name */
.c2c-iv-vid-title {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin: 0 0 6px;
}
/* Subline = same style as instructor role */
.c2c-iv-vid-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 14px;
  line-height: 1.4;
}
/* Bio text = same as instructor bio */
.c2c-iv-vid-bio {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
/* Footer = same structure as .c2c-inst-card-footer */
.c2c-iv-vid-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;   /* Visit Channel ? sits bottom right */
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #f0f0f0;
}


/* -- Equal header height so cards always start at same level -- */
.c2c-iv-panel-head {
  min-height: 128px;    /* fits 2-line heading + eyebrow + subtext */
  margin-bottom: 24px;
}


/* -- Standalone instructor 3-up grid (restored) ----------------- */
.c2c-inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.c2c-inst-grid .c2c-inst-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.c2c-inst-grid .c2c-inst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.c2c-inst-grid .c2c-inst-photo-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f0f0f0;
}
.c2c-inst-grid .c2c-inst-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.c2c-inst-grid .c2c-inst-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c2c-inst-grid .c2c-inst-card-name { font-size: 18px; font-weight: 800; color: #111; margin: 0 0 6px; }
.c2c-inst-grid .c2c-inst-card-role { font-size: 12.5px; font-weight: 600; color: var(--red); margin: 0 0 12px; line-height: 1.4; }
.c2c-inst-grid .c2c-inst-card-bio { font-size: 14px; color: #555; line-height: 1.65; margin: 0 0 16px; flex: 1; }
.c2c-inst-grid .c2c-inst-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  padding-top: 14px; border-top: 1px solid #f0f0f0;
}
@media (max-width: 900px) { .c2c-inst-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .c2c-inst-grid { grid-template-columns: 1fr; } }

/* -- Gallery + Video side-by-side ------------------------------- */
.c2c-gv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.c2c-gv-panel { min-width: 0; display: flex; flex-direction: column; }
.c2c-gv-head { margin-bottom: 20px; }
.c2c-gv-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--navy);
  margin: 10px 0 10px;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.c2c-gv-sub { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* Gallery carousel fills its panel, image height matches video thumb (300px) */
.c2c-gv-panel .c2c-gallery-carousel { margin: 0; }
.c2c-gv-panel .c2c-gallery-viewport { border-radius: 16px; overflow: hidden; }
.c2c-gv-panel .c2c-gallery-track { display: flex; }
.c2c-gv-panel .c2c-gallery-slide {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  padding: 0 !important;
}
.c2c-gv-panel .c2c-gallery-img {
  width: 100%;
  height: 300px;            /* aligns with video thumbnail */
  object-fit: cover;
  border-radius: 16px;
  display: block;
  cursor: pointer;
}
.c2c-gv-panel .c2c-gallery-dots { margin-top: 14px; }

/* Video card height aligns: thumb 300px + body */
.c2c-gv-panel .c2c-iv-vid-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  flex: 1;
}
.c2c-gv-panel .c2c-iv-vid-thumb { height: 300px; }

@media (max-width: 860px) {
  .c2c-gv-wrap { grid-template-columns: 1fr; gap: 40px; }
}


/* -- BLOG CAROUSEL - final-word overrides using ID specificity -- */
#c2c-blog-carousel .c2c-carousel-viewport {
  overflow: hidden !important;
  border-radius: 16px !important;
  width: 100% !important;
  display: block !important;
}
#c2c-blog-carousel .c2c-carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  width: 100% !important;
  transition: transform .5s cubic-bezier(.22,1,.36,1) !important;
  will-change: transform;
}
/* Desktop: 3 per view */
#c2c-blog-carousel .c2c-carousel-slide {
  flex: 0 0 33.3333% !important;
  min-width: 33.3333% !important;
  max-width: 33.3333% !important;
  padding: 0 10px !important;
  box-sizing: border-box !important;
}
/* Mobile: 1 per view */
@media (max-width: 600px) {
  #c2c-blog-carousel .c2c-carousel-slide {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
}


/* -- Course card list (replaces dense feature-list in main card body) -- */
.c2c-course-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c2c-course-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.c2c-course-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}


/* -- Trust card: image + caption within same card footprint --- */
.c2c-trust-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 12px 10px !important;
}
.c2c-trust-badge {
  max-height: 72px !important;  /* reduced from default to leave room for caption */
  width: auto !important;
  object-fit: contain !important;
}
.c2c-trust-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-align: center !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  letter-spacing: .01em !important;
}


/* -- Student Stories video section ------------------------------ */
.c2c-rv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.c2c-rv-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.c2c-rv-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--navy);
  margin: 10px 0 0;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.c2c-rv-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 8px 0 0;
}
.c2c-rv-wrap--stories {
  grid-template-columns: 1fr;
}
.c2c-rv-wrap--stories .c2c-iv-vid-card {
  width: 100%;
}
.c2c-rv-wrap--stories .c2c-iv-vid-thumb {
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 620px;
}
@media (max-width: 860px) {
  .c2c-rv-wrap { grid-template-columns: 1fr; gap: 36px; }
}


/* -- Course card At-a-Glance strip --------------------------- */
.c2c-course-glance {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding: 10px 18px;
  background: #f4f7fc;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}
.c2c-glance-sep {
  color: #c0c8d8;
  font-weight: 400;
}


/* -- Location brief (replaces landmark header) --------------- */
.c2c-loc-brief {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}


/* -- Location: map takes 2/3, right panel takes 1/3 ---------- */
#location .c2c-location-wrap {
  grid-template-columns: 2fr 1fr !important;
}
@media (max-width: 860px) {
  #location .c2c-location-wrap { grid-template-columns: 1fr !important; }
}


/* -- Awards section: text constrained to shell border -- */
.c2c-awards-brevo .c2c-container {
  max-width: 1200px !important;
  padding: 0 40px !important;
}
.c2c-awards-brevo-heading {
  max-width: 1100px !important;
  font-size: clamp(26px, 3.2vw, 42px) !important;
}
.c2c-awards-brevo-desc {
  max-width: 960px !important;
  font-size: 16px !important;
}


/* Reduce gap above About Our Location */
#location { padding-top: 0 !important; margin-top: 0 !important; }


/* -- Course Finder intro heading -- */
.c2c-course-finder-intro {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0 8px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
/* Full-width widget */
.c2c-sw-fullwidth {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.c2c-sw-fullwidth .c2c-sw-card {
  border-radius: 16px;
  padding: 36px 40px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.c2c-sw-fullwidth .c2c-sw-label { margin-bottom: 8px; }
.c2c-sw-fullwidth .c2c-sw-combo-wrap { margin-bottom: 0; }
.c2c-sw-fullwidth .c2c-sw-combo-selected { margin-top: 8px; }
.c2c-sw-fullwidth .c2c-sw-submit {
  margin-top: 0;
  width: auto;
  white-space: nowrap;
  padding: 13px 28px;
  align-self: end;
  font-size: 15px;
}
.c2c-sw-fullwidth .c2c-sw-results {
  grid-column: 1 / -1;
  margin-top: 0;
}
@media (max-width: 700px) {
  .c2c-sw-fullwidth .c2c-sw-card {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }
  .c2c-sw-fullwidth .c2c-sw-submit {
    width: 100%;
    margin-top: 12px;
  }
}
.c2c-course-finder-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -.5px;
}
.c2c-course-finder-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* -- Course Finder Widget -- */
.c2c-sw { --fr:#b53031;--fr2:#b53031; font-family:'Inter',sans-serif; }
.c2c-sw * { box-sizing:border-box }
.c2c-sw-card { background:#fff;border:1.5px solid var(--line);border-radius:20px;padding:28px 32px 26px;box-shadow:0 8px 32px rgba(0,0,0,.08); }
@media(max-width:600px){.c2c-sw-card{padding:16px 12px 14px;border-radius:12px}}
.c2c-sw-label{font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:#64748b;margin-bottom:10px;font-family:'Inter',sans-serif;}
.c2c-sw-label em{color:#94a3b8;font-style:normal;font-size:9px;margin-left:2px}
.c2c-sw-combo-wrap{position:relative;margin-bottom:0}
.c2c-sw-combo-input{width:100%;box-sizing:border-box;background:#f4f7fc;border:1.5px solid #e2e8f0;border-radius:12px;padding:11px 40px 11px 40px;font-family:'Inter',sans-serif;font-size:13px;font-weight:500;color:#232021;outline:none;transition:border-color .2s,background .2s,box-shadow .2s;}
.c2c-sw-combo-input::placeholder{color:#94a3b8}
.c2c-sw-combo-input:focus{border-color:rgba(181,48,49,.5);background:#fff;box-shadow:0 0 0 3px rgba(181,48,49,.1);}
.c2c-sw-combo-clear{position:absolute;right:13px;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;padding:2px;color:#94a3b8;display:none;line-height:1;}
.c2c-sw-combo-selected{margin-top:8px;padding:8px 12px;background:#fef2f2;border:1px solid #fecaca;border-radius:9px;font-size:12px;font-weight:700;color:#b53031;font-family:'Inter',sans-serif;display:flex;align-items:center;justify-content:space-between;gap:8px;}
.c2c-sw-combo-selected-label{flex:1}
.c2c-sw-combo-x{background:none;border:none;cursor:pointer;font-size:14px;color:#b53031;padding:0;line-height:1;font-weight:700}
.c2c-sw-combo-drop{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:300;background:#fff;border:1.5px solid #e2e8f0;border-radius:14px;overflow:hidden;box-shadow:0 16px 48px rgba(35,32,33,.14);display:none;max-height:340px;overflow-y:auto;}
.c2c-sw-combo-section{padding:8px 0 4px}
.c2c-sw-combo-section-head{padding:4px 16px 6px;font-size:9px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase;color:#94a3b8;font-family:'Inter',sans-serif;}
.c2c-sw-combo-item{padding:10px 16px;font-size:13px;font-weight:500;color:#232021;cursor:pointer;display:flex;align-items:center;gap:10px;transition:background .12s;font-family:'Inter',sans-serif;}
.c2c-sw-combo-item:hover,.c2c-sw-combo-item.focused{background:#f4f7fc}
.c2c-sw-combo-item-icon{width:28px;height:28px;border-radius:8px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:13px;}
.c2c-sw-combo-item-icon.course{background:#fef2f2}
.c2c-sw-combo-item-icon.occ{background:#eff6ff}
.c2c-sw-combo-item-sub{font-size:11px;color:#94a3b8;margin-left:auto;white-space:nowrap}
.c2c-sw-combo-divider{height:1px;background:#f1f5f9;margin:4px 0}
.c2c-sw-submit{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;background:linear-gradient(135deg,#b53031 0%,#b53031 100%);border:none;border-radius:14px;padding:18px 24px;font-family:'Poppins',sans-serif;font-size:17px;font-weight:700;color:#fff;cursor:pointer;box-shadow:0 8px 28px rgba(181,48,49,.4);transition:all .22s;letter-spacing:-.1px;margin-top:20px;}
.c2c-sw-submit:hover{transform:translateY(-2px);box-shadow:0 16px 44px rgba(181,48,49,.5)}
.c2c-sw-submit svg{width:18px;height:18px;flex-shrink:0}
.c2c-sw-results{margin-top:32px;display:none}
.c2c-sw-results-head h3{font-family:'Poppins',sans-serif;font-size:18px;font-weight:800;color:#232021;margin:0 0 16px}
.c2c-sw-loc-card{background:#fff;border:1.5px solid #e8eaef;border-radius:16px;padding:22px;transition:all .25s;position:relative;overflow:hidden;display:flex;flex-direction:column;}
.c2c-sw-loc-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,#b53031,#b53031);opacity:0;transition:opacity .25s;}
.c2c-sw-loc-card:hover{border-color:rgba(181,48,49,.25);transform:translateY(-3px);box-shadow:0 12px 32px rgba(35,32,33,.08)}
.c2c-sw-loc-card:hover::before{opacity:1}
.c2c-sw-card-name{font-family:'Poppins',sans-serif;font-size:16px;font-weight:800;color:#232021;line-height:1.2}
.c2c-sw-card-city{font-size:12px;color:#94a3b8;margin-top:2px;font-weight:500;margin-bottom:8px}
.c2c-sw-card-notes{font-size:11px;color:#94a3b8;margin-bottom:10px;font-style:italic;line-height:1.4}
.c2c-sw-card-addr{display:flex;align-items:center;gap:7px;font-size:12px;color:#64748b;margin-bottom:6px}
.c2c-sw-card-addr svg{width:12px;height:12px;flex-shrink:0;opacity:.6}
.c2c-sw-avail{display:flex;align-items:center;gap:8px;margin-bottom:14px;margin-top:4px}
.c2c-sw-avail-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0;background:#22c55e}
.c2c-sw-avail-text{font-size:12px;font-weight:600;color:#15803d}
.c2c-sw-card-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:14px}
.c2c-sw-tag{font-size:10px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;padding:3px 9px;border-radius:6px;background:#fef2f2;border:1px solid #fecaca;color:#b53031}
.c2c-sw-card-btns{display:flex;gap:8px;margin-top:auto;padding-top:4px}
.c2c-sw-btn-book{flex:1;display:flex;align-items:center;justify-content:center;gap:6px;background:linear-gradient(135deg,#b53031 0%,#b53031 100%);border:none;border-radius:10px;padding:11px 14px;font-size:13px;font-weight:700;color:#fff;cursor:pointer;text-decoration:none;transition:all .2s;box-shadow:0 4px 12px rgba(181,48,49,.25);font-family:'Poppins',sans-serif;}
.c2c-sw-btn-book:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(181,48,49,.4);color:#fff!important}
.c2c-sw-btn-dir{display:flex;align-items:center;justify-content:center;width:40px;flex-shrink:0;background:#f1f5f9;border:1.5px solid #e2e8f0;border-radius:10px;padding:10px;cursor:pointer;text-decoration:none;color:#64748b;transition:all .2s;}
.c2c-sw-btn-dir:hover{background:#e2e8f0}
.c2c-sw-btn-dir svg{width:16px;height:16px}
.c2c-sw-skeleton{height:200px;border-radius:14px;background:linear-gradient(90deg,#f1f5f9 0%,#e2e8f0 50%,#f1f5f9 100%);background-size:200% 100%;animation:sw-shimmer 1.4s ease-in-out infinite;}
@keyframes sw-shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
.c2c-sw-loc-card.animate-in{animation:sw-cardin .4s cubic-bezier(.2,.8,.4,1) both}
@keyframes sw-cardin{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}


/* -- Course finder: homepage-style layout -- */
.c2c-course-finder-intro { padding-bottom: 16px; }
.c2c-sw-loc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.c2c-sw-loc-field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c2c-sw-field-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c2c-sw-loc-locked {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #f4f7fc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}
.c2c-sw-loc-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  background: #e8f4fd;
  padding: 2px 8px;
  border-radius: 99px;
}
.c2c-sw-fields-row { display: block; }
.c2c-sw-fullwidth .c2c-sw-card {
  grid-template-columns: 1fr !important;
}
.c2c-sw-fullwidth .c2c-sw-submit {
  width: 100% !important;
  font-size: 16px !important;
  padding: 16px 24px !important;
}


 


 /* -- BLS provider register buttons (brand-colored) -- */
 .c2c-provider-btns{ display:flex; gap:10px; }
 .c2c-btn-provider{
   flex:1; min-height:48px;
   border-radius:12px;
   font-size:13px; font-weight:800;
   text-decoration:none;
   display:inline-flex; align-items:center; justify-content:center;
   border:2px solid transparent;
   transition:.2s ease;
 }
 /* Canadian Red Cross = red */
 .c2c-btn-provider--redcross{
   background:linear-gradient(135deg,var(--red) 0%, var(--red-2) 100%);
   color:#fff !important;
   box-shadow:0 8px 20px rgba(216,77,58,.22);
 }
 .c2c-btn-provider--redcross:hover{
   background:linear-gradient(135deg,#b83828 0%, var(--red-hover) 100%);
   transform:translateY(-2px);
   box-shadow:0 12px 26px rgba(216,77,58,.30);
 }
 /* Heart & Stroke = blue (navy) */
 .c2c-btn-provider--heartstroke{
   background:linear-gradient(135deg,var(--navy) 0%, var(--navy-2) 100%);
   color:#fff !important;
   box-shadow:0 8px 20px rgba(15,35,79,.22);
 }
 .c2c-btn-provider--heartstroke:hover{
   background:linear-gradient(135deg,#0c1c40 0%, var(--navy-3) 100%);
   transform:translateY(-2px);
   box-shadow:0 12px 26px rgba(15,35,79,.30);
 }


 /* -- Course Finder: BLS provider buttons + EMR -- */
 .c2c-sw-provider-note{
   width:100%; font-size:11px; font-weight:800; letter-spacing:.3px;
   text-transform:uppercase; color:var(--muted);
   margin:0 0 8px;
 }
 .c2c-sw-btn-redcross{
   background:linear-gradient(135deg,var(--red) 0%, var(--red-2) 100%) !important;
   box-shadow:0 4px 12px rgba(216,77,58,.25) !important;
 }
 .c2c-sw-btn-redcross:hover{
   background:linear-gradient(135deg,#b83828 0%, var(--red-hover) 100%) !important;
   transform:translateY(-1px);
 }
 .c2c-sw-btn-heartstroke{
   background:linear-gradient(135deg,var(--navy) 0%, var(--navy-2) 100%) !important;
   box-shadow:0 4px 12px rgba(15,35,79,.25) !important;
 }
 .c2c-sw-btn-heartstroke:hover{
   background:linear-gradient(135deg,#0c1c40 0%, var(--navy-3) 100%) !important;
   transform:translateY(-1px);
 }



/* -- EMR spotlight desktop fix (badge+h2 now outside .c2c-emr-body) -- */
/* Switch spotlight to block so badge, h2, toggle, body stack cleanly */
.c2c-emr-spotlight { display: block !important; }
/* Restore 2-col grid layout inside the body */
.c2c-emr-body { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: center; margin-top: 16px; }
/* Hide the mobile toggle on desktop */
.c2c-emr-toggle { display: none; }
/* Disclosure chevron hidden on desktop; +/- sign used instead */
.c2c-disclosure-chevron { display: none; }
/* No top border when disclosure is the first element in the card body */
.c2c-course-body > .c2c-disclosure:first-child { border-top: none; margin-top: 0; padding-top: 0; }

/* -- Mobile-only course card accordion --------------------------- */
@media (max-width: 860px) {
 .c2c-course-glance {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  justify-content: space-between;
  padding-right: 14px;
 }
 .c2c-course-glance span:last-child {
  width: 100%;
  text-align: center;
 }
 .c2c-course-glance-chevron {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--navy);
  display: flex;
  align-items: center;
 }
 .c2c-course-card.is-open .c2c-course-glance-chevron {
  transform: rotate(180deg);
 }
 .c2c-course-body {
  display: none !important;
 }
 .c2c-course-card.is-open .c2c-course-body {
  display: flex !important;
  flex-direction: column;
 }
 /* EMR spotlight accordion */
 .c2c-emr-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 4px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
  -webkit-user-select: none;
 }
 .c2c-emr-toggle-chevron {
  flex-shrink: 0;
  transition: transform .3s ease;
  display: flex;
  align-items: center;
 }
 .c2c-emr-spotlight.is-open .c2c-emr-toggle-chevron {
  transform: rotate(180deg);
 }
 .c2c-emr-body {
  display: none !important;
 }
 .c2c-emr-spotlight.is-open .c2c-emr-body {
  display: grid !important;
  grid-template-columns: 1fr;
 }
 /* Disclosure accordion on mobile */
 .c2c-disclosure-btn {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  justify-content: space-between;
 }
 .c2c-disclosure-sign { display: none; }
 .c2c-disclosure-chevron {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  transition: transform .3s ease;
  color: var(--navy);
 }
 .c2c-disclosure.is-open .c2c-disclosure-chevron { transform: rotate(180deg); }
}

/* Course card CTAs outside accordion - always visible on mobile */
.c2c-course-card > .c2c-actions {
 margin-top: 0;
 padding: 10px 22px 22px;
 border-top: 1px solid var(--line);
}
@media (max-width: 860px) {
 .c2c-course-card > .c2c-actions { padding: 12px 16px 16px; }
 .c2c-course-card:not(.is-open) > .c2c-actions { border-top-color: transparent; }
}

/* HeartCode BLS CTA outside accordion - always visible on mobile */
.c2c-emr-spotlight > .c2c-actions {
 margin-top: 0;
 padding: 10px 0 0;
 border-top: 1px solid var(--line);
}
.c2c-emr-spotlight > .c2c-actions .c2c-btn { width: 100%; justify-content: center; }
@media (max-width: 860px) {
 .c2c-emr-spotlight:not(.is-open) > .c2c-actions { border-top-color: transparent; }

}

/* Hide glance chevron - replaced by expand bar on mobile */
.c2c-course-glance-chevron { display: none; }

/* Full-width expand bar - mobile only */
.c2c-course-expand-bar { display: none; }
@media (max-width: 860px) {
 .c2c-course-expand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 16px;
  padding: 10px 16px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: #f4f7fc;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
 }
 .c2c-expand-bar-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform .3s ease;
 }
 .c2c-course-card.is-open .c2c-expand-bar-chevron { transform: rotate(180deg); }
}

/* Always show course body - expand bar removed */
.c2c-course-expand-bar { display: none !important; }
@media (max-width: 860px) {
 .c2c-course-body { display: flex !important; flex-direction: column; }
}
/* -- HeartCode BLS accordion redesign -------------------------------- */
.c2c-emr-toggle { display: none !important; }
.c2c-emr-accordion-btn {
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 14px;
 border: 1px solid var(--line);
 background: #f8fbff;
 border-radius: 14px;
 padding: 13px 16px;
 color: var(--navy);
 font-size: 14px;
 font-weight: 800;
 cursor: pointer;
 margin: 14px 0 0;
 font-family: 'Inter', Arial, sans-serif;
 text-align: left;
 transition: background .2s ease, border-color .2s ease;
}
.c2c-emr-accordion-btn:hover { background: #eef4ff; border-color: #c4d4ec; }
.c2c-emr-acc-sign { font-size: 18px; font-weight: 700; color: var(--navy); flex-shrink: 0; line-height: 1; }
.c2c-emr-accordion-body { display: none; margin-top: 16px; }
.c2c-emr-accordion-body.is-open { display: block; }
.c2c-emr-accordion-body .c2c-emr-body { display: grid !important; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; margin-top: 16px; }
.c2c-emr-spotlight > .c2c-actions { margin-top: 14px !important; padding: 10px 0 0 !important; border-top: 1px solid var(--line) !important; }
.c2c-emr-spotlight > .c2c-actions .c2c-btn { width: 100% !important; justify-content: center !important; }
@media (max-width: 860px) {
 .c2c-emr-accordion-body.is-open .c2c-emr-body { display: grid !important; grid-template-columns: 1fr; }
 .c2c-emr-accordion-body.is-open .c2c-emr-points { grid-template-columns: 1fr !important; }
}

/* Legacy grid fallback used by Sacramento's older inline markup. */
@media(max-width:720px){
 .c2c-instructors-grid,.c2c-blog-grid{display:block}
}

/* Schedule/course finder widget */
.c2c-sw *{box-sizing:border-box}
.c2c-sw{font-family:'Inter',sans-serif}
.c2c-sw-card{
  background:#fff;border-radius:20px;padding:28px 32px 28px;
  box-shadow:0 4px 24px rgba(0,0,0,.08);
}
@media(max-width:680px){.c2c-sw-card{padding:20px 16px 20px;border-radius:14px}}
@media(max-width:480px){.c2c-sw-card{border-radius:0;padding:16px 14px 16px}}
.c2c-sw-label{
  display:flex;align-items:center;gap:6px;
  font-size:10px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;
  color:#64748b;margin-bottom:10px;font-family:'Inter',sans-serif;
}
.c2c-sw-label em{color:#b53031;font-style:normal;font-weight:700}
.c2c-sw-combo-wrap{position:relative;margin-bottom:16px}
.c2c-sw-combo-icon{
  position:absolute;left:14px;top:50%;transform:translateY(-50%);
  width:15px;height:15px;pointer-events:none;color:#94a3b8;
}
.c2c-sw-combo-input{
  width:100%;background:#f4f7fc;border:1.5px solid #e2e8f0;
  border-radius:12px;padding:12px 44px 12px 42px;
  font-family:'Inter',sans-serif;font-size:14px;font-weight:500;color:#232021;
  outline:none;transition:border-color .2s,background .2s,box-shadow .2s;
}
.c2c-sw-combo-input::placeholder{color:#94a3b8}
.c2c-sw-combo-input:focus{
  border-color:rgba(181,48,49,.45);background:#fff;
  box-shadow:0 0 0 3px rgba(181,48,49,.1);
}
.c2c-sw-combo-clear{
  position:absolute;right:14px;top:50%;transform:translateY(-50%);
  background:none;border:none;cursor:pointer;padding:2px;
  color:#94a3b8;display:none;line-height:1;font-size:14px;
}
.c2c-sw-combo-clear:hover{color:#64748b}
.c2c-sw-combo-selected{
  margin-top:8px;padding:8px 12px;
  background:#fef2f2;border:1px solid #fecaca;border-radius:9px;
  font-size:12px;font-weight:700;color:#b53031;
  font-family:'Inter',sans-serif;
  display:flex;align-items:center;justify-content:space-between;gap:8px;
}
.c2c-sw-combo-selected-label{flex:1}
.c2c-sw-combo-x{background:none;border:none;cursor:pointer;font-size:14px;color:#b53031;padding:0;line-height:1;font-weight:700}
.c2c-sw-combo-x:hover{color:#8c1a1a}
.c2c-sw-combo-drop{
  position:absolute;top:calc(100% + 5px);left:0;right:0;z-index:300;
  background:#fff;border:1.5px solid #e2e8f0;border-radius:14px;
  overflow:hidden;box-shadow:0 16px 48px rgba(35,32,33,.14);
  display:none;max-height:340px;overflow-y:auto;
}
.c2c-sw-combo-section{padding:8px 0 4px}
.c2c-sw-combo-section-head{
  padding:4px 16px 6px;font-size:9px;font-weight:800;letter-spacing:1.2px;
  text-transform:uppercase;color:#94a3b8;font-family:'Inter',sans-serif;
}
.c2c-sw-combo-item{
  padding:10px 16px;font-size:13px;font-weight:500;color:#232021;
  cursor:pointer;display:flex;align-items:center;gap:10px;
  transition:background .12s;font-family:'Inter',sans-serif;
}
.c2c-sw-combo-item:hover,.c2c-sw-combo-item.focused{background:#f4f7fc}
.c2c-sw-combo-item-icon{
  width:28px;height:28px;border-radius:8px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:13px;
}
.c2c-sw-combo-item-icon.course{background:#fef2f2}
.c2c-sw-combo-item-icon.occ{background:#eff6ff}
.c2c-sw-combo-item-sub{font-size:11px;color:#94a3b8;margin-left:auto;white-space:nowrap}
.c2c-sw-combo-divider{height:1px;background:#f1f5f9;margin:4px 0}
.c2c-sw-submit{
  display:flex;align-items:center;justify-content:center;gap:10px;width:100%;
  background:#b53031;border:none;border-radius:14px;padding:17px 24px;
  font-family:'Poppins',sans-serif;font-size:16px;font-weight:700;color:#fff;
  cursor:pointer;box-shadow:0 6px 24px rgba(181,48,49,.35);
  transition:all .22s;letter-spacing:-.1px;
}
.c2c-sw-submit:hover{background:#9e1f20;transform:translateY(-2px);box-shadow:0 12px 36px rgba(181,48,49,.45)}
.c2c-sw-submit:active{transform:translateY(0)}
.c2c-sw-submit.loading{background:#8c1a1a;cursor:wait}
.c2c-sw-submit svg{width:17px;height:17px;flex-shrink:0}
@media(max-width:600px){.c2c-sw-submit{font-size:14px;padding:14px 16px;border-radius:12px}}
.c2c-sw-results{margin-top:28px;display:none}
.c2c-sw-results-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;flex-wrap:wrap;gap:8px}
.c2c-sw-results-head h3{font-family:'Poppins',sans-serif;font-size:17px;font-weight:800;color:#232021;margin:0}
.c2c-sw-results-meta{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:.6px}
.c2c-sw-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:14px}
@media(max-width:560px){.c2c-sw-cards{grid-template-columns:1fr;gap:10px}}
.c2c-sw-loc-card{
  background:#fff;border:1.5px solid #e8eaef;border-radius:14px;padding:20px;
  transition:all .25s;position:relative;overflow:hidden;display:flex;flex-direction:column;
}
.c2c-sw-loc-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:#b53031;opacity:0;transition:opacity .25s;}
.c2c-sw-loc-card:hover{border-color:rgba(181,48,49,.25);transform:translateY(-3px);box-shadow:0 10px 28px rgba(35,32,33,.08)}
.c2c-sw-loc-card:hover::before{opacity:1}
.c2c-sw-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px;margin-bottom:12px}
.c2c-sw-card-name{font-family:'Poppins',sans-serif;font-size:15px;font-weight:800;color:#232021;line-height:1.2}
.c2c-sw-card-city{font-size:11px;color:#94a3b8;margin-top:2px;font-weight:500}
.c2c-sw-dist-badge{flex-shrink:0;background:#fef2f2;border:1px solid #fecaca;border-radius:20px;padding:3px 10px;font-size:11px;font-weight:700;color:#b53031;white-space:nowrap}
.c2c-sw-card-notes{font-size:11px;color:#94a3b8;margin-bottom:8px;font-style:italic;line-height:1.4}
.c2c-sw-card-addr{display:flex;align-items:center;gap:6px;font-size:12px;color:#64748b;margin-bottom:5px}
.c2c-sw-card-addr svg{width:11px;height:11px;flex-shrink:0;opacity:.55}
.c2c-sw-avail{display:flex;align-items:center;gap:7px;margin-bottom:12px}
.c2c-sw-avail-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0}
.c2c-sw-avail-dot.green{background:#22c55e}.c2c-sw-avail-dot.red{background:#ef4444}
.c2c-sw-avail-text{font-size:11px;font-weight:600}
.c2c-sw-avail-text.green{color:#15803d}.c2c-sw-avail-text.red{color:#dc2626}
.c2c-sw-card-tags{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:12px}
.c2c-sw-tag{font-size:9px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;padding:3px 8px;border-radius:5px;background:#f1f5f9;border:1px solid #e2e8f0;color:#64748b}
.c2c-sw-tag.highlight{background:#fef2f2;border-color:#fecaca;color:#b53031}
.c2c-sw-tag.emr{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8}
.c2c-sw-card-btns{display:flex;gap:8px;margin-top:auto;padding-top:4px}
.c2c-sw-btn-book{
  flex:1;display:flex;align-items:center;justify-content:center;gap:6px;
  background:#b53031;border:none;border-radius:9px;padding:10px 12px;
  font-size:12px;font-weight:700;color:#fff;cursor:pointer;text-decoration:none;
  transition:all .2s;font-family:'Poppins',sans-serif;
}
.c2c-sw-btn-book:hover{background:#9e1f20;transform:translateY(-1px);color:#fff!important;text-decoration:none}
.c2c-sw-btn-dir{
  display:flex;align-items:center;justify-content:center;
  width:38px;flex-shrink:0;background:#f1f5f9;border:1.5px solid #e2e8f0;
  border-radius:9px;padding:9px;cursor:pointer;text-decoration:none;color:#64748b;transition:all .2s;
}
.c2c-sw-btn-dir:hover{background:#e2e8f0;color:#232021}
.c2c-sw-btn-dir svg{width:15px;height:15px}
.c2c-sw-no-results{text-align:center;padding:36px 20px;color:#64748b;font-size:13px;font-family:'Inter',sans-serif}
.c2c-sw-no-results strong{display:block;font-size:15px;color:#232021;margin-bottom:6px}
.c2c-sw-skeleton{height:180px;border-radius:12px;background:linear-gradient(90deg,#f1f5f9 0%,#e2e8f0 50%,#f1f5f9 100%);background-size:200% 100%;animation:sw-shimmer 1.4s ease-in-out infinite;}
@keyframes sw-shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
.c2c-sw-loc-card.animate-in{animation:sw-cardin .35s cubic-bezier(.2,.8,.4,1) both}
@keyframes sw-cardin{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@media(max-width:560px){
  .c2c-sw-loc-card{padding:14px}
  .c2c-sw-card-name{font-size:14px}
  .c2c-sw-btn-book{font-size:11px;padding:9px 10px}
  .c2c-sw-btn-dir{width:34px;padding:8px}
}

/* Blog carousel arrow overrides */
/* Force blog arrows visible - overrides shared .c2c-carousel-arrow{display:none!important} */
#c2c-blog-carousel { padding: 0 52px; box-sizing: border-box; }
#c2c-blog-carousel .c2c-carousel-arrow {
  display: flex !important;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dde3f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  color: var(--navy, #0f234f);
  transition: box-shadow .2s, transform .2s;
}
#c2c-blog-carousel .c2c-carousel-arrow:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transform: translateY(-50%) scale(1.08);
}
#c2c-blog-carousel .c2c-carousel-arrow.prev { left: 0; }
#c2c-blog-carousel .c2c-carousel-arrow.next { right: 0; }
#c2c-blog-carousel .c2c-carousel-arrow svg { width: 20px; height: 20px; }
/* Hide arrows only when 1 page (set by JS) */
#c2c-blog-carousel .c2c-carousel-arrow[data-hidden="true"] { display: none !important; }

/* Coming soon waitlist modal */
.c2c-waitlist-trigger{border:0;font:inherit;cursor:pointer}
.c2c-waitlist-modal{position:fixed;inset:0;z-index:100000;display:none;align-items:center;justify-content:center;padding:22px}
.c2c-waitlist-modal.is-open{display:flex}
.c2c-waitlist-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.72);backdrop-filter:blur(3px)}
.c2c-waitlist-dialog{position:relative;width:min(720px,100%);max-height:calc(100vh - 44px);background:#fff;border-radius:12px;box-shadow:0 24px 80px rgba(15,23,42,.34);overflow:hidden}
.c2c-waitlist-close{position:absolute;top:10px;right:10px;z-index:2;width:36px;height:36px;border:0;border-radius:999px;background:#f1f5f9;color:#1f2937;font-size:24px;line-height:1;cursor:pointer}
.c2c-waitlist-close:hover{background:#e2e8f0}
.c2c-waitlist-frame{height:min(521px,calc(100vh - 88px));padding:52px 16px 16px}
@media(max-width:560px){
 .c2c-waitlist-modal{padding:12px}
 .c2c-waitlist-dialog{border-radius:10px}
 .c2c-waitlist-frame{height:calc(100vh - 44px);padding:50px 10px 10px}
}
