.vs-main {
  padding: 16px 0 30px;
}
.vs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.vs-hero-title {
  font-size: 1.15rem;
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 700;
}
.vs-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.vs-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.vs-panel-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.vs-artlist {
  padding: 6px 0;
}
.vs-artlist .item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.vs-artlist .item:last-child {
  border-bottom: 0;
}
.vs-artlist .item img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
  background: var(--surface-soft);
}
.vs-artlist .item .info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.vs-artlist .item .info h2 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vs-artlist .item .info p {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vs-artlist .item .info .meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: .76rem;
  color: var(--muted);
}
.vs-artlist .item .info .meta .tag {
  display: inline-block;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 6px;
  margin-right: 6px;
  color: #cdd5ea;
}
.vs-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px;
  justify-content: center;
}
.vs-pager a, .vs-pager span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}
.vs-pager a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 900px) {
  .vs-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 560px) {
  .vs-artlist .item img {
    width: 110px;
    height: 78px;
  }
}
html[data-theme="light"] .vs-panel-head,
html[data-theme="light"] .vs-artlist .item .info h2 a,
html[data-theme="light"] .vs-artlist .item .info h2 {
  color: #1a2233;
}
html[data-theme="light"] .vs-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
html[data-theme="light"] .vs-panel-head,
html[data-theme="light"] .vs-artlist .item {
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .vs-artlist .item .info p,
html[data-theme="light"] .vs-artlist .item .info .meta {
  color: #64748b;
}
html[data-theme="light"] .vs-artlist .item .info .meta .tag,
html[data-theme="light"] .vs-pager a,
html[data-theme="light"] .vs-pager span {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.1);
  color: #334155;
}
html[data-theme="light"] .vs-pager .active {background: #fff3cc;}
.vs-pager .active {background: var(--primary);}