/* ============================== */
/* PLAYGROUND LIST */

.playground-subtitle {
  color: var(--c1-d);
  opacity: 0.7;
  font-size: 18px;
  margin-top: -10px;
  margin-bottom: 40px;
}

.dark .playground-subtitle {
  color: var(--c1-l);
}

.playground-container {
  max-width: 1000px;
  margin: 0 auto;
}

.playground-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.playground-item {
  background-color: var(--c2-l-70);
  border: 1px solid var(--c4-l);
  border-radius: var(--rd);
  box-shadow: var(--sh-l);
  padding: 6px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--ts0) ease;
}

.dark .playground-item {
  background-color: var(--c2-d-70);
  border-color: var(--c4-d);
  box-shadow: var(--sh-d);
}

.playground-item:hover {
  border-color: var(--c0);
  transform: translateX(6px);
}

.playground-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--rd1);
  overflow: hidden;
  border: 1px solid var(--c4-l);
  background: var(--c2-l);
  flex: 0 0 80px;
}

.dark .playground-logo {
  border-color: var(--c4-d);
  background: var(--c2-d);
}

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

.playground-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.playground-title {
  color: var(--c1-d);
  font-size: 21px;
  margin: 0 0 2px;
  text-align: left;
}

.dark .playground-title {
  color: var(--c1-l);
}

.playground-desc {
  margin: 0;
  color: var(--c1-d);
  opacity: 0.7;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.dark .playground-desc {
  color: var(--c1-l);
}

.playground-arrow {
  width: 20px;
  height: 20px;
  color: var(--c0);
  flex: 0 0 auto;
  opacity: 0.3;
  transition:
    transform var(--ts0) ease,
    opacity var(--ts0) ease;
}

.playground-item:hover .playground-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.playground-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.playground-item-disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.playground-item-disabled:hover {
  transform: none;
  border-color: var(--c4-l);
}

.dark .playground-item-disabled:hover {
  border-color: var(--c4-d);
}

@media (max-width: 768px) {
  .playground-item {
    gap: 8px;
  }

  .playground-title {
    font-size: 14px;
  }

  .playground-desc {
    font-size: 12px;
  }
}
