/* =====================================================
   COMPONENTS
   Reusable visual blocks (no layout grids here)
===================================================== */

/* ---------- BUTTONS ---------- */

.btn-play {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 0.95rem;
  border-radius: var(--radius-round);
  cursor: pointer;
}

/* ---------- TAGS / BADGES ---------- */

.moment-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-round);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- VIDEO / HERO THUMB ---------- */

.video-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

/* Overlay always visible by default */
.overlay-beatsessions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );
}

.overlay-content {
  color: #fff;
}

.overlay-content h1,
.overlay-content h2 {
  margin: 8px 0;
  font-size: 1.6rem;
}

.overlay-content p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ---------- MEDIA CARD (RADIOS / SETS) ---------- */

.media-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #eee;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
}

.media-overlay h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

/* ---------- MINI SET (SIDEBAR / DEEPCUTS) ---------- */

.mini-set-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mini-set {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mini-set img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.mini-set span,
.mini-set time {
  position: absolute;
  bottom: 10px;
  font-size: 0.8rem;
  color: #fff;
}

.mini-set span {
  left: 10px;
}

.mini-set time {
  right: 10px;
  opacity: 0.85;
}

/* ---------- DJ CARD (HOME / LISTS) ---------- */

.dj-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.dj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dj-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15)
  );
}

.dj-overlay h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.dj-overlay p {
  margin: 0 0 4px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.dj-overlay span {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ---------- NEWS ---------- */

.news-item time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.news-item p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.news-item strong {
  font-weight: 600;
  color: var(--text-main);
}
/* CSS Document */

