.nba2-trending {
  --t-bg-1: #0D0D0D;
  --t-bg-2: #161616;
  --t-gold: #D4A63E;
  --t-gold-hover: #F0C75E;
  --t-text: #F5F5F5;
  --t-sub: #B5B5B5;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(160deg, var(--t-bg-1) 0%, var(--t-bg-2) 100%);
  border-radius: 12px;
  padding: 1.3rem 1.4rem;
  font-family: inherit;
}
.nba2-trending *, .nba2-trending *::before, .nba2-trending *::after { box-sizing: inherit; }
.nba2-trending__title {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--t-gold);
}
.nba2-trending__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nba2-trending__item {
  border-top: 1px solid rgba(200, 155, 60, 0.22);
}
.nba2-trending__item:first-child {
  border-top: none;
}
.nba2-trending__row {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
}
.nba2-trending__thumb {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--t-bg-2);
}
.nba2-trending__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.nba2-trending__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
}
.nba2-trending__link {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--t-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nba2-trending__link:hover {
  color: var(--t-gold-hover);
}
.nba2-trending__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.nba2-trending__views {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--t-sub);
  white-space: nowrap;
}
.nba2-trending__views svg {
  width: 14px;
  height: 14px;
  stroke: var(--t-sub);
  fill: none;
  stroke-width: 1.8;
}
.nba2-trending__more {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #14100c;
  background: var(--t-gold);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.nba2-trending__more:hover {
  background: var(--t-gold-hover);
}

@media (max-width: 380px) {
  .nba2-trending {
    padding: 1.1rem 1.1rem;
  }
  .nba2-trending__thumb {
    width: 60px;
    height: 60px;
  }
  .nba2-trending__link {
    font-size: 0.86rem;
  }
}
