/* ============================================================
   Goleman EI Dashboard - Styles
   PHB Design System: navy #0d2b4e, teal #1d9e75, gold #ba7517
   Fonts: Playfair Display (headings), Source Sans 3 (body)
   All styles scoped to #phb-root
   ============================================================ */

body { background: transparent !important; }

#phb-root .goleman-dashboard {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  line-height: 1.6;
  font-size: 16px;
}

#phb-root .goleman-dashboard * { box-sizing: border-box; }

/* ====== HEADER ====== */
#phb-root .gei-header {
  background: linear-gradient(135deg, #0d2b4e 0%, #1a3f6b 100%);
  color: #fff;
  padding: 48px 40px;
  border-radius: 8px;
  margin: 24px 0 32px;
  border-left: 6px solid #ba7517;
  position: relative;
  overflow: hidden;
}
#phb-root .gei-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(29,158,117,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
#phb-root .gei-header-inner { position: relative; z-index: 1; }
#phb-root .gei-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ba7517;
  font-weight: 600;
  margin-bottom: 12px;
}
#phb-root .gei-header .gei-title,
#phb-root h1.gei-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff !important;
}
#phb-root .gei-header .gei-subtitle,
#phb-root p.gei-subtitle {
  font-size: 17px;
  color: #d4dde8 !important;
  margin: 0 0 16px;
  max-width: 780px;
  font-weight: 300;
}
#phb-root .gei-header .gei-credit {
  font-size: 13px;
  color: #8fa3bd !important;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 14px;
  margin-top: 14px;
  max-width: 780px;
}
#phb-root .gei-header .gei-credit em { color: #d4dde8 !important; }

/* ====== TABS ====== */
#phb-root .gei-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 2px solid #e5e9ef;
}
#phb-root .gei-tab {
  background: transparent;
  border: none;
  padding: 14px 18px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5a6478;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}
#phb-root .gei-tab:hover { color: #0d2b4e; background: #f5f7fa; }
#phb-root .gei-tab.active {
  color: #0d2b4e;
  border-bottom-color: #ba7517;
  background: #f5f7fa;
}

/* ====== PANELS ====== */
#phb-root .gei-panel { display: none; animation: gei-fade 0.3s ease; }
#phb-root .gei-panel.active { display: block; }
@keyframes gei-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ====== TYPOGRAPHY ====== */
#phb-root .gei-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: #0d2b4e;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
#phb-root .gei-section-h {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e9ef;
  position: relative;
}
#phb-root .gei-section-h::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #1d9e75;
}
#phb-root .gei-h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #0d2b4e;
  margin: 0 0 14px;
}
#phb-root .gei-lede {
  font-size: 17px;
  color: #4a5568;
  margin: 0 0 28px;
  font-weight: 300;
  max-width: 820px;
}

/* ====== PULLQUOTE ====== */
#phb-root .gei-pullquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: #0d2b4e;
  padding: 20px 28px;
  border-left: 4px solid #ba7517;
  background: #fdf8f0;
  margin: 0 0 32px;
  border-radius: 0 6px 6px 0;
}

/* ====== GRIDS ====== */
#phb-root .gei-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
#phb-root .gei-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) {
  #phb-root .gei-grid-2, #phb-root .gei-grid-3 { grid-template-columns: 1fr; }
}

/* ====== CARDS ====== */
#phb-root .gei-card {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(13,43,78,0.04);
}
#phb-root .gei-card-accent {
  background: #f5f7fa;
  border-top: 4px solid #1d9e75;
}
#phb-root .gei-card p { margin: 0 0 12px; color: #2a3142; }
#phb-root .gei-card p:last-child { margin-bottom: 0; }

/* ====== COMPARISON TABLE ====== */
#phb-root .gei-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
#phb-root .gei-compare th {
  background: #0d2b4e;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
}
#phb-root .gei-compare th:last-child { background: #1d9e75; }
#phb-root .gei-compare td {
  padding: 10px 14px;
  border-bottom: 1px solid #e5e9ef;
  font-size: 14px;
}
#phb-root .gei-compare tr:nth-child(odd) td { background: #fafbfc; }

/* ====== CLIMATE COMPARISON ====== */
#phb-root .gei-climate {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 16px;
  align-items: center;
  margin: 24px 0 8px;
}
@media (max-width: 820px) {
  #phb-root .gei-climate { grid-template-columns: 1fr; }
  #phb-root .gei-climate-arrow { transform: rotate(90deg); text-align: center; }
}
#phb-root .gei-climate-col {
  padding: 24px;
  border-radius: 8px;
  border-top: 4px solid;
}
#phb-root .gei-climate-bad {
  background: #fdf2f2;
  border-top-color: #c44848;
}
#phb-root .gei-climate-good {
  background: #f0f9f5;
  border-top-color: #1d9e75;
}
#phb-root .gei-climate-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
  color: #0d2b4e;
}
#phb-root .gei-climate-col ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: #2a3142;
}
#phb-root .gei-climate-col li { margin-bottom: 6px; }
#phb-root .gei-climate-arrow {
  font-size: 32px;
  color: #ba7517;
  text-align: center;
  font-weight: 300;
}

/* ====== FOUR DOMAIN PREVIEW CARDS ====== */
#phb-root .gei-fourcard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 820px) {
  #phb-root .gei-fourcard { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  #phb-root .gei-fourcard { grid-template-columns: 1fr; }
}
#phb-root .gei-fc {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
#phb-root .gei-fc:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13,43,78,0.08);
}
#phb-root .gei-fc-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: #ba7517;
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}
#phb-root .gei-fc strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: #0d2b4e;
  margin-bottom: 8px;
}
#phb-root .gei-fc p {
  font-size: 13px;
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
}

/* ====== DOMAIN ACCORDIONS (Tab 2) ====== */
#phb-root .gei-domain {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
#phb-root .gei-domain.open { box-shadow: 0 6px 20px rgba(13,43,78,0.08); }
#phb-root .gei-domain-head {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.2s;
}
#phb-root .gei-domain-head:hover { background: #f5f7fa; }
#phb-root .gei-domain-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  color: #ba7517;
  flex-shrink: 0;
  min-width: 50px;
}
#phb-root .gei-domain-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #0d2b4e;
  flex: 1;
}
#phb-root .gei-domain-tag {
  font-size: 13px;
  font-style: italic;
  color: #1d9e75;
  font-weight: 600;
}
@media (max-width: 600px) { #phb-root .gei-domain-tag { display: none; } }
#phb-root .gei-domain-toggle {
  font-size: 24px;
  color: #5a6478;
  font-weight: 300;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f7fa;
  transition: transform 0.3s;
}
#phb-root .gei-domain.open .gei-domain-toggle { transform: rotate(45deg); background: #ba7517; color: #fff; }
#phb-root .gei-domain-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
#phb-root .gei-domain.open .gei-domain-body {
  max-height: 1200px;
  padding: 8px 24px 24px;
  border-top: 1px solid #e5e9ef;
}
#phb-root .gei-domain-body h4 {
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #1d9e75;
  margin: 0 0 8px;
  font-weight: 700;
}
#phb-root .gei-domain-body p, #phb-root .gei-domain-body ul { font-size: 14px; color: #2a3142; margin: 0 0 8px; }
#phb-root .gei-domain-body ul { padding-left: 18px; }
#phb-root .gei-domain-body ul li { margin-bottom: 4px; }
#phb-root .gei-dysfunction {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fdf2f2;
  border-left: 3px solid #c44848;
  font-size: 13px;
  color: #2a3142;
  border-radius: 0 4px 4px 0;
}
#phb-root .gei-dysfunction strong { color: #c44848; }

/* ====== CALLOUTS ====== */
#phb-root .gei-callout {
  background: #f0f9f5;
  border-left: 4px solid #1d9e75;
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
  font-size: 15px;
  color: #2a3142;
}
#phb-root .gei-callout strong { color: #0d2b4e; }
#phb-root .gei-callout-warn {
  background: #fdf8f0;
  border-left-color: #ba7517;
}
#phb-root .gei-callout-feature {
  background: linear-gradient(135deg, #0d2b4e 0%, #1a3f6b 100%);
  color: #fff;
  border-left-color: #ba7517;
  font-size: 16px;
}
#phb-root .gei-callout-feature strong { color: #ba7517; }
#phb-root .gei-callout-feature em { color: #1d9e75; font-style: normal; font-weight: 600; }

/* ====== ASSESSMENT ====== */
#phb-root .gei-assessment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #f5f7fa;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #5a6478;
}
#phb-root .gei-meta-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #ba7517;
}
#phb-root .gei-question {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 6px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
#phb-root .gei-question.answered { border-color: #1d9e75; border-left: 4px solid #1d9e75; }
#phb-root .gei-q-text {
  font-size: 15px;
  color: #2a3142;
  margin-bottom: 12px;
  font-weight: 500;
}
#phb-root .gei-q-domain {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ba7517;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
#phb-root .gei-q-scale {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
#phb-root .gei-q-opt {
  flex: 1;
  min-width: 80px;
  padding: 10px 6px;
  background: #fff;
  border: 1.5px solid #d4dde8;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: #5a6478;
  font-weight: 600;
  text-align: center;
  transition: all 0.15s;
}
#phb-root .gei-q-opt:hover { border-color: #1d9e75; color: #1d9e75; }
#phb-root .gei-q-opt.selected {
  background: #1d9e75;
  border-color: #1d9e75;
  color: #fff;
}
#phb-root .gei-q-num { font-weight: 700; display: block; font-size: 16px; margin-bottom: 2px; }

/* ====== RESULTS ====== */
#phb-root .gei-results {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 28px;
  margin-top: 24px;
  border-top: 4px solid #ba7517;
}
#phb-root .gei-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 820px) { #phb-root .gei-results-grid { grid-template-columns: 1fr; } }
#phb-root .gei-chart-wrap { background: #fff; padding: 20px; border-radius: 6px; }
#phb-root .gei-chart-wrap-wide {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e9ef;
  margin: 20px 0;
  height: 360px;
}
#phb-root .gei-domain-scores .gei-ds-row {
  background: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#phb-root .gei-ds-name { font-weight: 600; color: #0d2b4e; }
#phb-root .gei-ds-score { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #ba7517; }
#phb-root .gei-ds-bar { width: 100%; height: 6px; background: #e5e9ef; border-radius: 3px; margin-top: 6px; overflow: hidden; }
#phb-root .gei-ds-fill { height: 100%; background: linear-gradient(90deg, #1d9e75, #ba7517); border-radius: 3px; transition: width 0.6s ease; }
#phb-root .gei-ds-row-wrap { background: #fff; padding: 14px 18px; border-radius: 6px; margin-bottom: 8px; }
#phb-root .gei-ds-top { display: flex; justify-content: space-between; align-items: baseline; }
#phb-root .gei-recommendations {
  background: #fff;
  padding: 22px;
  border-radius: 6px;
  margin-top: 20px;
  border-left: 4px solid #1d9e75;
}
#phb-root .gei-recommendations h4 {
  font-family: 'Playfair Display', serif;
  color: #0d2b4e;
  margin: 0 0 12px;
  font-size: 18px;
}
#phb-root .gei-recommendations ul { padding-left: 20px; margin: 0; }
#phb-root .gei-recommendations li { margin-bottom: 8px; color: #2a3142; }

/* ====== EVIDENCE CARDS ====== */
#phb-root .gei-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { #phb-root .gei-evidence-grid { grid-template-columns: 1fr; } }
#phb-root .gei-evidence-card {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  padding: 24px;
  border-top: 4px solid #1d9e75;
  position: relative;
}
#phb-root .gei-evidence-stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 900;
  color: #ba7517;
  line-height: 1;
  margin-bottom: 4px;
}
#phb-root .gei-evidence-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #5a6478;
  margin-bottom: 16px;
  font-weight: 600;
}
#phb-root .gei-evidence-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #0d2b4e;
  margin: 0 0 10px;
}
#phb-root .gei-evidence-card p { font-size: 14px; color: #2a3142; margin: 0 0 14px; }
#phb-root .gei-evidence-citation {
  padding-top: 12px;
  border-top: 1px solid #e5e9ef;
  font-size: 12px;
  color: #5a6478;
}

/* ====== SCENARIOS (Tab 5) ====== */
#phb-root .gei-scenarios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 820px) { #phb-root .gei-scenarios { grid-template-columns: 1fr; } }
#phb-root .gei-scenario {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #ba7517;
}
#phb-root .gei-scenario-tag {
  display: inline-block;
  background: #0d2b4e;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  font-weight: 700;
}
#phb-root .gei-scenario h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #0d2b4e;
  margin: 0 0 10px;
}
#phb-root .gei-scenario p {
  font-size: 13.5px;
  color: #2a3142;
  margin: 0;
  line-height: 1.55;
}
#phb-root .gei-scenario p strong { color: #ba7517; }

/* ====== BALANCE DIAGRAM ====== */
#phb-root .gei-balance {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 20px 0;
}
@media (max-width: 820px) { #phb-root .gei-balance { grid-template-columns: 1fr; } }
#phb-root .gei-balance-col {
  background: #fdf2f2;
  padding: 22px;
  border-radius: 8px;
  border-top: 4px solid #c44848;
}
#phb-root .gei-balance-center {
  background: linear-gradient(135deg, #1d9e75 0%, #0d2b4e 100%);
  padding: 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 4px solid #ba7517;
}
#phb-root .gei-balance-target {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
#phb-root .gei-balance-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d2b4e;
  margin-bottom: 6px;
}
#phb-root .gei-balance-eq {
  font-size: 18px;
  color: #c44848;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
#phb-root .gei-balance-col p { font-size: 13.5px; color: #2a3142; margin: 0; }

/* ====== PLANNER ====== */
#phb-root .gei-planner-domain {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 16px;
  border-top: 4px solid #1d9e75;
}
#phb-root .gei-planner-domain h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #0d2b4e;
  margin: 0 0 14px;
}
#phb-root .gei-practice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: #fafbfc;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
}
#phb-root .gei-practice:hover { background: #f0f9f5; }
#phb-root .gei-practice input { margin-top: 3px; accent-color: #1d9e75; }
#phb-root .gei-practice-text { font-size: 14px; color: #2a3142; flex: 1; }
#phb-root .gei-practice.checked { background: #f0f9f5; border-left: 3px solid #1d9e75; padding-left: 9px; }

#phb-root .gei-planner-actions { margin: 24px 0; display: flex; gap: 12px; flex-wrap: wrap; }
#phb-root .gei-btn-primary, #phb-root .gei-btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
#phb-root .gei-btn-primary { background: #ba7517; color: #fff; }
#phb-root .gei-btn-primary:hover { background: #a36514; }
#phb-root .gei-btn-secondary { background: transparent; color: #0d2b4e; border: 1.5px solid #d4dde8; }
#phb-root .gei-btn-secondary:hover { border-color: #0d2b4e; background: #f5f7fa; }

#phb-root .gei-plan-output {
  background: #fff;
  border: 2px solid #1d9e75;
  border-radius: 8px;
  padding: 28px;
  margin-top: 20px;
}
#phb-root .gei-plan-output h3 {
  font-family: 'Playfair Display', serif;
  color: #0d2b4e;
  margin: 0 0 18px;
  border-bottom: 2px solid #ba7517;
  padding-bottom: 10px;
}
#phb-root .gei-plan-output h4 {
  font-family: 'Playfair Display', serif;
  color: #1d9e75;
  margin: 18px 0 8px;
  font-size: 17px;
}
#phb-root .gei-plan-output ul { padding-left: 22px; margin: 0; }
#phb-root .gei-plan-output li { margin-bottom: 6px; color: #2a3142; }

/* ====== REFERENCES ====== */
#phb-root .gei-refs {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  padding: 24px 28px 24px 48px;
  list-style: decimal;
}
#phb-root .gei-refs li {
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #2a3142;
  padding-left: 8px;
}
#phb-root .gei-glossary {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 24px 28px;
}
#phb-root .gei-glossary dt {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0d2b4e;
  font-size: 16px;
  margin-top: 14px;
}
#phb-root .gei-glossary dt:first-child { margin-top: 0; }
#phb-root .gei-glossary dd {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: #2a3142;
  padding-left: 16px;
  border-left: 2px solid #1d9e75;
}
#phb-root .gei-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e9ef;
  text-align: center;
  font-size: 13px;
  color: #5a6478;
  font-style: italic;
}
