.header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.5rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding-bottom: 1.2rem;
  border-bottom: 0.05rem solid #999;
}

.header img {
  width: 2.8rem;
  height: 2.8rem;
}

.tag-list {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tag-item {
  display: block;
  height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  border-radius: 1.5rem;
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}
.tag-item:hover{
  color: var(--primary-text-color);
}

@media (min-width: 960px) {
  .header {
    margin-top: 0;
  }

  .header {
    gap: 0.3rem;
    margin-top: 0;
    font-size: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 0.05rem solid #999;
  }

  .header img {
    width: 2rem;
    height: 2rem;
  }

  .tag-list {
    margin-top: 1rem;
    gap: 1rem;
  }

  .tag-item {
    height: 2rem;
    line-height: 2rem;
    padding: 0 0.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 400;
  }
}