/* Blätterkatalog (ePaper-Einbindung) auf /produkte/katalog + Katalog-Teaser auf /produkte */

.epaper__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 85vh;
  min-height: 420px;
  background: #62727f; /* entspricht bgcolor des Players, kaschiert das Laden */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(30, 55, 83, .15);
}

.epaper__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

@media (max-width: 767.98px) {
  .epaper__frame {
    aspect-ratio: 3 / 4;
    max-height: none;
    border-radius: 10px;
  }
}

.epaper__actions,
.kataloge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: center;
}

.epaper__actions--top {
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.kataloge__actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.epaper__actions .btn-ghost,
.kataloge__actions .btn-ghost {
  margin-top: 0;
}

.epaper__size {
  font-weight: 400;
  opacity: .75;
}

.epaper__note {
  margin-top: 1.25rem;
  font-size: .95rem;
  color: rgba(30, 55, 83, .8);
}

/* Kontrastmodus der A11y-Toolbar: Rahmen statt Schatten */
html.a11y-contrast .epaper__frame {
  box-shadow: none;
  border: 2px solid #000;
}
