.studio-tabs {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 28px;
  display: flex;
  gap: 8px;
}

.studio-tabs button,
.studio-tabs a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #171512;
  color: var(--muted);
  padding: 10px 16px;
  font: 600 12px "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.studio-tabs button.active,
.studio-tabs a:hover {
  border-color: #8c6d42;
  background: #30271d;
  color: var(--gold2);
}

@media (max-width: 520px) {
  .studio-tabs {
    padding: 0 16px;
    overflow-x: auto;
  }

  .studio-tabs button,
  .studio-tabs a {
    white-space: nowrap;
  }
}
