/* ============================================================
   esbera – Beratung & Interim Management
   Stylesheet
   ============================================================ */

/* Fonts lokal gehostet – keine Verbindung zu Google-Servern */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lato-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/merriweather-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/merriweather-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/merriweather-400-ital.woff2') format('woff2');
}

/* ---- Variables ------------------------------------------- */
:root {
  --teal:        #2D6B68;
  --teal-dark:   #1E4E4C;
  --teal-light:  #3D8C88;
  --gold:        #C9A86A;
  --gold-light:  #DFC08A;
  --charcoal:    #3A3A3A;
  --gray:        #666666;
  --light-gray:  #E2E2DE;
  --off-white:   #F7F6F2;
  --white:       #FFFFFF;
  --max-w:       1100px;
  --nav-h:       72px;
  --radius:      6px;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --transition:  0.25s ease;
}

/* ---- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.75;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-light); }
ul { list-style: none; }

/* ---- Typography ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.3;
  color: var(--charcoal);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
h4 { font-size: 1rem;   font-weight: 700; }
p  { margin-bottom: 1rem; color: var(--gray); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* ---- Layout Utilities ------------------------------------ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section--gray {
  background: var(--off-white);
}
.section--teal {
  background: var(--teal);
}
.section--teal-dark {
  background: var(--teal-dark);
}
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  margin-bottom: 0.75rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 3rem;
}
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ---- Navigation ------------------------------------------ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu > li > a {
  display: block;
  padding: 0 16px;
  height: var(--nav-h);
  line-height: var(--nav-h);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--teal);
}
.nav-menu > li > a.nav-cta {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  height: 40px;
  line-height: 40px;
  margin-left: 8px;
  padding: 0 20px;
}
.nav-menu > li > a.nav-cta:hover {
  background: var(--teal-dark);
  color: var(--white);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  padding: 8px 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--teal);
  background: var(--off-white);
  border-left-color: var(--gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
}

/* ---- Page Header (below fixed nav) ----------------------- */
.page-top {
  margin-top: var(--nav-h);
}

/* ---- Hero ------------------------------------------------ */
.hero {
  margin-top: var(--nav-h);
  background: var(--teal-dark);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  opacity: 0.95;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,106,0.35);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---- Service Cards --------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.card--gold {
  border-top-color: var(--gold);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.card h3 { color: var(--charcoal); margin-bottom: 0.75rem; }
.card p  { font-size: 0.93rem; }
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.03em;
}
.card-link::after { content: ' →'; }
.card-link:hover { color: var(--teal-dark); }

/* ---- Two-column layouts ---------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col--wide {
  grid-template-columns: 3fr 2fr;
}

/* ---- Quote / Highlight box ------------------------------- */
.quote-box {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ---- Highlighted Section (Teal) -------------------------- */
.section--teal h2,
.section--teal-dark h2 { color: var(--white); }
.section--teal p,
.section--teal-dark p  { color: rgba(255,255,255,0.8); }
.section--teal .section-label,
.section--teal-dark .section-label { color: var(--gold-light); }

/* ---- Stats / Numbers ------------------------------------- */
.stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  font-family: 'Merriweather', serif;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ---- List Styles ----------------------------------------- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1rem 0;
}
.check-list li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.check-list--gold li::before { color: var(--gold); }

/* ---- Profile box ----------------------------------------- */
.profile-box {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--teal);
  flex-shrink: 0;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  flex-shrink: 0;
  border: 4px solid var(--gold);
}

/* ---- Timeline -------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.timeline-company {
  font-size: 0.875rem;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* ---- Contact Form ---------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-box {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-box h3 {
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item .ci-text {
  font-size: 0.9rem;
  color: var(--gray);
}
.contact-info-item .ci-text strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.cta-box {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 24px;
}
.cta-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.cta-box p  { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ---- Page Hero (inner pages) ----------------------------- */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--teal-dark);
  padding: 60px 0;
}
.page-hero--gold {
  background: var(--teal);
  border-bottom: 4px solid var(--gold);
}
.page-hero .hero-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 0.75rem;
}

/* ---- Teaser strip ---------------------------------------- */
.teaser-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.teaser-strip-item {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}
.teaser-strip-item .ts-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  font-family: 'Merriweather', serif;
}
.teaser-strip-item .ts-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ---- Footer ---------------------------------------------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.92);
  padding: 5px 12px;
  border-radius: 5px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.footer-col address a {
  color: rgba(255,255,255,0.65);
}
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-links { display: flex; gap: 24px; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 900px) {
  .two-col, .two-col--wide, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero { padding: 72px 0 56px; }

  /* Mobile Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 0 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a {
    height: auto;
    line-height: normal;
    padding: 12px 24px;
  }
  .nav-menu > li > a.nav-cta {
    margin: 12px 24px 0;
    text-align: center;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--gold);
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--off-white);
    margin-left: 24px;
    border-radius: 0;
    padding: 4px 0;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown > a::after { content: ' ▾'; }
  .dropdown.open > a::after { content: ' ▴'; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 28px; }
  .profile-box { flex-direction: column; }
}

/* ---- LinkedIn -------------------------------------------- */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  transition: color var(--transition);
}
.social-link:hover { color: var(--white); }
.linkedin-share {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0A66C2;
  padding: 10px 20px;
  border: 1.5px solid #0A66C2;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.linkedin-share:hover {
  background: #0A66C2;
  color: var(--white);
}

/* ---- Blog Overview --------------------------------------- */
.blog-grid {
  display: grid;
  gap: 28px;
}
.blog-teaser {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-date {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-tag--teal {
  background: rgba(45,107,104,0.1);
  color: var(--teal);
}
.blog-tag--gold {
  background: rgba(201,168,106,0.15);
  color: #8a6d2e;
}
.blog-teaser h3 {
  color: var(--charcoal);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.blog-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
}
.blog-read-more::after { content: ' →'; }
.blog-read-more:hover { color: var(--teal-dark); }
.blog-read-more--soon {
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
}
.blog-read-more--soon::after { content: ''; }

/* ---- Article Layout -------------------------------------- */
.article-layout {
  max-width: 740px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 24px 80px;
}
.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.article-back:hover { color: var(--teal-dark); }
.article-body h2 {
  font-size: 1.35rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--charcoal);
}
.article-body h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
}
.article-body p {
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.article-body ul,
.article-body ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  list-style: disc;
}
.article-body li strong {
  color: var(--charcoal);
}
.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
