
.buchblock {
  display: flex;
  gap: 1.5em;
  padding: 1.5em;
  margin-bottom: 2em;
  background-color: #fcf3df; /* deutlich sichtbar */
  border: 1px solid #593727; /* wärmere Linie */
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  align-items: flex-start;
}

.buchbild img {
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.buchtext h2 {
  font-family: 'Carlito', sans-serif;
  font-size: 1.6rem;
  color: #593727;
  margin: 0 0 0.5em 0;
}

.buchtext p {
  font-size: 1rem;
  line-height: 1.5;
  color: #593727;
}

.kauf-links {
  margin-top: 1em;
}

.leseprobe-button {
  margin-top: 1em;
}

.leseprobe-button a {
  font-size: 1rem;
  font-weight: bold;
  color: #593727;
  text-decoration: none;
}

.leseprobe-button a:hover {
  color: #8d5a3a;
  text-decoration: underline;
}

.sticker {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  width: clamp(30px, 5vw, 40px);
  height: clamp(30px, 5vw, 40px);
  border-radius: 50%;
  background-color: #ffc300;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

/* .cover {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 200px; 
} */

@media (max-width: 768px) {
  .buchblock {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .buchbild {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .buchbild img {
    max-width: 80px;
    height: auto;
    margin-bottom: 1em;
    display: block;
    border-radius: 6px;
  }

  .buchtext {
    text-align: center;
  }
}
