.tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid #f5f5f5;
}
.tab {
  padding: 8px 0 12px;
  background: none;
  border: none;
  color: #ccc;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.tab:hover {
  color: #999;
  text-decoration: none;
}
.tab.active {
  color: #000;
}
.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
}
