.platform-filter {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  width: fit-content;
  margin-inline: auto;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(28,33,27,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.48);
  box-shadow: 0 8px 30px rgba(42,47,38,.045);
}

.filter-tab {
  min-width: 92px;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #73776f;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.filter-tab:hover {
  color: var(--ink);
  background: rgba(255,255,255,.6);
}

.filter-tab.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 6px 18px rgba(28,33,27,.16);
}

.filter-tab:focus-visible {
  outline: 3px solid rgba(95,139,57,.3);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .platform-filter {
    padding-bottom: 28px;
  }

  .filter-tabs {
    width: 100%;
  }

  .filter-tab {
    min-width: 0;
    flex: 1;
    padding-inline: 10px;
  }
}
