.theme-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 140px 0 60px;
}

.themes-list {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding-bottom: 40px;
}

.theme-detail {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  transition: border-color .3s, transform .2s;
}

.theme-detail:hover {
  border-color: rgba(92,141,255,.3);
  transform: translateY(-2px);
}

.theme-detail:target {
  border-color: rgba(255,79,123,.5);
  box-shadow: 0 0 40px rgba(255,79,123,.12);
}

.theme-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.theme-header span {
  font-size: 32px;
}

.theme-header h2 {
  font-size: 24px;
  letter-spacing: -.04em;
}

.theme-detail p {
  color: #b0b9ce;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 560px) {
  .theme-detail { padding: 24px; }
  .theme-header h2 { font-size: 20px; }
}
