/* ============================================================
   BACK TO PLAY — Stylesheet v5
   Farbpalette: Creme · Sandbeige · Warmes Beige · Dunkelbraun · Gold · Salbei
   © 2026 Cordula Freiberger · HEARTSUCCESS Mentoring UG
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --cream:      #FDF8F0;   /* Haupthintergrund */
  --sand:       #F5EDE0;   /* Alternierender Hintergrund */
  --beige:      #EDE4D4;   /* Zitat, Badges, Akzente */
  --brown:      #3D2B1F;   /* Textfarbe, Footer */
  --gold:       #C8A96E;   /* Buttons, CTAs */
  --gold-hover: #B8994E;   /* Button Hover */
  --gold-light: #F5EDD8;   /* Heller Gold-Hintergrund */
  --sage:       #7A8C6E;   /* Salbei/Moosgrün — Deko, Badges */
  --sage-light: #EBF0E7;   /* Heller Salbei-Hintergrund */
  --muted:      rgba(61,43,31,0.55);
  --placeholder-bg: #D5CEC3;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-text:   720px;
  --container:  1100px;
  --radius:     8px;
  --radius-lg:  14px;
  --section-v:  90px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   3. TYPOGRAFIE
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
}
h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brown);
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--brown);
}
h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brown);
}
p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* Kursiver Akzent in Gold */
em { color: var(--gold-hover); font-style: italic; }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
section { padding: var(--section-v) 0; }

/* Sektions-Hintergründe — klar unterscheidbar */
.bg-cream  { background: var(--cream); }
.bg-sand   { background: var(--sand); }
.bg-beige  { background: var(--beige); }
.bg-sage   { background: var(--sage-light); }
.bg-gold   { background: var(--gold-light); }
.bg-dark   { background: var(--brown); color: var(--cream); }
.bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-dark p  { color: rgba(253,248,240,0.88); }

.text-center { text-align: center; }

.prose {
  max-width: var(--max-text);
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.7;
}

.section-lead {
  max-width: var(--max-text);
  margin: -16px auto 40px;
  font-size: 18px;
}

/* Eyebrow-Label */
.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.bg-dark .eyebrow { color: var(--gold); }

/* Goldene Trennlinie */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0 auto 40px;
  border-radius: 2px;
}
.divider--left { margin-left: 0; }

/* ============================================================
   5. SCROLL-ANIMATIONEN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(200,169,110,0.30);
}
.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 28px rgba(200,169,110,0.45);
}

.btn-full { display: block; width: 100%; margin-top: auto; }

/* ============================================================
   7. STICKY BUTTON
   ============================================================ */
.sticky-btn {
  position: fixed;
  z-index: 1000;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
  opacity: 0;
  pointer-events: none;
  top: 20px;
  right: 32px;
  transform: translateY(-12px);
  box-shadow: 0 4px 16px rgba(200,169,110,0.40);
}
.sticky-btn.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-btn:hover { background: var(--gold-hover); }

@media (max-width: 768px) {
  .sticky-btn {
    top: auto; bottom: 0; right: 0; left: 0;
    border-radius: 0; padding: 18px;
    font-size: 16px; text-align: center;
    transform: translateY(12px);
  }
  .sticky-btn.is-visible { transform: translateY(0); }
  body { padding-bottom: 60px; }
}

/* ============================================================
   8. BILD-PLATZHALTER
   ============================================================ */
.img-placeholder {
  background: var(--placeholder-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--brown);
  font-size: 16px;
  font-weight: 500;
  margin: 32px auto;
  max-width: var(--max-text);
}
.img-placeholder small {
  display: block; margin-top: 6px;
  font-size: 13px; opacity: 0.55; font-weight: 400;
}
.img-placeholder--portrait { min-height: 420px; }
.img-placeholder--sm { min-height: 200px; }

/* ============================================================
   9. HERO — Vollbild mit CASHFLOW-Hintergrundbild
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Warmer Dunkel-Filter: Bild bleibt sichtbar, helle Schrift gut lesbar */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(61,43,31,0.82) 0%,
    rgba(61,43,31,0.72) 40%,
    rgba(61,43,31,0.55) 70%,
    rgba(61,43,31,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-inner { max-width: 540px; }

.hero-inner h1 { color: var(--cream); margin-bottom: 16px; font-size: clamp(44px, 6vw, 72px); }

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-tagline {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: rgba(253,248,240,0.90);
  margin-bottom: 40px;
}

.hero-img-placeholder { min-height: 400px; margin: 0; max-width: 100%; }

.hero-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  align-self: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  max-height: 520px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ============================================================
   10. PROBLEM-SEKTION (Sektion 2) — Sandbeige
   ============================================================ */
#problem {
  background: var(--sand);
  border-top: 4px solid var(--gold);
}

#problem h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  max-width: var(--max-text);
  margin: 0 auto 24px;
}

/* ============================================================
   11. WUNSCH-SEKTION (Sektion 3) — Dunkelbraun
   ============================================================ */
#wunsch {
  background: var(--brown);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

#wunsch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#wunsch h2 { color: var(--cream); }
#wunsch p  { color: rgba(253,248,240,0.88); }
#wunsch .eyebrow { color: var(--gold); }

/* ============================================================
   12. CASHFLOW-SEKTION (Sektion 4) — Creme mit Gold-Akzent
   ============================================================ */
#cashflow {
  background: var(--cream);
  border-bottom: 4px solid var(--beige);
}

/* Zitat-Block */
.quote-block {
  max-width: var(--max-text);
  margin: 48px auto 0;
  background: var(--beige);
  padding: 40px 40px 40px 56px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  text-align: left;
  position: relative;
}

.quote-deco {
  font-family: var(--font-serif);
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 4px;
  left: 12px;
  user-select: none;
  pointer-events: none;
}

.quote-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 24px;
  color: var(--brown);
}

.quote-block footer { font-size: 16px; line-height: 1.6; }

.quote-note { font-size: 14px; opacity: 0.7; }

.quote-translation {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--sage);
  font-style: italic;
}

/* ============================================================
   13. ABLAUF-SCHRITTE (Sektion 5) — Salbeigrün
   ============================================================ */
#ablauf {
  background: var(--sage-light);
  border-top: 4px solid var(--sage);
}

.steps {
  max-width: var(--max-text);
  margin: 0 auto 40px;
  text-align: left;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(122,140,110,0.20);
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  min-width: 68px;
}

.step-body { flex: 1; }

.step-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brown);
}

/* Info-Box */
.info-box {
  max-width: var(--max-text);
  margin: 0 auto;
  background: var(--brown);
  color: var(--cream);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
}

/* ============================================================
   14. FÜR WEN (Sektion 6) — Warmes Beige
   ============================================================ */
#fuer-wen {
  background: var(--beige);
  border-top: 4px solid var(--gold);
}

.not-for-you {
  max-width: var(--max-text);
  margin: 0 auto 28px;
  padding: 24px 32px;
  border-left: 5px solid var(--sage);
  background: rgba(253,248,240,0.65);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
  font-size: 17px;
  color: var(--brown);
}

.closing-line {
  font-size: 20px;
  font-weight: 500;
  max-width: var(--max-text);
  margin: 0 auto 32px;
  line-height: 1.5;
}

/* ============================================================
   15. ÜBER CORDULA (Sektion 7) — Creme
   ============================================================ */
#ueber {
  background: var(--cream);
  border-top: 4px solid var(--beige);
}

.about-wrap {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: start;
}

.about-img .img-placeholder { margin: 0; max-width: 100%; }

.about-text h2 { text-align: left; }

/* Credentials-Leiste */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  background: var(--gold-light);
  color: var(--brown);
  border: 1.5px solid var(--gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   16. TESTIMONIALS (Sektion 8) — Helles Gold
   ============================================================ */
#testimonials {
  background: var(--gold-light);
  border-top: 4px solid var(--gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.tcard {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(61,43,31,0.08);
  padding: 32px;
  text-align: left;
  position: relative;
  border-top: 4px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(61,43,31,0.14);
}

.tcard-quote-deco {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.tcard-text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--brown);
  margin-bottom: 16px;
}

.tcard-rule {
  border: none;
  border-top: 1px solid var(--beige);
  margin-bottom: 12px;
}

.tcard-author { font-size: 15px; color: var(--brown); margin-bottom: 0; }
.tcard-role   { font-size: 14px; color: var(--sage); font-weight: 500; }

/* ============================================================
   17. FAQ AKKORDEON (Sektion 9) — Sandbeige
   ============================================================ */
#faq {
  background: var(--sand);
  border-top: 4px solid var(--beige);
}

.accordion { max-width: var(--max-text); margin: 0 auto; }

.accordion-item {
  border-bottom: 1px solid var(--beige);
  background: transparent;
  transition: background 0.25s;
}

.accordion-item.is-open {
  background: rgba(253,248,240,0.70);
  border-radius: var(--radius);
}

.accordion-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 8px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: color 0.25s;
}

.accordion-question:hover { color: var(--gold-hover); }

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  color: var(--sage);
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.accordion-icon::before {
  width: 14px; height: 2px;
  top: 50%; left: 4px;
  transform: translateY(-50%);
}
.accordion-icon::after {
  width: 2px; height: 14px;
  top: 4px; left: 50%;
  transform: translateX(-50%);
}
.accordion-item.is-open .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.accordion-answer p {
  padding: 0 8px 20px;
  font-size: 17px;
  color: var(--brown);
  opacity: 0.85;
}
.accordion-item.is-open .accordion-answer { max-height: 600px; }

/* ============================================================
   18. TERMINE / LOCATION CARDS (Sektion 10) — Creme
   ============================================================ */
#termine {
  background: var(--cream);
  border-top: 4px solid var(--gold);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}

.lcard {
  background: var(--sand);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(61,43,31,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--gold);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.lcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 40px rgba(61,43,31,0.15);
}

.lcard-img {
  height: 200px;
  min-height: 200px;
  border-radius: 0;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}

.lcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lcard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lcard-body h3 { font-size: 18px; margin-bottom: 6px; }

.lcard-desc { font-size: 15px; color: var(--muted); margin-bottom: 12px; }

.lcard-meta { font-size: 14px; color: var(--brown); opacity: 0.7; margin-bottom: 4px; }

.lcard-dates {
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lcard-address { font-size: 13px; opacity: 0.55; margin-bottom: 16px; }

.lcard-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}

.price-now {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--brown);
}

.price-was {
  font-size: 16px;
  text-decoration: line-through;
  color: #999;
}

.price-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.locations-note {
  text-align: center;
  font-size: 14px;
  color: var(--brown);
  opacity: 0.6;
  margin-top: 24px;
}

/* ============================================================
   19. ABSCHLUSS (Sektion 11) — Dunkelbraun
   ============================================================ */
#abschluss {
  background: var(--brown);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#abschluss::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,169,110,0.15) 0%, transparent 65%);
  pointer-events: none;
}

#abschluss h2 {
  color: var(--cream);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 24px;
}

#abschluss p { color: rgba(253,248,240,0.85); }

/* ============================================================
   20. FOOTER
   ============================================================ */
footer {
  background: var(--brown);
  border-top: 1px solid rgba(200,169,110,0.25);
  padding: 40px;
  text-align: center;
}

.footer-inner { max-width: var(--container); margin: 0 auto; }

footer p { font-size: 14px; color: var(--cream); margin-bottom: 8px; }

footer a { color: var(--gold); transition: color 0.25s; }
footer a:hover { color: var(--cream); }

.footer-legal {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   21. RESPONSIVE — BREAKPOINT 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-v: 60px; }

  .container { padding: 0 20px; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    gap: 32px;
  }
  .hero-inner { max-width: 100%; }
  .hero-sub { font-size: 18px; }
  .hero-img-placeholder { min-height: 240px; }

  /* Ablauf */
  .step-num { font-size: 40px; min-width: 52px; }

  /* Über Cordula */
  .about-wrap { grid-template-columns: 1fr; gap: 32px; }
  .about-text h2 { text-align: center; }
  .credentials { justify-content: center; }
  .badge { white-space: normal; text-align: center; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Termine */
  .locations-grid { grid-template-columns: 1fr; }

  /* Zitat */
  .quote-block { padding: 28px 20px 28px 32px; }

  /* Abschluss */
  #abschluss { padding: 60px 0; }

  /* Footer */
  footer { padding: 32px 20px; }
}

/* ============================================================
   22. FOKUS & BARRIEREFREIHEIT
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   23. PRINT
   ============================================================ */
@media print {
  .sticky-btn { display: none; }
  #hero { min-height: auto; background: var(--cream); }
  .hero-bg, .hero-overlay { display: none; }
}

/* ============================================================
   KIM KIYOSAKI BILDER
   ============================================================ */
.kim-images {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.kim-img-wrap {
  flex: 1 1 260px;
  max-width: 340px;
  text-align: center;
}

.kim-img-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(61,43,31,0.18);
  display: block;
}

.kim-img-caption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.7;
  font-style: italic;
}

/* ============================================================
   CASHFLOW BOARD BILD (über Kim-Widmung)
   ============================================================ */
.cashflow-board-img {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 32px auto 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(61,43,31,0.18);
  object-fit: cover;
}

/* ============================================================
   ÜBER CORDULA — PORTRAIT
   ============================================================ */
.about-portrait {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(61,43,31,0.18);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-img {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
