.tvvn-sr-show-list {
  --tvvn-sr-show-ink: #111827;
  --tvvn-sr-show-muted: #6b7280;
  --tvvn-sr-show-border: #e5e7eb;
  --tvvn-sr-show-soft: #f3f4f6;
  --tvvn-sr-show-status: #111827;
  color: var(--tvvn-sr-show-ink);
  margin: 32px 0;
  width: 100%;
}

.tvvn-sr-show-list * {
  box-sizing: border-box;
}

.tvvn-sr-show-list-header h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 22px;
}

.tvvn-sr-show-categories-wrap {
  align-items: center;
  border-bottom: 1px solid var(--tvvn-sr-show-border);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 38px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.tvvn-sr-show-categories {
  display: flex;
  gap: 35px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.tvvn-sr-show-categories::-webkit-scrollbar {
  display: none;
}

.tvvn-sr-show-category,
.tvvn-sr-show-category-next {
  background: transparent;
  border: 0;
  color: #6b7280;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  padding: 0;
}
.tvvn-sr-show-category-next{
  display: none;
}

.tvvn-sr-show-category {
  min-height: 32px;
}

.tvvn-sr-show-category.is-active,
.tvvn-sr-show-category:hover,
.tvvn-sr-show-category:focus {
  color: var(--tvvn-sr-show-ink);
  background: transparent;
}

.tvvn-sr-show-category-next {
  color: var(--tvvn-sr-show-ink);
  font-size: 42px;
  line-height: 1;
}

.tvvn-sr-show-grid {
  display: grid;
  gap: 46px 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 120px;
  transition: opacity 160ms ease;
}

.tvvn-sr-show-list.is-loading .tvvn-sr-show-grid {
  opacity: 0.55;
}

.tvvn-sr-show-card {
  min-width: 0;
}

.tvvn-sr-show-card-media {
  aspect-ratio: 16 / 9;
  background: #e5e7eb;
  border-radius: 8px;
  display: block;
  overflow: visible;
  position: relative;
  text-decoration: none;
}

.tvvn-sr-show-card-media img {
  border-radius: 8px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tvvn-sr-show-card-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #dbeafe, #fce7f3);
  border-radius: 8px;
  color: #111827;
  display: flex;
  font-size: 44px;
  font-weight: 900;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.tvvn-sr-show-status {
  background: var(--tvvn-sr-show-status);
  border-radius: 8px 8px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  left: 0;
  min-height: 34px;
  padding: 8px 14px;
  position: absolute;
  top: -34px;
  z-index: 2;
}

.tvvn-sr-show-status-sold-out {
  background: #b91c1c;
  min-width: 120px;
}

.tvvn-sr-show-status-closed {
  background: #111827;
}

.tvvn-sr-show-status-upcoming {
  background: #30D17D;
}

.tvvn-sr-show-card-term {
  background: var(--tvvn-sr-term-bg, #e0f2fe);
  border-radius: 999px;
  color: var(--tvvn-sr-term-text, #0369a1);
  display: inline-flex;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-top: 18px;
  padding: 8px 14px;
  text-decoration: none;
}

.tvvn-sr-show-card-meta {
  color: var(--tvvn-sr-show-muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  margin-top: 14px;
  min-height: 44px;
}

.tvvn-sr-show-card-title {
  font-size: 18px;
  line-height: 1.3;
  margin: 10px 0 0;
}

.tvvn-sr-show-card-title a {
  color: var(--tvvn-sr-show-ink);
  text-decoration: none;
}

.tvvn-sr-show-card-title a:hover,
.tvvn-sr-show-card-title a:focus {
  color: #30D17D;
}

.tvvn-sr-show-list-empty {
  background: #f9fafb;
  border: 1px dashed var(--tvvn-sr-show-border);
  border-radius: 8px;
  color: var(--tvvn-sr-show-muted);
  font-weight: 700;
  padding: 22px;
  text-align: center;
}

.tvvn-sr-show-list-empty[hidden],
.tvvn-sr-show-load-more[hidden] {
  display: none;
}

.tvvn-sr-show-list-actions {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.tvvn-sr-show-load-more {
  background: #f1f3f7;
  border: 0;
  border-radius: 8px;
  color: var(--tvvn-sr-show-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  min-height: 56px;
  min-width: min(100%, 420px);
  padding: 0 28px;
}

.tvvn-sr-show-load-more:hover,
.tvvn-sr-show-load-more:focus {
  background: #e5e7eb;
}

@media (max-width: 1180px) {
  .tvvn-sr-show-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .tvvn-sr-show-grid {
    gap: 36px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tvvn-sr-show-categories {
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .tvvn-sr-show-list-header h2 {
    font-size: 22px;
  }

  .tvvn-sr-show-grid {
    grid-template-columns: 1fr;
  }

  .tvvn-sr-show-card-title {
    font-size: 16px;
  }
    .tvvn-sr-show-card-meta{
      min-height: auto;
    }
}
