/* oevrige.css. Opdateret: 17.01.2026, Specifik styling for oevrigeudgivelser.php */
  .book-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;   /* 1:2:1:1 – hovedværket får dobbelt bredde ift. hver af de andre */
    grid-auto-rows: auto;
    gap: 30px;
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
  }

  /* Gør hovedværk-kortet til at spænde over 2 rækker, men bare 1 kolonne */
  .book-card.main {
    grid-column: 1 / 2;
    grid-row: span 2;
  }

  .book-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .book-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  /* Billede i kortet */
  .book-card img {
    width: 120px;            /* ensartet billedstørrelse i alle kort */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  }

  .book-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .book-info h2 {
    font-size: 1.3rem;
    margin: 0 0 10px;
  }
  .book-info p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 15px;
    color: var(--text-color);
  }

  .cta-button {
    align-self: flex-start;
    padding: 8px 14px;
    background: var(--brand-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
  }
  .cta-button:hover {
    background: var(--brand-hover);
  }
  .cta-group {
    display: inline-flex;
    gap: 8px;              /* afstand mellem knapperne */
  }

/* Gør knapperne smallere */
   .cta-group .cta-button {
     padding: 6px 12px;     /* mindre lodret og vandret padding */
     font-size: 0.85rem;     /* lidt mindre tekst */
     line-height: 1;         /* stram linjehøjde */
    }

    /* Infoboks under menuen (matcher “card”-look) */
.podcast-info{
  max-width: 1300px;              /* matcher book-container max-width */
  margin: 14px auto 24px;         /* luft over/under */
  padding: 10px 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  color: #222;
}

.podcast-info__text{
  margin: 0;
}

/* Link som “pill”-knapper i jeres farver */
.podcast-pill{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
}

.podcast-pill:hover{
  background: var(--brand-hover);
  text-decoration: none;
}

.stream-note{
  margin: 6px 0 10px;
  opacity: 0.85;
  font-size: 0.95rem;
}
