.related-section {
  flex: 1;
  padding: 20px;
  background: #0a0a0a;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top: 1px solid #111;
}

.related-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.related-list {
  display: flex;
  padding: 20px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 12px;
}

/* Scrollbar Chrome / Edge / Safari */
.related-list::-webkit-scrollbar {
  height: 6px;
}

.related-list::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 10px;
}

.related-list::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

.related-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox */
.related-list {
  scrollbar-width: thin;
  scrollbar-color: #333 #0a0a0a;
}

.related-card {
  min-width: 140px;
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  transition: 0.25s;
}

.related-card:hover {
  background: #181818;
  transform: translateY(-3px);
}

.related-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 6px;
}

.related-card strong {
  font-size: 12px;
  display: block;
}

.related-card span {
  font-size: 10px;
  color: #888;
}
