/* ===== About the Author ===== */
.about-author {
  background: #fbf6ea; /* samme creme som screenshot */
}

.about-author__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-top: 20px;
  margin-inline: auto;
}

/* Venstre tekst */
.about-author__title {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #5a1f1f;
}

.about-author__text p {
  margin: 0 0 16px;
  max-width: 56ch;
  line-height: 1.6;
  color: #5a1f1f;
}

/* Højre kort */
.about-author__card {
  background: #cfe6e4;
  border-radius: 28px;
  padding: clamp(20px, 3vw, 36px);
  color: #5a1f1f;
}

.about-author__block + .about-author__block {
  margin-top: 28px;
}

.about-author__block h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.about-author__block ul {
  margin: 0;
  padding-left: 18px;
}

.about-author__block li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.about-author__block p {
  margin: 0 0 10px;
  line-height: 1.5;
}

/* Mobil */
@media (max-width: 800px) {
  .about-author__grid {
    grid-template-columns: 1fr;
  }

  .about-author__text p {
    max-width: none;
  }
}

/* Banner: stor billedflade med runde hjørner (som dine andre cards) */
.banner-card {
  margin: 0;
  border-radius: var(--radius); /* fx 45px */
  padding-top: 20px;

  /* Billedet går til kant */
  .banner-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Tving en “banner” proportion så den ikke bliver for høj */
  aspect-ratio: 3 / 1; /* ca. som dit screenshot */
}

/* Responsiv: på mindre skærme må den gerne blive lidt højere */
@media (max-width: 980px) {
  .banner-img {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 680px) {
  .banner-img {
    aspect-ratio: 16 / 9;
  }
}

/* === Research section === */
.research-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-inline: auto;
  padding: 20px 0;
}

/* Venstre tekst */
.research-title {
  margin: 0 0 12px;
  font-family: "Reenie Beanie", serif;
  font-size: 44px;
  font-weight: 400;
  text-align: center;
}

.research-text p {
  margin: 0 0 14px;
  max-width: 58ch;
}

/* Højre infoboks */
.research-section {
}

.research-card {
  background: var(--cream, #fbf4e3); /* samme tone som screenshot */
  border-radius: 28px;
  padding: 22px 24px;
}

.research-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.research-list {
  margin: 0;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.research-list li {
  margin-bottom: 6px;
}

.research-list a {
  color: inherit;
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 980px) {
  .research-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .research-text p {
    max-width: none;
  }

  .wrap {
    width: min(var(--max), calc(90% - 40px));
    margin-inline: auto;
  }
}

/* === Artistic === */

.wrap {
  width: min(var(--max), calc(90% - 20px));
  margin-inline: auto;
}

.artistic-section {
}

.artistic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-inline: auto;
  padding: 20px 0;
  background: linear-gradient(#e9fbff, #f5dff0);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-inline: auto;
  padding: 20px 0;
  background-color: #e2ece9;
}

.artistic-text p {
  margin: 14px auto 14px;
  max-width: 70ch;
}

.about-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.about_why_wrap {
  margin: 40px 0;
}

.share-why {
  display: flex;
  justify-content: center;
}

@media (max-width: 700px) {
  .about-why {
    grid-template-columns: 1fr;
  }
}
