
/* === News tags, automatic date and editor guide === */
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(120,235,255,.35);
  background: rgba(0,210,255,.08);
  color: #9feaff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .03em;
  box-shadow: 0 0 10px rgba(0,210,255,.10);
}

.news-date {
  display: inline-block;
  margin: 0 0 14px;
  color: rgba(230,246,255,.68);
  font-size: 13px;
  font-weight: 650;
}

.news-editor-guide {
  margin: 24px 0 34px;
  padding: 22px;
  border-radius: 22px;
  border: 1px dashed rgba(120,235,255,.34);
  background: rgba(0,210,255,.045);
}

.news-editor-guide h2 {
  margin-top: 0;
  font-size: clamp(22px, 2.2vw, 32px);
}

.news-editor-guide pre {
  overflow: auto;
  padding: 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.30);
  color: #dff9ff;
  font-size: 13px;
  line-height: 1.5;
}

.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.news-filter {
  border: 1px solid rgba(120,235,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #dff9ff;
  padding: 8px 12px;
  font-weight: 750;
  cursor: pointer;
  transition: all .22s ease;
}

.news-filter:hover,
.news-filter.active {
  color: #9feaff;
  border-color: rgba(120,235,255,.55);
  box-shadow: 0 0 14px rgba(0,210,255,.16);
}
