.banner-carousel {
  border-radius: 16px;
  overflow: hidden;
}

.banner-image {
  height: 360px;
  object-fit: cover;
}

.banner-placeholder {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f8;
}

.banner-placeholder img {
  max-width: 140px;
}

.banner-caption {
  padding: 12px 16px 0;
}

.banner-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow: auto;
}

.banner-list-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #eef1f7;
  background: #fff;
}

.banner-thumb {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f5f7;
}

.banner-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef1f7;
  background: #fff;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-card-body {
  padding: 12px;
}

.carousel-controls .btn {
  border-radius: 999px;
}

@media (max-width: 991px) {
  .banner-image,
  .banner-placeholder {
    height: 260px;
  }
  .media-card img {
    height: 200px;
  }
  .banner-list {
    max-height: none;
  }
}
