/* Layout: sections, containers, grids, flex utilities */

/* Full width section wrapper */
.ehba-section{
  width:100%;
  max-width:100%;
  padding-block:var(--section-padding);
  overflow-x:clip;
}

/* Container system - single source of truth */
.ehba-container{
  width:100%;
  max-width:var(--container-width);
  margin-inline:auto;
  padding-inline:30px;
  box-sizing:border-box;
  min-width:0;
}

/* Content width helper for readable copy */
.ehba-content{width:100%;max-width:var(--content-width);margin-inline:auto}
.ehba-site-main{display:block;width:100%;max-width:100%;min-width:0}

/* Grid system */
.ehba-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:24px;align-items:start}
.ehba-grid.row-3{grid-template-columns:repeat(3,1fr)}
.ehba-grid.row-2{grid-template-columns:repeat(2,1fr)}
.ehba-grid.row-1{grid-template-columns:1fr}

/* Column helpers */
.ehba-col-6{grid-column:span 6}
.ehba-col-4{grid-column:span 4}
.ehba-col-3{grid-column:span 3}

/* Flex utility */
.ehba-flex{display:flex;gap:16px;align-items:center}
.ehba-flex-space{display:flex;justify-content:space-between;align-items:center}

/* Prevent WP and blocks from shrinking or constraining */
.site,.site-main,.entry-content,.wp-site-blocks{width:100%;max-width:none;margin:0;padding:0}
.wp-block{max-width:none}
.alignwide,.alignfull{width:100%;max-width:none}

/* Simple media object */
.ehba-media{display:flex;gap:16px;align-items:flex-start}
.ehba-media__img{flex:0 0 160px}
.ehba-media__body{flex:1}

/* Hero layout placeholder (content width inside) */
.ehba-hero{position:relative;width:100%;overflow:hidden}
.ehba-hero .hero-background{position:absolute;inset:0;object-fit:cover;width:100%;height:100%}
.ehba-hero .hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.04))}
.ehba-hero .hero-content{position:relative;z-index:2;max-width:700px}

/* Section header (eyebrow, title, description) */
.ehba-section-header{margin-bottom:32px}
.ehba-section-header .eyebrow{display:block;color:var(--ehba-deep-burgundy);font-weight:700;letter-spacing:1px;margin-bottom:8px}
.ehba-section-header .title{font-size:clamp(1.5rem,2.6vw,2.5rem);margin:0 0 8px}
.ehba-section-header .description{color:var(--ehba-gray);max-width:var(--content-width)}
.ehba-section-subheader{margin-bottom:18px}
.ehba-section-subheader h3{margin:0;font-size:1.25rem;color:var(--ehba-charcoal)}

/* Grid helpers */
.ehba-section-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:24px;align-items:start}
.ehba-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}

/* Card grid helper */
.ehba-cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
