:root {
  --primary: #ce393d;
  --primary-light: #fff0f0;
}

/* 標題 */
.section-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 13px;
  width: 100%;
  margin-top: 20px;

}
.section-title2 {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 13px;
  width: 80%;

}
.section-title::before,.section-title2::before {
  content: "";
  width: 4px;
  height: 22px;
  background: var(--primary);
  margin-right: 10px;
  border-radius: 2px;
}

/* 標籤容器 */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
  margin-left: 15px;
  margin-bottom: 15px;

}

/* 單一標籤 */
.tag-list .tag-item {
  padding: 4px 8px;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
}

.tag-list .tag-item:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}
.tag-item.active {
  background: #ce393d;
  color: #fff;
}
.tag-item.active:hover {
  background: #d32f2f; 
}
/* 手機微調 */
@media (max-width: 480px) {
	.section-title2 {
	margin-top: 10px;

}

}