/*
Theme Name: EBD Custom Theme
Theme URI: https://elitebenefitsdirect.com
Author: Elite Benefit Advisors, LLC
Author URI: https://elitebenefitsdirect.com
Description: Reconciled enterprise WordPress theme for Elite Benefits Direct. Preserves the approved active-theme visual system while moving durable content architecture to EBD Core and improving SEO/AI safeguards.
Version: 1.0.2
License: Private
Text Domain: ebd
*/

/* ============================================================
   ELITE BENEFITS DIRECT - PRODUCTION THEME SYSTEM
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root{
  --ebd-navy:#0D224B;
  --ebd-green:#1B7A3F;
  --ebd-green-light:#7FD99B;
  --ebd-burgundy:#C62828;
  --ebd-offwhite:#F5F4F0;
  --ebd-offwhite-2:#F9F8F6;
  --ebd-text:#2C2F45;
  --ebd-muted:#5F5E5A;
  --ebd-soft-muted:#8A8FA3;
  --ebd-border:#E8E6DF;
  --ebd-white:#fff;
  --ebd-shadow:0 8px 24px rgba(13,34,75,.10);
  --ebd-radius:12px;
  --ebd-max:1100px;
  --ebd-pad:24px;
}

/* ---------- Reset & Base ---------- */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:96px}
body{
  font-family:'DM Sans','Segoe UI',sans-serif;
  color:var(--ebd-text);
  background:#fff;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto}
a{color:inherit}
.sans{font-family:'DM Sans','Segoe UI',sans-serif}
.serif{font-family:'Space Grotesk','Segoe UI',sans-serif;letter-spacing:-0.015em}
.navy{color:var(--ebd-navy)}
.green{color:var(--ebd-green)}
.burg{color:var(--ebd-burgundy)}
.muted{color:var(--ebd-soft-muted)}
.navy-bg{background:var(--ebd-navy)}
.green-bg{background:var(--ebd-green)}
.burg-bg{background:var(--ebd-burgundy)}
.offwhite-bg{background:var(--ebd-offwhite)}
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  position:fixed;
  left:16px;
  top:16px;
  z-index:10000;
  width:auto;
  height:auto;
  background:#fff;
  color:var(--ebd-navy);
  padding:10px 14px;
  border-radius:4px;
}

/* ---------- Layout System ---------- */
.section{
  max-width:var(--ebd-max);
  margin:0 auto;
  padding:0 var(--ebd-pad);
}
.page-section{padding:72px 0}
.page-section-tight{padding:48px 0}
.page-section-loose{padding:96px 0}
.section-header{text-align:center;margin-bottom:48px}
.section-eyebrow,
.page-label,
.overline.green{
  display:inline-block;
  color:var(--ebd-green-light)!important;
  font-size:26px!important;
  font-weight:600!important;
  letter-spacing:1.5px!important;
  text-transform:uppercase;
}
.section-title{
  color:var(--ebd-navy);
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:36px;
  line-height:1.18;
  margin-bottom:16px;
}
.section-subtitle{
  color:var(--ebd-muted);
  font-size:20px;
  line-height:1.6;
  max-width:720px;
}

/* ---------- Page Hero ---------- */
.page-hero{background:var(--ebd-navy)}
.page-hero-inner{
  max-width:var(--ebd-max);
  margin:0 auto;
  padding:175px var(--ebd-pad) 80px;
}
.page-hero-content{max-width:760px}
.page-hero .page-label{margin-bottom:24px}
.page-hero h1{
  color:#fff;
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:52px;
  font-weight:700;
  line-height:1.15;
  margin-bottom:20px;
  letter-spacing:-.015em;
}
.page-hero p{
  color:rgba(255,255,255,.75);
  font-size:22px;
  line-height:1.6;
  max-width:600px;
}
.page-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:32px;
}

/* ---------- Buttons ---------- */
.btn-green{
  background:var(--ebd-green);
  color:#fff;
  border:none;
  padding:14px 32px;
  font-size:20px;
  font-weight:600;
  border-radius:4px;
  cursor:pointer;
  transition:background .25s,transform .2s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  line-height:1.2;
  min-height:52px;
  text-align:center;
  text-decoration:none;
}
.btn-green:hover{background:#248B4D;transform:translateY(-1px)}
.btn-outline{
  background:transparent;
  border:2px solid rgba(255,255,255,.3);
  color:rgba(255,255,255,.85);
  padding:12px 28px;
  font-size:20px;
  font-weight:600;
  border-radius:4px;
  cursor:pointer;
  transition:all .25s;
  display:inline-block;
  text-decoration:none;
}
.btn-outline:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5)}

/* ---------- Navigation ---------- */
.site-nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:var(--ebd-navy);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.admin-bar .site-nav{top:32px}
.nav-inner{
  max-width:var(--ebd-max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 var(--ebd-pad);
  height:88px;
}
.site-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}
.site-logo img{
  height:56px!important;
  width:auto!important;
  max-width:none!important;
  object-fit:contain!important;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:nowrap;
  margin-left:40px;
}
.nav-links a{
  color:rgba(255,255,255,.82);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s;
  letter-spacing:.3px;
  white-space:nowrap;
}
.nav-links a:hover,
.nav-links a.current-page{color:#fff}
.nav-phone{
  display:flex!important;
  align-items:center;
  gap:6px;
  color:var(--ebd-green-light)!important;
}
.nav-divider{
  width:1px;
  height:20px;
  background:rgba(255,255,255,.2);
}
.nav-cta{
  padding:10px 22px!important;
  font-size:16px!important;
}
.mobile-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.mobile-menu{
  position:fixed;
  inset:0;
  background:var(--ebd-navy);
  z-index:999;
  display:none!important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
}
.mobile-menu a{
  color:#fff;
  font-size:22px;
  text-decoration:none;
  font-weight:600;
  cursor:pointer;
  padding:8px 0;
}
.mobile-menu .close-btn{
  position:absolute;
  top:20px;
  right:24px;
  background:none;
  border:none;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

/* ---------- Grids ---------- */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.cycle-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.industries-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

/* ---------- Cards ---------- */
.card{
  background:#fff;
  border-radius:var(--ebd-radius);
  padding:36px 32px;
  box-shadow:0 2px 12px rgba(13,34,75,.06);
  transition:transform .25s,box-shadow .25s;
  border-top:3px solid var(--ebd-green);
  height:100%;
  display:flex;
  flex-direction:column;
}
.card:hover{transform:translateY(-3px);box-shadow:var(--ebd-shadow)}
.card.navy-bg{border-top:none}
.card-accent{border-left:4px solid var(--ebd-green)}
.divider{width:48px;height:3px;background:var(--ebd-green);margin:16px 0}
.step-num{
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--ebd-burgundy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:20px;
  flex-shrink:0;
}
.post-card{
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  border-top:none;
  cursor:pointer;
}
.post-card-image{
  height:180px;
  overflow:hidden;
  position:relative;
  background:linear-gradient(135deg,var(--ebd-green),var(--ebd-navy));
  display:flex;
  align-items:center;
  justify-content:center;
}
.post-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.post-card-fallback{
  color:rgba(255,255,255,.25);
  font-family:'Space Grotesk',sans-serif;
  font-size:80px;
  font-weight:700;
  letter-spacing:-.02em;
}
.post-card-badge{
  position:absolute;
  top:16px;
  left:16px;
  background:rgba(255,255,255,.95);
  padding:4px 10px;
  border-radius:3px;
}
.post-card-badge span{
  color:var(--ebd-green);
  font-size:11px;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.post-card-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}
.post-card h3{
  color:var(--ebd-navy);
  font-size:20px;
  line-height:1.3;
  margin-bottom:12px;
  font-weight:700;
}
.post-card p{
  font-size:16px;
  line-height:1.55;
  color:var(--ebd-muted);
  flex-grow:1;
  margin-bottom:20px;
}
.post-card-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--ebd-border);
  padding-top:16px;
}
.post-card-meta a{
  font-size:13px;
  color:var(--ebd-green);
  font-weight:700;
  text-decoration:none;
}
.post-card-meta span{
  font-size:13px;
  color:var(--ebd-soft-muted);
}

/* ---------- CTA ---------- */
.cta-section{
  background:#fff;
  padding:72px 0;
}
.cta-panel{
  background:var(--ebd-navy);
  border-radius:12px;
  padding:48px 32px;
  text-align:center;
  box-shadow:var(--ebd-shadow);
}
.cta-panel h2{
  color:#fff;
  font-size:32px;
  line-height:1.25;
  margin-bottom:24px;
}
.cta-panel h2 + .btn-green{
  margin-top:8px;
}
.cta-panel p{
  color:rgba(255,255,255,.75);
  font-size:18px;
  line-height:1.55;
  max-width:560px;
  margin:0 auto 30px;
}

/* ---------- Forms ---------- */
input,textarea,select{
  width:100%;
  padding:12px 16px;
  border:1.5px solid #DCDDE3;
  border-radius:4px;
  font-size:20px;
  font-family:inherit;
  color:var(--ebd-text);
  background:#fff;
  transition:border-color .2s;
}
input:focus,textarea:focus,select:focus{outline:none;border-color:var(--ebd-green)}
textarea{resize:vertical;min-height:100px}
.wpforms-form .wpforms-field-label{
  font-family:'DM Sans','Segoe UI',sans-serif;
  font-size:16px;
  font-weight:600;
  color:var(--ebd-text);
  margin-bottom:6px;
}
.wpforms-form input[type=text],
.wpforms-form input[type=email],
.wpforms-form input[type=tel],
.wpforms-form textarea,
.wpforms-form select{
  width:100%;
  padding:12px 16px;
  border:1.5px solid #DCDDE3;
  border-radius:4px;
  font-size:18px;
}
.wpforms-form .wpforms-submit{
  background:var(--ebd-green);
  color:#fff;
  border:none;
  padding:14px 32px;
  font-size:18px;
  font-weight:600;
  border-radius:4px;
  cursor:pointer;
}

/* ---------- Article Body ---------- */
.ebd-article-body p{
  font-family:'DM Sans','Segoe UI',sans-serif;
  font-size:18px;
  line-height:1.75;
  color:var(--ebd-text);
  margin-bottom:24px;
}
.ebd-article-body p:first-child{font-size:20px;font-weight:500;margin-bottom:28px}
.ebd-article-body h2{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:30px;
  color:var(--ebd-navy);
  margin-bottom:20px;
  margin-top:48px;
  line-height:1.25;
}
.ebd-article-body h3{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:22px;
  color:var(--ebd-navy);
  margin-bottom:16px;
  margin-top:36px;
  line-height:1.3;
}
.ebd-article-body ul,.ebd-article-body ol{
  font-family:'DM Sans','Segoe UI',sans-serif;
  font-size:18px;
  line-height:1.75;
  color:var(--ebd-text);
  margin-bottom:24px;
  padding-left:24px;
}
.ebd-article-body li{margin-bottom:8px}
.ebd-article-body a{color:var(--ebd-green);text-decoration:underline}
.ebd-article-body blockquote{
  background:var(--ebd-offwhite);
  border-left:4px solid var(--ebd-burgundy);
  padding:28px 32px;
  margin:32px 0;
  border-radius:4px;
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:22px;
  line-height:1.4;
  font-style:italic;
  color:var(--ebd-navy);
}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--ebd-navy);
  color:rgba(255,255,255,.85);
}
.footer-inner{
  max-width:var(--ebd-max);
  margin:0 auto;
  padding:48px var(--ebd-pad) 32px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:32px;
  margin-bottom:32px;
}
.footer-logo img{height:72px;width:auto;display:block}
.footer-copy{
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:20px;
}
.footer-inner a{color:rgba(255,255,255,.9);text-decoration:none}
.footer-inner a:hover{text-decoration:underline}

/* ---------- Misc ---------- */
.fade-in{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ---------- Responsive ---------- */
@media(max-width:1100px){
  .nav-links{display:none!important}
  .mobile-toggle{display:block!important}
}
@media(max-width:900px){
  .industries-grid{grid-template-columns:repeat(2,1fr)!important}
}
@media(max-width:768px){
  :root{--ebd-pad:20px}
  .grid-2,.grid-3,.grid-4,.cycle-grid,.industries-grid{grid-template-columns:1fr!important}
  .page-section{padding:56px 0}
  .page-hero-inner{padding:140px 20px 64px}
  .page-label{font-size:20px!important}
  .page-hero h1{font-size:38px!important}
  .page-hero p{font-size:19px}
  h1{font-size:38px!important}
  .footer-top{display:grid;grid-template-columns:1fr}
}

/* Legacy inline-grid mobile override safety net */
@media(max-width:768px){
  div[style*="grid-template-columns:repeat(3"]{grid-template-columns:1fr!important}
  div[style*="grid-template-columns:repeat(2"]{grid-template-columns:1fr!important}
  div[style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr!important}
  div[style*="grid-template-columns:1fr 1.3fr"]{grid-template-columns:1fr!important}
  div[style*="grid-template-columns:1fr 2fr"]{grid-template-columns:1fr!important}
}


/* ============================================================
   PATCH: robust mobile menu + footer containment
   ============================================================ */
.mobile-menu.is-open{
  display:flex!important;
}

body.mobile-menu-open{
  overflow:hidden;
}

.site-footer{
  overflow:hidden;
}

.footer-logo,
.footer-logo img,
.site-footer img{
  max-width:260px!important;
}

.footer-logo img{
  height:auto!important;
  width:260px!important;
  max-height:90px!important;
  object-fit:contain!important;
}

.footer-inner{
  overflow:hidden;
}

@media(max-width:768px){
  .footer-logo img{
    width:220px!important;
  }
}


/* PATCH V2: prevent empty hero shell from taking space if args fail */
.page-hero h1:empty,
.page-hero p:empty,
.page-label:empty{
  display:none;
}


/* ============================================================
   V3 PROFESSIONALIZATION PATCH
   Section rhythm classes for future pages
   ============================================================ */
.section-white{background:#fff}
.section-offwhite{background:var(--ebd-offwhite)}
.section-navy{background:var(--ebd-navy);color:#fff}

.section-navy .section-title,
.section-navy h1,
.section-navy h2,
.section-navy h3{
  color:#fff;
}

.section-navy .section-subtitle,
.section-navy p{
  color:rgba(255,255,255,.75);
}

/* Avoid accidental slightly-different grey bands between offwhite sections */
.page-section-loose.section-white{
  background:#fff;
}

/* Fix any visible slash artifacts caused by bad escaping in earlier templates */
.page-hero h1,
.page-hero p{
  word-break:normal;
}


/* ============================================================
   SYSTEMIZED THEME MAINTENANCE LAYER
   Use these classes for future pages instead of inline spacing.
   ============================================================ */

/* Section rhythm */
.section-xs{padding:32px 0}
.section-sm{padding:48px 0}
.section-md{padding:72px 0}
.section-lg{padding:96px 0}
.section-xl{padding:120px 0}

/* Background rhythm */
.section-white{background:#fff}
.section-offwhite{background:var(--ebd-offwhite)}
.section-navy{background:var(--ebd-navy);color:#fff}

/* Container variants */
.container-narrow{max-width:760px;margin:0 auto;padding:0 var(--ebd-pad)}
.container-mid{max-width:900px;margin:0 auto;padding:0 var(--ebd-pad)}
.container-wide{max-width:var(--ebd-max);margin:0 auto;padding:0 var(--ebd-pad)}

/* Vertical rhythm utilities */
.stack-xs > * + *{margin-top:8px}
.stack-sm > * + *{margin-top:16px}
.stack-md > * + *{margin-top:24px}
.stack-lg > * + *{margin-top:40px}
.stack-xl > * + *{margin-top:64px}

.mt-0{margin-top:0!important}
.mt-sm{margin-top:16px!important}
.mt-md{margin-top:24px!important}
.mt-lg{margin-top:40px!important}
.mb-0{margin-bottom:0!important}
.mb-xs{margin-bottom:8px!important}
.mb-sm{margin-bottom:16px!important}
.mb-md{margin-bottom:24px!important}
.mb-lg{margin-bottom:40px!important}
.mb-xl{margin-bottom:64px!important}

/* Text alignment */
.text-center{text-align:center}
.text-left{text-align:left}

/* Typography utilities */
.text-eyebrow{
  color:var(--ebd-green);
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.text-label-green{
  color:var(--ebd-green-light);
  font-size:26px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.h-display{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:52px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.015em;
}
.h-section{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:36px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-.015em;
}
.h-subsection{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:26px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:-.015em;
}
.body-lg{font-size:22px;line-height:1.6}
.body-md{font-size:18px;line-height:1.6}
.body-sm{font-size:15px;line-height:1.6}

/* Statement utilities */
.statement-primary{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  color:var(--ebd-green);
  font-size:32px;
  line-height:1.2;
  font-weight:700;
  text-align:center;
  margin-top:20px;
  margin-bottom:28px;
}
.statement-secondary{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  color:var(--ebd-navy);
  font-size:24px;
  line-height:1.25;
  font-weight:700;
  text-align:center;
  margin-top:0;
  margin-bottom:40px;
}

/* Card variants */
.card-compact{padding:28px 24px}
.card-feature{
  background:#fff;
  border-radius:var(--ebd-radius);
  padding:32px;
  border-top:4px solid var(--ebd-green);
  box-shadow:0 8px 24px rgba(13,34,75,.08);
}
.card-flat{
  background:#fff;
  border-radius:8px;
  padding:28px;
  border:1px solid var(--ebd-border);
}

/* CTA variants */
.cta-primary{
  background:var(--ebd-navy);
  border-radius:12px;
  padding:48px 32px;
  text-align:center;
  box-shadow:var(--ebd-shadow);
}
.cta-primary h2{color:#fff;font-size:32px;line-height:1.25;margin-bottom:12px}
.cta-primary p{color:rgba(255,255,255,.75);font-size:18px;line-height:1.55;max-width:560px;margin:0 auto 24px}

/* Footer brand line */
.footer-brand-line{
  color:var(--ebd-green-light)!important;
  font-weight:700!important;
  font-size:16px!important;
  letter-spacing:.5px!important;
  margin-top:16px!important;
}

/* Mobile refinements */
@media(max-width:768px){
  .section-xs{padding:28px 0}
  .section-sm{padding:40px 0}
  .section-md{padding:56px 0}
  .section-lg{padding:72px 0}
  .section-xl{padding:88px 0}

  .h-display{font-size:38px}
  .h-section{font-size:30px}
  .h-subsection{font-size:24px}
  .body-lg{font-size:19px}

  .statement-primary{
    font-size:34px;
    margin-top:20px;
    margin-bottom:28px;
  }
  .statement-secondary{
    font-size:24px;
    margin-bottom:40px;
  }
}


/* ============================================================
   ENTERPRISE RHYTHM PATCH: Cycle transition
   Creates a deliberate pause around the "WE BREAK THIS CYCLE" moment.
   ============================================================ */

.cycle-break-moment{
  text-align:center;
  margin-top:28px;
  margin-bottom:72px;
}

.cycle-break-moment .cycle-break-title{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  color:var(--ebd-green);
  font-size:34px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.01em;
  margin:0 0 52px;
}

.cycle-break-moment .cycle-break-subtitle{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  color:var(--ebd-navy);
  font-size:26px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:-.01em;
  margin:0;
}

@media(max-width:768px){
  .cycle-break-moment{
    margin-top:22px;
    margin-bottom:56px;
  }

  .cycle-break-moment .cycle-break-title{
    font-size:34px;
    line-height:1.12;
    margin-bottom:44px;
  }

  .cycle-break-moment .cycle-break-subtitle{
    font-size:28px;
    line-height:1.25;
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
  }
}

@media(max-width:480px){
  .cycle-break-moment{
    margin-top:18px;
    margin-bottom:48px;
  }

  .cycle-break-moment .cycle-break-title{
    font-size:32px;
    margin-bottom:40px;
  }

  .cycle-break-moment .cycle-break-subtitle{
    font-size:26px;
  }
}


/* ============================================================
   ENTERPRISE V2: Homepage problem-to-solution transition
   The cycle conclusion now belongs to the navy solution section.
   ============================================================ */

.solution-transition{
  text-align:center;
  margin:0 auto 56px;
  max-width:900px;
}

.solution-transition .cycle-break-title{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  color:var(--ebd-green-light);
  font-size:34px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.01em;
  margin:0 0 30px;
}

.solution-transition .cycle-break-subtitle{
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  color:#fff;
  font-size:24px;
  line-height:1.3;
  font-weight:700;
  letter-spacing:-.01em;
  margin:0;
}

.solution-transition-divider{
  width:64px;
  height:3px;
  background:var(--ebd-green-light);
  margin:34px auto 0;
  opacity:.9;
}

.solution-section{
  padding:80px 0 88px;
}

.solution-section .solution-heading{
  color:#fff;
  text-align:center;
  margin-bottom:48px;
}

@media(max-width:768px){
  .solution-section{
    padding:64px 0 72px;
  }

  .solution-transition{
    margin-bottom:44px;
  }

  .solution-transition .cycle-break-title{
    font-size:32px;
    margin-bottom:24px;
  }

  .solution-transition .cycle-break-subtitle{
    font-size:24px;
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
  }
}


/* ============================================================
   FINAL ENTERPRISE HARDENING LAYER
   ============================================================ */

/* predictable anchors with fixed header */
[id]{scroll-margin-top:104px}

/* prevent oversized visual components from colliding with viewport */
.section,
.container-wide,
.container-mid,
.container-narrow{
  width:100%;
}

/* accessible focus treatment */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:3px solid var(--ebd-green-light);
  outline-offset:3px;
}

/* hero consistency guard */
.page-hero h1{
  max-width:900px;
}

/* homepage transition refinement */
.solution-section{
  padding-top:88px;
  padding-bottom:96px;
}

.solution-transition{
  margin-bottom:60px;
}

.solution-transition .cycle-break-title{
  margin-bottom:24px;
}

.solution-transition-divider{
  margin-top:30px;
  margin-bottom:0;
}

/* keep cards visually grounded in navy sections */
.solution-section .card{
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* footer brand anchor */
.footer-brand-line{
  color:var(--ebd-green-light)!important;
  font-weight:700!important;
  font-size:16px!important;
  letter-spacing:.5px!important;
  margin-top:16px!important;
  text-transform:uppercase;
}

/* avoid accidental text overflow */
h1,h2,h3,p,a{
  overflow-wrap:break-word;
}

/* print sanity */
@media print{
  .site-nav,
  .mobile-menu,
  .cta-section{
    display:none!important;
  }
  body{color:#000;background:#fff}
}

@media(max-width:768px){
  .solution-section{
    padding-top:72px;
    padding-bottom:80px;
  }

  .solution-transition{
    margin-bottom:48px;
  }
}


/* ============================================================
   AI SEARCH / AEO CONTENT LAYER
   ============================================================ */

.card-flat h3{
  line-height:1.25;
}

.card-flat p{
  color:var(--ebd-muted);
}

.mx-auto{
  margin-left:auto;
  margin-right:auto;
}

/* Make FAQ cards feel intentionally educational, not decorative */
.section-header .text-eyebrow{
  display:inline-block;
  margin-bottom:12px;
}

@media(max-width:768px){
  .card-flat{
    padding:24px;
  }
}


/* ============================================================
   RESOURCES AEO HUB
   ============================================================ */

.section-offwhite .card-flat{
  background:#fff;
}

.card-flat h2,
.card-flat h3{
  letter-spacing:-.015em;
}

@media(max-width:768px){
  .section-header{
    margin-bottom:32px;
  }
}


/* ============================================================
   FINAL CORRECTED HOMEPAGE SOLUTION TRANSITION
   Blue section owns the break moment and the practical proof points.
   ============================================================ */

.solution-transition-with-checks{
  text-align:center;
  max-width:980px;
  margin:0 auto 64px;
}

.solution-transition-with-checks .cycle-break-title{
  color:var(--ebd-green-light);
  font-size:34px;
  line-height:1.15;
  font-weight:700;
  margin:0 0 22px;
}

.solution-transition-with-checks .cycle-break-subtitle{
  color:#fff;
  font-size:24px;
  line-height:1.3;
  font-weight:700;
  margin:0;
}

.solution-transition-with-checks .solution-transition-divider{
  width:64px;
  height:3px;
  background:var(--ebd-green-light);
  margin:30px auto 36px;
}

.solution-check-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px 28px;
  max-width:900px;
  margin:0 auto;
  text-align:left;
}

.solution-check-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:rgba(255,255,255,.88);
}

.solution-check-item span{
  color:var(--ebd-green-light);
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  flex-shrink:0;
}

.solution-check-item p{
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.55;
  margin:0;
}

.solution-section{
  padding-top:84px;
  padding-bottom:96px;
}

.cta-panel p:empty{
  display:none;
}

@media(max-width:768px){
  .solution-transition-with-checks{
    margin-bottom:48px;
  }

  .solution-check-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .solution-transition-with-checks .cycle-break-title{
    font-size:32px;
  }

  .solution-transition-with-checks .cycle-break-subtitle{
    font-size:24px;
  }
}



/* ============================================================
   HOME CONTACT CTA SYSTEM
   Matches the sitewide navy CTA card while preserving the form below.
   ============================================================ */
.home-contact-section{
  background:#F5F4F0;
  padding:88px 0;
}

.contact-cta-card{
  background:var(--ebd-navy);
  border-radius:16px;
  padding:56px 48px;
  max-width:920px;
  margin:0 auto 42px;
  text-align:center;
  box-shadow:0 24px 60px rgba(13,34,75,.16);
  position:relative;
  overflow:hidden;
}

.contact-cta-card:before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:4px;
  background:var(--ebd-green-light);
}

.contact-cta-card h2{
  color:#fff;
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:38px;
  line-height:1.18;
  font-weight:700;
  letter-spacing:-.015em;
  margin:0 0 14px;
}

.contact-cta-card p{
  color:rgba(255,255,255,.78);
  font-size:20px;
  line-height:1.6;
  max-width:680px;
  margin:0 auto 22px;
}

.contact-trust-row{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  margin:0 auto 28px;
}

.contact-trust-row span{
  color:#fff;
  font-size:17px;
  line-height:1.3;
}

.contact-trust-row strong{
  color:var(--ebd-green-light);
  font-weight:800;
  margin-right:8px;
}

.home-contact-form{
  max-width:640px;
  margin:0 auto;
}

@media(max-width:768px){
  .home-contact-section{padding:64px 0;}
  .contact-cta-card{padding:44px 28px;border-radius:14px;}
  .contact-cta-card h2{font-size:30px;}
  .contact-cta-card p{font-size:18px;}
  .contact-trust-row{gap:14px;flex-direction:column;}
}

/* ============================================================
   ENTERPRISE CTA CARD SYSTEM
   Used selectively where the page CTA needs separation from footer.
   ============================================================ */

.cta-card-section{
  background:#F5F4F0;
  padding:88px 0;
}

.cta-card{
  background:var(--ebd-navy);
  border-radius:16px;
  padding:56px 48px;
  max-width:860px;
  margin:0 auto;
  text-align:center;
  box-shadow:0 24px 60px rgba(13,34,75,.16);
  position:relative;
  overflow:hidden;
}

.cta-card:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:var(--ebd-green-light);
}

.cta-card h2{
  color:#fff;
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:34px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-.015em;
  margin:0 0 14px;
}

.cta-card p{
  color:rgba(255,255,255,.76);
  font-size:19px;
  line-height:1.6;
  max-width:620px;
  margin:0 auto 28px;
}

.cta-card .btn-green{
  font-size:19px;
  padding:14px 30px;
  min-height:54px;
}

@media(max-width:768px){
  .cta-card-section{
    padding:64px 0;
  }

  .cta-card{
    padding:44px 28px;
    border-radius:14px;
  }

  .cta-card h2{
    font-size:30px;
  }

  .cta-card p{
    font-size:18px;
  }
}
/* ============================================================
   SOLUTIONS PAGE LABEL + MUTED TEXT FIX
   Add at bottom of style.css
   ============================================================ */

/* Enlarge green section labels on Solutions page */
.page-template-template-solutions .text-eyebrow,
.page-template-template-solutions .section-eyebrow,
.page-template-template-solutions .overline,
.page-template-template-solutions span[style*="letter-spacing"],
.page-template-template-solutions div[style*="letter-spacing"],
.page-template-template-solutions p[style*="letter-spacing"]{
  font-size:17px!important;
  font-weight:800!important;
  letter-spacing:2.4px!important;
  line-height:1.25!important;
}

/* Keep green labels green */
.page-template-template-solutions span[style*="#1B7A3F"],
.page-template-template-solutions div[style*="#1B7A3F"],
.page-template-template-solutions p[style*="#1B7A3F"],
.page-template-template-solutions .green{
  color:#1B7A3F!important;
}

/* Darken washed-out gray labels/text */
.page-template-template-solutions span[style*="#8A8FA3"],
.page-template-template-solutions div[style*="#8A8FA3"],
.page-template-template-solutions p[style*="#8A8FA3"],
.page-template-template-solutions [style*="color:#8A8FA3"],
.page-template-template-solutions [style*="color: #8A8FA3"]{
  color:#586174!important;
}

/* Darken muted body text that appears too light on gray */
.page-template-template-solutions .muted,
.page-template-template-solutions [style*="color:#5F5E5A"],
.page-template-template-solutions [style*="color: #5F5E5A"]{
  color:#4A4F5F!important;
}

/* Mobile label adjustment */
@media(max-width:768px){
  .page-template-template-solutions .text-eyebrow,
  .page-template-template-solutions .section-eyebrow,
  .page-template-template-solutions .overline,
  .page-template-template-solutions span[style*="letter-spacing"],
  .page-template-template-solutions div[style*="letter-spacing"],
  .page-template-template-solutions p[style*="letter-spacing"]{
    font-size:15px!important;
    letter-spacing:2px!important;
  }
}
/* Broad fallback — use only if the page-specific version misses */
[style*="8A8FA3"],
[style*="8a8fa3"],
[style*="rgba(138"],
[style*="rgba(95"],
.muted,
.body-muted,
.soft-muted{
  color:#3F465A!important;
}

/* ============================================================
   CLEAN PATCH: homepage comparison cards + mobile safety
   ============================================================ */

/* Keep the approved two-column scenario comparison layout stable on desktop. */
.page-template-template-home .grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:stretch;
}
.page-template-template-home .grid-2 > div{
  min-width:0;
}
.page-template-template-home .grid-2 div[style*="grid-template-columns:1fr 1fr"]{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
}

@media(max-width:768px){
  .page-template-template-home .grid-2,
  .page-template-template-home .grid-2 div[style*="grid-template-columns:1fr 1fr"]{
    grid-template-columns:1fr!important;
  }
  .page-template-template-home .grid-2 div[style*="border-right"]{
    border-right:0!important;
    border-bottom:1px solid #E8E6DF!important;
    padding-right:0!important;
    padding-bottom:20px!important;
    margin-bottom:20px!important;
  }
}

/* ============================================================
   CLEAN PATCH: resource publishing system
   ============================================================ */
.post-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
  height:100%;
}
.post-card-link:focus-visible{
  outline:3px solid var(--ebd-green-light);
  outline-offset:4px;
  border-radius:var(--ebd-radius);
}
.resource-filter{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 36px;
}
.resource-filter a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  border:1px solid var(--ebd-border);
  border-radius:999px;
  padding:8px 15px;
  color:var(--ebd-navy);
  background:#fff;
  font-family:'DM Sans','Segoe UI',sans-serif;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}
.resource-filter a:hover,
.resource-filter a:focus-visible,
.resource-filter a.is-active{
  background:var(--ebd-navy);
  color:#fff;
  border-color:var(--ebd-navy);
}
.ebd-article-body :where(h2,h3,h4){
  color:var(--ebd-navy);
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  line-height:1.2;
  margin:1.6em 0 .6em;
}
.ebd-article-body :where(p,li){
  font-family:'DM Sans','Segoe UI',sans-serif;
  font-size:18px;
  line-height:1.75;
  color:var(--ebd-text);
}
.ebd-article-body a{
  color:var(--ebd-green);
  font-weight:700;
}
.ebd-article-body ul,
.ebd-article-body ol{
  padding-left:1.35em;
  margin:1em 0;
}


/* ============================================================
   PATCH 2.0.5: logo scale + navy background consistency
   ============================================================ */
.site-nav,
.page-hero,
.site-footer{
  background-color:#0D224B!important;
}
.site-logo img{
  width:245px!important;
  height:auto!important;
  max-height:56px!important;
  object-fit:contain!important;
  display:block!important;
  background:#0D224B!important;
}
.footer-logo img{
  width:315px!important;
  height:auto!important;
  max-height:none!important;
  object-fit:contain!important;
  display:block!important;
  background:#0D224B!important;
}
@media(max-width:980px){
  .site-logo img{width:215px!important;max-height:50px!important}
}
@media(max-width:768px){
  .site-logo img{width:190px!important;max-height:46px!important}
  .footer-logo img{width:270px!important}
}
.cta-card-section{
  background:#F5F4F0!important;
  padding:88px 0!important;
}
.cta-card{
  background:var(--ebd-navy)!important;
  max-width:860px!important;
  border-radius:16px!important;
  padding:56px 48px!important;
  text-align:center!important;
  box-shadow:0 24px 60px rgba(13,34,75,.16)!important;
}
.cta-card h2{
  color:#fff!important;
  font-family:'Space Grotesk','Segoe UI',sans-serif!important;
  font-size:34px!important;
  line-height:1.2!important;
  font-weight:700!important;
  margin:0 0 14px!important;
}
.cta-card p{
  color:rgba(255,255,255,.76)!important;
  font-size:19px!important;
  line-height:1.6!important;
  max-width:620px!important;
  margin:0 auto 28px!important;
}
@media(max-width:768px){
  .cta-card-section{padding:64px 0!important}
  .cta-card{padding:44px 28px!important}
  .cta-card h2{font-size:30px!important}
}


/* ============================================================
   RESOURCES PAGE RESTRUCTURE + CTA BUTTON ALIGNMENT
   v2.0.7
   ============================================================ */
.answer-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}
.answer-card{
  border-top:3px solid var(--ebd-navy);
}
.resources-section-split{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-end;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.resources-section-title{
  font-size:40px;
  line-height:1.15;
  margin-top:10px;
  margin-bottom:12px;
}
.resources-section-subtitle{
  font-size:18px;
  line-height:1.6;
  color:#5F5E5A;
  max-width:640px;
}
.resources-ask-band{
  padding:0 0 40px;
}
.ask-band-card{
  background:#fff;
  border-radius:16px;
  padding:36px 32px;
  border:1px solid rgba(13,34,75,.10);
  box-shadow:0 18px 42px rgba(13,34,75,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.ask-band-card h2{
  color:var(--ebd-navy);
  font-family:'Space Grotesk','Segoe UI',sans-serif;
  font-size:30px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-.01em;
  margin:0;
}
@media (max-width:767px){
  .answer-grid{grid-template-columns:1fr;gap:16px;}
  .answer-grid .card{padding:20px;}
  .resources-section-split{align-items:flex-start;margin-bottom:28px;}
  .resources-section-title{font-size:32px;}
  .resources-section-subtitle{font-size:17px;}
  .ask-band-card{padding:28px 24px;align-items:flex-start;flex-direction:column;}
  .ask-band-card h2{font-size:26px;}
}
@media (min-width:768px) and (max-width:1023px){
  .answer-grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:20px;}
  .answer-grid .card{padding:22px;}
}


/* ---------- About Page Refinements (2.0.9) ---------- */
.section-block{margin-bottom:56px}
.section-kicker{
  font-family:'DM Sans','Segoe UI',sans-serif;
  font-size:13px;
  line-height:1.2;
  color:var(--ebd-green);
  font-weight:800;
  letter-spacing:1.8px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-title{
  font-size:clamp(30px,4vw,44px);
  line-height:1.08;
  margin:0 0 22px;
  max-width:820px;
}
.about-copy{max-width:850px;font-size:18px;line-height:1.75;color:var(--ebd-text)}
.about-copy p{margin:0 0 18px}
.about-pillars{gap:24px}
.about-pillar-card{height:100%;padding:32px 28px;border-top:3px solid var(--ebd-green);background:#fff;display:flex;flex-direction:column}
.pillar-icon{width:64px;height:64px;margin-bottom:20px;background:rgba(27,122,63,.08);border-radius:12px;display:flex;align-items:center;justify-content:center}
.pillar-label{font-size:12px;color:var(--ebd-green);font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:8px}
.about-pillar-card h3{font-size:22px;line-height:1.25;margin-bottom:10px}
.pillar-years{font-size:38px;font-weight:700;color:var(--ebd-green);line-height:1;margin-bottom:12px}
.pillar-years span{font-size:14px;color:var(--ebd-soft-muted);font-weight:600;letter-spacing:1px;text-transform:uppercase}
.about-pillar-card p{font-size:15.5px;line-height:1.62;color:var(--ebd-text);flex-grow:1}
.about-callout{background:var(--ebd-navy);border-radius:10px;padding:42px 44px;margin-bottom:56px;text-align:center}
.about-callout p{font-size:clamp(25px,3vw,32px);line-height:1.35;color:#fff;margin:0;font-weight:600}
.about-card-grid{gap:24px;margin-bottom:0}
.about-work-card h3{font-size:24px;margin-bottom:8px}
.about-work-card p{font-size:19px;line-height:1.65;color:var(--ebd-text)}
.expect-grid{gap:20px}
.expect-card{background:#fff;border:1px solid var(--ebd-border);border-radius:10px;padding:24px 24px;box-shadow:0 6px 18px rgba(13,34,75,.06)}
.expect-card h3{font-size:18px;margin-bottom:8px;font-weight:800}
.expect-card p{font-size:16px;line-height:1.55;color:var(--ebd-muted);margin:0}
.about-credentials{background:#F8F7F3;border:1px solid var(--ebd-border);border-radius:10px;padding:24px 28px;margin-top:24px;margin-bottom:8px;color:var(--ebd-text)}
.credentials-grid{gap:28px;margin:0}
.about-credentials h3{font-size:17px;margin-bottom:12px}
.about-credentials p{font-size:14.5px;line-height:1.55;margin:0 0 8px;color:var(--ebd-muted)}
.about-credentials a{color:var(--ebd-text);text-decoration:none}
.about-credentials span{color:var(--ebd-muted)}
.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media (max-width: 768px){
  .section-block{margin-bottom:42px}
  .about-copy{font-size:16.5px;line-height:1.68}
  .about-pillar-card{padding:26px 22px}
  .about-callout{padding:32px 24px;margin-bottom:42px}
  .about-work-card p{font-size:17px}
  .about-credentials{padding:22px 20px}
}


/* ---------- CTA spacing refinement ---------- */
.cta-panel h2{margin-bottom:24px!important;}
.cta-panel h2 + .btn-green{margin-top:8px!important;}
.cta-panel p{margin-bottom:30px!important;}
.cta-card h2{margin-bottom:26px!important;}
.cta-card h2 + .btn-green{margin-top:4px!important;}
.cta-card p{margin-bottom:30px!important;}
@media(max-width:768px){
  .cta-panel h2{margin-bottom:22px!important;}
  .cta-card h2{margin-bottom:24px!important;}
}


/* ============================================================
   Resources Answer Library Spacing Refinement
   v2.0.11
   Keeps the intro header and first card row from feeling cramped.
   ============================================================ */
.resources-answer-library{
  padding-top:84px;
  padding-bottom:88px;
}
.resources-answer-library .section-header{
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:68px;
}
.resources-answer-library .section-eyebrow{
  margin-bottom:14px;
}
.resources-answer-library .section-title{
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:22px;
}
.resources-answer-library .section-subtitle{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width:767px){
  .resources-answer-library{
    padding-top:64px;
    padding-bottom:72px;
  }
  .resources-answer-library .section-header{
    margin-bottom:42px;
  }
  .resources-answer-library .section-eyebrow{
    margin-bottom:10px;
  }
  .resources-answer-library .section-title{
    margin-bottom:16px;
  }
}

/* ---------- About Why We Exist Typographic Scale Fix (2.0.13) ---------- */
.about-exist{
  padding-top:70px;
  padding-bottom:84px;
  margin-bottom:78px;
}
.about-exist .section-kicker{
  display:block;
  font-size:24px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:2.4px;
  color:var(--ebd-green);
  text-transform:uppercase;
  margin-bottom:26px;
}
.about-exist .section-title{
  max-width:1050px;
  font-size:clamp(52px,5.8vw,78px);
  line-height:1.02;
  letter-spacing:-0.04em;
  margin-bottom:42px;
}
.about-exist .about-copy{
  max-width:880px;
  font-size:22px;
  line-height:1.72;
}
.about-exist .about-copy p{
  margin-bottom:26px;
}
.about-exist .about-copy p:last-child{
  margin-bottom:0;
  font-size:24px;
  line-height:1.35;
  font-weight:800;
  color:var(--ebd-navy);
}
@media (max-width: 768px){
  .about-exist{
    padding-top:44px;
    padding-bottom:58px;
    margin-bottom:58px;
  }
  .about-exist .section-kicker{
    font-size:16px;
    letter-spacing:1.8px;
    margin-bottom:18px;
  }
  .about-exist .section-title{
    font-size:clamp(38px,11vw,54px);
    line-height:1.04;
    margin-bottom:30px;
  }
  .about-exist .about-copy{
    font-size:18px;
    line-height:1.68;
  }
  .about-exist .about-copy p:last-child{
    font-size:20px;
  }
}

/* ---------- About Page Eyebrow Reconciliation (V4.7) ----------
   About page section kickers now use the same global section-kicker scale as the rest of the site. */

/* ---------- About Page Section Format Reconciliation (V4.3) ----------
   Makes the WHY WE EXIST content block use the same section typography system
   as the other About page sections while retaining the larger green eyebrows. */
.about-page .about-exist{
  padding-top:0;
  padding-bottom:0;
  margin-bottom:56px;
}
.about-page .about-exist .section-title{
  max-width:820px;
  font-size:clamp(30px,4vw,44px)!important;
  line-height:1.08!important;
  letter-spacing:normal!important;
  margin:0 0 22px!important;
}
.about-page .about-exist .about-copy{
  max-width:850px;
  font-size:18px!important;
  line-height:1.75!important;
  color:var(--ebd-text);
}
.about-page .about-exist .about-copy p{
  margin:0 0 18px!important;
}
.about-page .about-exist .about-copy p:last-child{
  margin-bottom:0!important;
  font-size:18px!important;
  line-height:1.75!important;
  font-weight:800;
  color:var(--ebd-navy);
}
@media (max-width: 768px){
  .about-page .about-exist{
    margin-bottom:42px;
  }
  .about-page .about-exist .section-title{
    font-size:clamp(30px,4vw,44px)!important;
  }
  .about-page .about-exist .about-copy,
  .about-page .about-exist .about-copy p:last-child{
    font-size:16.5px!important;
    line-height:1.68!important;
  }
}

/* Production hero emphasis color */
.page-hero .hero-green{color:var(--ebd-green-light)}
