.hero-search {
  min-height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.293), rgba(0,0,0,0.293)),
              url("../images/hero-bg.jpg") center/cover no-repeat;
}

.hero-search-2 {
  min-height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.293), rgba(0,0,0,0.293)),
              url("../images/hero-bg-2.jpg") center/cover no-repeat;
}

.hero-search h1 {
  font-size: 2.5rem;
}

.card-video {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.card-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.video-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}


.journal-banner {

  border-bottom: 1px solid #e6eef5;
  padding: 18px 0;
}

.journal-banner h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1f4e79;
}

.journal-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f4e79, #3b82f6);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.list-group-item {
  padding: 20px;
}

.list-group-item:hover {
  background: #f8f9fa;
}

.btn-group .btn.active {
  background: #0d6efd;
  color: #fff;
}

.author-card:hover {
  transform: translateY(-4px);
}

/* MOBILE AUTHOR SLIDER */
@media (max-width: 767px) {

  #authorsContainer {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  #authorsContainer::-webkit-scrollbar {
    display: none;
  }

  #authorsContainer > div {
    flex: 0 0 75%;
    max-width: 75%;
    scroll-snap-align: center;
  }
}

