.ewg-page {
  max-width: 720px;
  margin: 0 auto;
}

.ewg-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4rem;
  text-align: center;
}

/* ── Sektionen ── */
.ewg-section {
  margin-bottom: 5rem;
}

.ewg-section-heading {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.ewg-section .home-quote {
  margin-top: 2.5rem;
}

/* ── Zugabe: Bild + Links nebeneinander ── */
.ewg-zugabe-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.ewg-zugabe-image {
  flex: 0 0 256px;
  max-width: 256px;
}

.ewg-zugabe-image img {
  width: 100%;
  max-width: 256px;
  display: block;
}

.ewg-zugabe-list {
  flex: 1;
  min-width: 0;
}

.ewg-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* ── Buchcover ── */
.ewg-book-cover {
  margin: 2rem 0;
}

.ewg-book-cover img {
  width: 100%;
  display: block;
}

/* ── Buch-Metadaten ── */
.ewg-book-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  color: var(--color-text);
}

.ewg-book-meta strong {
  font-family: var(--font-family-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ── Kauflinks ── */
.ewg-book-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ewg-book-btn {
  font-size: 14px;
  padding: 12px 22px 18px;
}

/* ── Hinweis ── */
.ewg-book-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ── Zugabe ── */
.ewg-zugabe-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.ewg-zugabe-link {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ewg-zugabe-desc {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  color: var(--color-text);
}

/* ── Responsive ── */
@media screen and (max-width: 600px) {
  .ewg-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .ewg-book-links {
    flex-direction: column;
  }

  .ewg-book-meta {
    gap: 1rem;
  }

  .ewg-zugabe-content {
    flex-direction: column;
  }

  .ewg-zugabe-image {
    order: 1;
    width: 80%;
    max-width: none;
    align-self: center;
  }

  .ewg-zugabe-image img {
    width: 100%;
    max-width: none;
  }

  .ewg-zugabe-list {
    order: 0;
  }
}
