.kuulumiset-tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
  padding: 0;
  border-bottom: 1px solid #001538;
}

.kuulumiset-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: #d8eefe;
  color: #001538;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 12px 12px 0 0;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.kuulumiset-tab:hover {
  background: #031538;
  color: #fff;
}

.kuulumiset-tab.is-active {
  background: #031538;
  color: #fff;
}

.kuulumiset-tab.is-active:hover {
  background: #031538;
  color: #fff;
}

.kuulumiset-tab__count {
  opacity: 0.7;
  font-weight: 500;
}

@media (max-width: 600px) {
  .kuulumiset-tabs {
    gap: 6px;
  }
  .kuulumiset-tab {
    padding: 10px 16px;
    font-size: 14px;
  }
}
