/* Shared view counter for all existing and future frontend content. */
/* Article view counter: presentation only; the existing counter stays intact. */
body .post-views.content-post {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin: 18px 0 4px;
  padding: 10px 16px;
  border: 1px solid #e8dcc5;
  border-radius: 14px;
  background: linear-gradient(120deg, #faf7f0, #fffdf9);
  color: #766044;
  font-size: 14px;
  line-height: 1.5;
}
body .post-views.content-post .post-views-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin: 0;
  border-radius: 10px;
  background: #681019;
  color: #f2d895;
  font-size: 18px;
}
body .post-views.content-post .post-views-label { font-weight: 500; }
body .post-views.content-post .post-views-count {
  color: #681019;
  font-size: 21px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

/* Use exact SVG geometry instead of the font glyph's uneven baseline. */
body .post-views.content-post .post-views-icon {
  position: relative;
  padding: 0 !important;
  line-height: 1 !important;
  box-sizing: border-box;
}
body .post-views.content-post .post-views-icon::before {
  content: "" !important;
  position: absolute;
  inset: 7px !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='%23f2d895'%3E%3Crect x='2' y='10' width='3' height='6' rx='0.7'/%3E%3Crect x='7.5' y='6' width='3' height='10' rx='0.7'/%3E%3Crect x='13' y='2' width='3' height='14' rx='0.7'/%3E%3C/g%3E%3C/svg%3E") center / 18px 18px no-repeat !important;
}