/* Edstar reskin layer — loaded on interior pages AFTER the existing (Tailwind) CSS
   and AFTER edstar.css. Content markup is untouched; this only shifts presentation
   to the Edstar look: kill shadows, coral one-sided borders, and heavy rounding;
   square Navy buttons; and style the rebuilt white hero. */

/* remove drop shadows everywhere */
.shadow-card,.shadow-lift,.shadow-sm,.shadow,.shadow-md,.shadow-lg,.shadow-xl,.card{box-shadow:none!important}

/* cards: white, 1px Mist border, minimal radius (no coral left-border, no big radius) */
.card{border:1px solid var(--mist)!important;border-radius:3px!important;background:#fff!important}
[class*="border-l-4"]{border-left-width:1px!important}
[class*="border-l-coral"],[class*="border-l-navy"],[class*="border-l-azure"],[class*="border-l-amber"]{border-left-color:var(--mist)!important}
.rounded-lg,.rounded-xl,.rounded-2xl{border-radius:3px!important}
/* keep genuine circles round (avatars, dots) — do NOT square rounded-full */

/* buttons: Navy fill, white text, square-ish, no shadow; ghost = outline */
.btn,.btn-primary,.btn-on-dark{border-radius:3px!important;box-shadow:none!important}
.btn-primary{background:var(--navy)!important;color:#fff!important;border:1px solid var(--navy)!important}
.btn-primary:hover{background:#12293f!important}
.btn-on-dark{background:#fff!important;color:var(--navy)!important;border:1px solid #fff!important}

/* eyebrows to Coral (brand) wherever the interior template used them */
.eyebrow{color:var(--coral-text)!important;letter-spacing:.2em!important;text-transform:uppercase!important}
.bg-navy .eyebrow,.cta .eyebrow{color:var(--amber)!important}

/* the white hero the transform builds in place of the old navy hero block */
.edstar-hero{background:#fff;padding:78px 0 62px}
.edstar-hero .wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}
.edstar-hero h1{font-size:52px;line-height:1.12;letter-spacing:-.02em;color:var(--navy);max-width:16ch;margin:0}
.edstar-hero .lead{font-size:20px;color:var(--slate);max-width:58ch;margin:16px 0 0}
.edstar-hero .eyebrow{color:var(--coral-text);font-weight:600;font-size:12.5px;letter-spacing:.2em;text-transform:uppercase;margin:0 0 12px}
@media(max-width:820px){ .edstar-hero h1{font-size:38px} }

/* contrast overrides for the interior utility classes (WCAG AA 4.5:1 for body text) */
.text-coral{color:var(--coral-text)!important}
.bg-navy .text-coral,.cta .text-coral{color:var(--amber)!important}
.text-silver{color:var(--gray-text)!important}
.bg-navy .text-silver,.cta .text-silver,.foot .text-silver{color:var(--silver)!important}
.text-graphite\/60,.text-graphite\/70{color:var(--gray-text)!important}
.bg-navy .text-graphite\/70{color:#cbd5e1!important}
.text-amber{color:#9C5A1E!important}
.bg-navy .text-amber,.cta .text-amber{color:var(--amber)!important}
