.newbooks-slide {
  width: 100%;
  min-height: 350px;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: none;
}

.newbooks-slide.active {
  opacity: 1;
  z-index: 2;
  display: flex;
  pointer-events: auto;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}

.newbooks-article {
  border-radius: 3rem;
}

/* Title section */
.newbooks-title-bg {
  background-color: var(--ktn-light-blue);
  display: inline-block;
  border-radius: 0 2rem 2rem 0;
  padding: 0.5rem 2rem;
}

.newbooks-title {
  margin: 0;
  padding: 0;
  color: var(--ktn-dark-blue);
  text-align: left;
}

/* Book content */
.newbooks-slide-title {
  color: var(--ktn-dark-blue);
  margin-top: 0 !important;
  padding-top: 0;
  line-height: 1.1;
}

.newbooks-slide-author {
  color: var(--ktn-dark-blue);
  font-style: italic;
}

.newbooks-slide-description {
  color: var(--ktn-dark-blue);
  max-height: 160px;
  overflow-y: auto;
  scrollbar-width: thin;
  margin-bottom: 1rem;
}

/* Listen button */
.btn-listen {
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.btn-listen:hover {
  text-decoration: none;
}

.btn-custom {
  background-color: white !important;
  color: var(--ktn-dark-blue);
  border: 3px solid var(--ktn-dark-blue) !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.btn-custom:hover {
  background-color: var(--ktn-dark-blue) !important;
  color: #FFF;
}



/* Omezení pro velmi široké obrazovky */
@media (min-width: 100em) { /* 1600px+ */
  .book-cover {
    max-height: 350px;
  }
}

/* Responzivní výška obrázku pod 960px */
@media (max-width: 60em) { /* 60em = 960px */
  .book-cover {
    max-height: 280px;
}


}

@media (max-width: 48em) { /* 48em = 768px */
  .book-cover {
    max-height: 220px;
  }
}

@media (max-width: 40em) { /* 40em = 640px */
  .book-cover {
    max-height: 180px;
  }
  .newbooks-slide-link {
    font-size: 0.9rem;
  }
  .newbooks-slide-link svg {
    padding-left: 10px;
  }

  .newbooks-slide-description {
    font-size: 1rem;
}
}

@media (width: 480px) { /* 30em = 480px */
.fix-480 {
    width:90%;
    margin-left:20px;
}


}

@media (max-width: 30em) { /* 30em = 480px */
.book-cover {
    display: none !important;
  }

.newbooks-slide {
    flex-direction: column;
    min-height: 400px;
}

.btn-listen {
    font-size: 1rem;
}

.btn-custom {
  padding-left: 0.2rem !important;

}


.newbooks-slide-description {
    max-height: 120px; /* Menší max-height na mobilech */
    line-height: 1.2rem;
}
}

/* Mobilní zobrazení - skrýt obrázek pod 480px */
@media screen and (max-width: 480px) {
  .newbooks-cover-container {
    display: none;
  }

  .newbooks-article {
    border-radius: 1.5rem;
}
}

.new-books-home {
    overflow: hidden;
}

.newbooks-cover-container {
  min-height: 400px;
}

.book-cover {
  object-fit: cover;
  object-position: center;
}
