/**
 * Article Builder Template Styles
 * Universal blog post design system — all blocks
 * Version: 1.0.0
 */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --eu-green:        #2D6A2F;
  --eu-green-dark:   #1f4d21;
  --eu-green-light:  #e8f2e8;
  --eu-gold:         #C9A84C;
  --eu-gold-dark:    #a8882e;
  --eu-body:         #222222;
  --eu-muted:        #555555;
  --eu-subtle:       #888888;
  --eu-border:       #DEDEDE;
  --eu-surface:      #F5F5F2;
  --eu-white:        #ffffff;
  --eu-radius:       6px;
  --eu-max-w:        1080px;
}

/* ── Page Shell ───────────────────────────────────────────── */
.eu-article-page {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: var(--eu-body);
  background: var(--eu-white);
  -webkit-font-smoothing: antialiased;
}

/* ── Hero: Banner (full-width image) ─────────────────────── */
.eu-hero--banner {
  position: relative;
  width: 100%;
  /* height: 260px; */
  overflow: hidden;
}
.eu-hero--banner .eu-hero__image {
  position: absolute;
  inset: 0;
}
.eu-hero--banner .eu-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .eu-hero--banner .eu-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.38) 100%);
} */
.eu-title-section {
  max-width: var(--eu-max-w);
  margin: 0 auto;
  padding: 16px 24px 4px;
}

.eu-article-page .eu-hero--banner {
    height: 500px;
}

.eu-article-page .eu-hero--banner .eu-hero__image {
	display: flex;
  justify-content: center;
  align-items: center;
	border-radius: 8px;
  padding: 32px 0;
}

.eu-article-page .eu-hero--banner .eu-hero__image img {
	max-width: 1240px;
	max-height: 500px;
	border-radius: 8px;
}

@media (max-width: 1280px) {
	.eu-article-page .eu-hero--banner .eu-hero__image {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
	.eu-article-page .eu-hero--banner {
    height: 350px;
  }
	.eu-article-page .eu-hero--banner .eu-hero__image img {
    max-height: 350px;
  }
}

/* ── Hero: Split (text + image) ──────────────────────────── */
.eu-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--eu-white);
}
.eu-hero--split .eu-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px 56px 24px;
}
.eu-hero--split .eu-hero__image {
  position: relative;
  overflow: hidden;
}
.eu-hero--split .eu-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eu-hero--split .eu-hero__image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 100%;
  background: linear-gradient(to right, var(--eu-white) 0%, transparent 100%);
}
.eu-hero--split .eu-hero__excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  border-left: 3px solid var(--eu-gold);
  padding-left: 20px;
}

/* ── Hero: Minimal (no image) ────────────────────────────── */
.eu-hero--minimal {
  max-width: var(--eu-max-w);
  margin: 0 auto;
  padding: 48px 24px 0;
}

/* ── Hero shared elements ────────────────────────────────── */
.eu-hero__category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eu-white);
  background: var(--eu-green);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 6px;
  align-self: flex-start;
}
.eu-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--eu-green-dark);
  margin: 0;
  letter-spacing: -.01em;
}
.eu-hero__meta {
  font-size: 13px;
  color: var(--eu-subtle);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .eu-hero--split {
    grid-template-columns: 1fr;
  }
  .eu-hero--split .eu-hero__image {
    height: 250px;
    order: -1;
  }
  .eu-hero--split .eu-hero__image::after { display: none; }
  .eu-hero--split .eu-hero__content { padding: 28px 20px; }
}

/* ── Page Layout: Article + TOC ──────────────────────────── */
html body .eu-article-page .eu-page-layout {
  display: grid !important;
  grid-template-columns: 1fr 220px !important;
  gap: 52px !important;
  max-width: var(--eu-max-w) !important;
  margin: 0 auto !important;
  padding: 8px 24px 88px !important;
  align-items: start !important;
  position: relative !important;
  float: none !important;
  width: auto !important;
  overflow: visible !important;
}
html body .eu-article-page .eu-page-layout > .eu-article {
  min-width: 0 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  float: none !important;
  width: auto !important;
  position: relative !important;
  overflow: visible !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
html body .eu-article-page .eu-page-layout > .eu-toc-col {
  position: relative !important;
  align-self: start !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  float: none !important;
  width: 220px !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  html body .eu-article-page .eu-page-layout {
    grid-template-columns: 1fr !important;
  }
  html body .eu-article-page .eu-page-layout > .eu-toc-col {
    display: none !important;
  }
}

/* ── Sticky TOC Sidebar ──────────────────────────────────── */
.eu-toc {
  background: transparent;
  border: none;
  padding: 0;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--eu-border) transparent;
}
.eu-toc::-webkit-scrollbar { width: 4px; }
.eu-toc::-webkit-scrollbar-thumb { background: var(--eu-border); border-radius: 4px; }

.eu-toc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--eu-body);
  margin: 0 0 16px;
  padding: 0;
}
.eu-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}
.eu-toc-item a {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: #94a3b8;
  text-decoration: none;
  padding: 7px 0 7px 16px;
  line-height: 1.4;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color .15s, border-color .15s;
}
html body .eu-article-page .eu-toc-item a,
html body .eu-article-page .eu-toc-item a:focus,
html body .eu-article-page .eu-toc-item a:active {
  outline: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-right: none !important;
  text-decoration: none !important;
}
.eu-toc-item a:hover {
  color: var(--eu-body);
  border-left-color: #94a3b8;
}
.eu-toc-item.active a {
  color: var(--eu-body);
  font-weight: 700;
  border-left-color: var(--eu-green);
}

/* ── Typography ──────────────────────────────────────────── */
.eu-article h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--eu-green-dark);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.eu-article h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 700;
  color: var(--eu-green-dark);
  margin: 48px 0 14px;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--eu-green-light);
}
.eu-article h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--eu-green);
  margin: 28px 0 10px;
  line-height: 1.3;
}
.eu-meta {
  font-size: 13px;
  color: var(--eu-subtle);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--eu-border);
}
.eu-article p { margin-bottom: 20px; color: var(--eu-body); }
.eu-article ul,
.eu-article ol { margin: 0 0 20px; padding-left: 24px; }
.eu-article li { margin-bottom: 8px; color: var(--eu-body); }
.eu-article a { color: var(--eu-green); font-weight: 600; text-decoration: none; }
.eu-article a:hover { color: var(--eu-green-dark); text-decoration: underline; }

/* ── Author Byline ───────────────────────────────────────── */
.eu-author {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--eu-border);
}
.eu-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--eu-green-light);
}
.eu-author-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eu-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.eu-author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eu-subtle);
}
.eu-author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--eu-green-dark);
}
.eu-author-title {
  font-size: 13px;
  color: var(--eu-muted);
}
.eu-author-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--eu-green);
  text-decoration: none;
  transition: color .15s;
}
.eu-author-linkedin:hover { color: var(--eu-green-dark); }
.eu-author-linkedin svg { width: 14px; height: 14px; }
.eu-author-creds {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.eu-cred {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--eu-green);
  background: var(--eu-green-light);
  padding: 3px 10px;
  border-radius: 3px;
}

/* ── Key Takeaways ───────────────────────────────────────── */
.eu-takeaways {
  background: var(--eu-green-light);
  border-left: 4px solid var(--eu-green);
  padding: 24px 26px;
  margin: 0 0 36px;
  border-radius: 0 var(--eu-radius) var(--eu-radius) 0;
}
.eu-takeaways-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eu-green);
  margin-bottom: 14px;
}
.eu-takeaways ul { list-style: none; padding: 0; margin: 0; }
.eu-takeaways li {
  font-size: 15px;
  color: #2a2a2a;
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.55;
}
.eu-takeaways li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--eu-gold);
}

/* ── Section Heading (H2 block) ──────────────────────────── */
.eu-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 700;
  color: var(--eu-green-dark);
  margin: 48px 0 14px;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--eu-green-light);
}
.eu-article .eu-section-heading:first-child { margin-top: 0; }

/* ── Rich Text Block ─────────────────────────────────────── */
.eu-rich-text p { margin-bottom: 20px; }
.eu-rich-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--eu-green);
  margin: 28px 0 10px;
}

/* ── Image with Caption ──────────────────────────────────── */
.eu-img { margin: 36px 0; }
.eu-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--eu-border);
}
.eu-img figcaption {
  font-size: 13px;
  color: var(--eu-subtle);
  font-style: italic;
  margin-top: 9px;
  line-height: 1.5;
}

/* ── Stats Row ───────────────────────────────────────────── */
.eu-stats {
  display: grid;
  margin: 32px 0;
  border: 1px solid var(--eu-border);
  border-radius: var(--eu-radius);
  overflow: hidden;
}
.eu-stats--cols-2 { grid-template-columns: repeat(2, 1fr); }
.eu-stats--cols-3 { grid-template-columns: repeat(3, 1fr); }
.eu-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--eu-border);
  background: var(--eu-surface);
}
.eu-stat:last-child { border-right: none; }
.eu-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--eu-green);
  line-height: 1;
  margin-bottom: 8px;
}
.eu-stat-label { font-size: 13px; color: var(--eu-muted); line-height: 1.45; }
.eu-stat-source { font-size: 11px; color: #aaa; margin-top: 5px; }

/* ── Card Grid ───────────────────────────────────────────── */
.eu-card-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0 36px;
}
.eu-card-grid--cols-2 { grid-template-columns: 1fr 1fr; }
.eu-card-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.eu-card-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.eu-card {
  padding: 22px 20px 20px;
  border: 1px solid var(--eu-border);
  border-top: 3px solid var(--eu-green);
  border-radius: 0 0 var(--eu-radius) var(--eu-radius);
  background: var(--eu-white);
  transition: box-shadow .18s, transform .18s;
}
.eu-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.eu-card__icon {
  width: 32px;
  height: 32px;
  color: var(--eu-green);
  margin-bottom: 12px;
}
.eu-card__icon svg { width: 100%; height: 100%; }
.eu-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eu-gold);
  margin-bottom: 8px;
}
.eu-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--eu-green-dark);
  margin-bottom: 7px;
  line-height: 1.3;
}
.eu-card p {
  font-size: 14px;
  color: var(--eu-muted);
  margin: 0;
  line-height: 1.58;
}

/* ── Pullquote ───────────────────────────────────────────── */
.eu-pullquote {
  border-left: 4px solid var(--eu-gold);
  margin: 36px 0;
  padding: 6px 0 6px 24px;
  font-size: 18.5px;
  font-weight: 600;
  color: var(--eu-green-dark);
  line-height: 1.52;
  font-style: italic;
}
.eu-pullquote-attribution {
  display: block;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  color: var(--eu-subtle);
  margin-top: 8px;
}

/* ── Inline Soft CTA ─────────────────────────────────────── */
.eu-soft-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--eu-green-light);
  border: 1px solid rgba(45,106,47,.2);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 32px 0;
}
.eu-soft-cta p {
  font-size: 15px;
  color: var(--eu-green-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
}
.eu-soft-cta a {
  flex-shrink: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--eu-white);
  background: var(--eu-green);
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.eu-soft-cta a:hover {
  background: var(--eu-green-dark);
  color: var(--eu-white);
  text-decoration: none;
}

/* ── Bottom CTA — Surface style ──────────────────────────── */
.eu-cta {
  border-radius: 0 var(--eu-radius) var(--eu-radius) 0;
  padding: 32px 32px 32px 28px;
  margin-top: 60px;
}
.eu-cta--surface {
  background: var(--eu-surface);
  border: 1px solid var(--eu-border);
  border-left: 4px solid var(--eu-green);
}
.eu-cta--surface h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 700;
  color: var(--eu-green-dark);
  margin: 0 0 8px;
  border: none;
  padding: 0;
}
.eu-cta--surface p { color: var(--eu-muted); margin: 0 0 20px; font-size: 15px; }
.eu-cta--surface .eu-cta-btn {
  display: inline-block;
  background: var(--eu-white);
  color: var(--eu-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .03em;
  border: 2px solid var(--eu-green);
  transition: background .2s, color .2s;
}
.eu-cta--surface .eu-cta-btn:hover {
  background: var(--eu-green);
  color: var(--eu-white);
  text-decoration: none;
}

/* ── Bottom CTA — Green style ────────────────────────────── */
.eu-cta--green {
  background: var(--eu-green);
  border: none;
  border-radius: var(--eu-radius);
  text-align: center;
}
.eu-cta--green h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 700;
  color: var(--eu-white);
  margin: 0 0 8px;
  border: none;
  padding: 0;
}
.eu-cta--green p { color: rgba(255,255,255,.85); margin: 0 0 20px; font-size: 15px; }
.eu-cta--green .eu-cta-btn {
  display: inline-block;
  background: var(--eu-gold);
  color: var(--eu-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .03em;
  border: none;
  transition: background .2s;
}
.eu-cta--green .eu-cta-btn:hover {
  background: var(--eu-gold-dark);
  text-decoration: none;
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.eu-faq { margin: 0; }
.eu-faq-item { border-bottom: 1px solid var(--eu-border); }
.eu-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--eu-green-dark);
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.eu-faq-q::-webkit-details-marker { display: none; }
.eu-faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--eu-green);
  transition: transform .2s;
}
details[open] .eu-faq-chevron { transform: rotate(180deg); }
.eu-faq-a {
  font-size: 15px;
  color: var(--eu-muted);
  line-height: 1.7;
  padding: 0 0 20px;
}

/* ── Related Articles ────────────────────────────────────── */
.eu-related { margin-top: 56px; }
.eu-related > h2 {
  border: none;
  padding: 0;
}
.eu-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eu-related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--eu-border);
  border-radius: 10px;
  background: var(--eu-white);
  text-decoration: none;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.eu-related-card:hover {
  border-color: var(--eu-green);
  box-shadow: 0 6px 20px rgba(45,106,47,.12);
  transform: translateY(-3px);
  text-decoration: none;
}
.eu-related-img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--eu-green) 0%, var(--eu-green-dark) 100%);
}
.eu-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.eu-related-card:hover .eu-related-img img { transform: scale(1.05); }
.eu-related-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.eu-related-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eu-green);
}
.eu-related-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--eu-green-dark);
  line-height: 1.35;
  transition: color .15s;
}
.eu-related-card:hover .eu-related-title { color: var(--eu-green); }
.eu-related-meta { font-size: 11.5px; color: var(--eu-subtle); }
.eu-related-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--eu-green);
  margin-top: 4px;
}
.eu-related-arrow svg { width: 12px; height: 12px; }

/* ── Sources / Citations ─────────────────────────────────── */
.eu-cite {
  font-size: 11px;
  color: var(--eu-subtle);
  vertical-align: super;
  line-height: 0;
  font-weight: 600;
  margin-left: 2px;
}
.eu-sources {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--eu-border);
}
.eu-sources-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--eu-green-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.eu-sources ol { padding-left: 20px; margin: 0; }
.eu-sources li {
  font-size: 12.5px;
  color: var(--eu-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}
.eu-sources a {
  color: var(--eu-green);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(45,106,47,.3);
}
.eu-sources a:hover { text-decoration-color: var(--eu-green); }

/* ── Icon List (responsibility list) ─────────────────────── */
.eu-icon-list { margin: 24px 0 36px; }
.eu-icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--eu-border);
}
.eu-icon-list-item:first-child { padding-top: 0; }
.eu-icon-list-item:last-child { border-bottom: none; }
.eu-icon-list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--eu-green);
}
.eu-icon-list-icon svg { width: 100%; height: 100%; }
.eu-icon-list-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--eu-green-dark);
  margin: 0 0 4px;
  line-height: 1.3;
}
.eu-icon-list-text p {
  font-size: 14.5px;
  color: var(--eu-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Course List ─────────────────────────────────────────── */
.eu-course-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 24px 0 36px;
  list-style: none;
  padding: 0;
}
.eu-course-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--eu-body);
  padding: 6px 0;
}
.eu-course-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--eu-green);
  border-bottom: 2px solid var(--eu-green);
  transform: rotate(45deg);
  margin-bottom: 2px;
}

/* ── Career Timeline ─────────────────────────────────────── */
.eu-career-track {
  margin: 24px 0 36px;
  padding-left: 0;
  list-style: none;
}
.eu-career-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--eu-border);
  position: relative;
}
.eu-career-step:last-child { border-bottom: none; }
.eu-career-step::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--eu-green-light);
}
.eu-career-step:first-child::before { top: 24px; }
.eu-career-step:last-child::before { bottom: 50%; }
.eu-career-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--eu-green);
  color: var(--eu-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.eu-career-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--eu-green-dark);
  margin: 0 0 4px;
  line-height: 1.3;
}
.eu-career-body p {
  font-size: 14.5px;
  color: var(--eu-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── LEED Levels ─────────────────────────────────────────── */
.eu-leed-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 36px;
}
.eu-leed-card {
  text-align: center;
  padding: 24px 14px;
  border: 1px solid var(--eu-border);
  border-radius: var(--eu-radius);
  background: var(--eu-white);
  transition: box-shadow .18s, transform .18s;
}
.eu-leed-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.eu-leed-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.eu-leed-points {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--eu-green-dark);
  margin-bottom: 8px;
}
.eu-leed-card p {
  font-size: 13px;
  color: var(--eu-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .eu-stats { grid-template-columns: 1fr !important; }
  .eu-stat { border-right: none; border-bottom: 1px solid var(--eu-border); }
  .eu-stat:last-child { border-bottom: none; }
  .eu-card-grid { grid-template-columns: 1fr !important; }
  .eu-cta { padding: 28px 22px; }
  .eu-soft-cta { flex-direction: column; align-items: flex-start; }
  .eu-related-grid { grid-template-columns: 1fr; }
  .eu-course-list { grid-template-columns: 1fr; }
  .eu-leed-levels { grid-template-columns: 1fr 1fr; }
  .eu-career-step { gap: 14px; }
}

@media (max-width: 480px) {
  .eu-leed-levels { grid-template-columns: 1fr; }
  .eu-author { flex-direction: column; align-items: center; text-align: center; }
  .eu-author-creds { justify-content: center; }
}
