/* ===== Categories grid ===== */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ===== Ad placeholder ===== */
.ad-placeholder {
  width: 300px;
  flex-shrink: 0;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}
.ad-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Video grid tags container ===== */
.videos-tags {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}


/* ===== Videos grid ===== */
.videos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 649px) {
  .tag-item { height: 40px; }
}
