/* ================= LATEST ARTICLES (SAGE-LIKE) ================= */

.journal-latest-wrapper {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 820px;
  margin: 0;
  padding: 0;
}

.journal-latest-intro {
  font-size: 15px;
  color: #444;
  margin: 0 0 22px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8edf2;
}

/* Article item */
.journal-article-item {
  padding: 20px 0;
  border-bottom: 1px solid #eef2f5;
}

/* Meta line */
.journal-article-meta {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* Inline SVG OA icon container */
.oa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  line-height: 1;
  margin-right: 6px;
  vertical-align: middle;
}

/* Make the SVG itself a compact size */
.oa-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* Open access text */
.access {
  color: #1e8e3e;   /* green */
  font-weight: 600;
  font-size: 13px;
}

/* Divider */
.divider {
  color: #9aa3ab;
  margin: 0 8px;
}

/* Title */
.journal-article-title {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 6px 0;
  line-height: 1.35;
}

.journal-article-title a {
  color: #1f4fd8;
  text-decoration: none;
}

.journal-article-title a:hover {
  text-decoration: underline;
}

/* Authors */
.journal-article-authors {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  margin-top: 4px;
}

/* ORCID — true circular badge */
.orcid-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 6px;
  background: #a6ce39;
  border-radius: 999px;
  text-decoration: none !important;
  vertical-align: middle;
  font-variant: tabular-nums;
}

.orcid-badge span {
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}

/* Hover subtle */
.orcid-badge:hover {
  filter: brightness(0.92);
}

/* Remove stray emoji icons if any plugin injected them */
.journal-article-meta .emoji,
.journal-article-meta img.emoji,
.journal-article-meta span.emoji {
  display: none !important;
}

/* Small responsive tweaks */
@media (max-width: 768px) {
  .journal-latest-wrapper { padding: 0 12px; }
  .journal-article-meta { font-size: 13px; gap: 6px; }
  .journal-article-title { font-size: 16px; }
  .oa-icon svg { width: 12px; height: 12px; }
  .orcid-badge { width: 14px; height: 14px; }
}