/* === Journal Insights Banner (global styles) modified === */
.mg-hero {
  padding: 34px 0 0px;
  background: #ffffff;
}

.mg-hero__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.mg-hero__title {
  margin: 0 0 16px;
  text-align: left;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
  font-family: "Merriweather", serif;
}

.mg-strip {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(2,6,23,.08);
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mg-strip::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,0) 65%,
    transparent 100%
  );
  transform: translateX(-60%) rotate(10deg);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s ease, opacity .18s ease;
}

.mg-strip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.92);
  border-color: rgba(15,23,42,.14);
  box-shadow: 0 18px 44px rgba(2,6,23,.14);
}

.mg-strip:hover::before {
  opacity: 1;
  transform: translateX(25%) rotate(10deg);
}

.mg-strip--metrics {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.mg-metric {
  padding: 16px 18px;
  text-align: center;
  transition: background-color .18s ease;
}

.mg-metric:hover {
  background: rgba(2,6,23,.03);
}

.mg-metric:not(:last-child) {
  border-right: 1px solid rgba(15,23,42,.10);
}

.mg-metric__label {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(15,23,42,.78);
  margin-bottom: 8px;
  font-family: "Merriweather", serif;
}

.mg-metric__value {
  font-size: 1.9rem;
  font-weight: 800;
  color: rgba(15,23,42,.95);
  line-height: 1.05;
  font-family: "Merriweather", serif;
}

.mg-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(15,23,42,.55);
  margin-left: 6px;
  font-family: "Merriweather", serif;
}

.mg-strip--indexed {
  padding: 18px 20px 22px;
}

.mg-index__title {
  font-weight: 700;
  font-size: .9rem;
  color: rgba(15,23,42,.78);
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
}

.mg-index__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.mg-logo {
  flex: 0 0 132px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  transition: transform .14s ease, opacity .14s ease;
}

.mg-logo:hover {
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
}

.mg-logo img {
  max-width: 132px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(.95);
  opacity: .92;
  transition: filter .18s ease, opacity .18s ease;
}

.mg-logo:hover img {
  filter: none;
  opacity: 1;
}

.mg-logo img[alt="EBSCO"] {
  max-height: 36px;
}

.mg-logo--cnki {
  flex: 0 0 170px;
}
.mg-logo--cnki img {
  max-height: 52px;
  max-width: 170px;
  transform: scale(1.22);
  transform-origin: center;
}

.mg-logo--gscholar {
  flex: 0 0 150px;
}
.mg-logo--gscholar img {
  max-height: 40px;
  max-width: 150px;
}

@media (max-width: 900px) {
  .mg-strip--metrics {
    grid-template-columns: 1fr;
  }
  .mg-metric:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(15,23,42,.10);
  }
}

.input-group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}

.input-group-field {
  flex: 1 1 auto;
  min-width: 0;
}

.input-group-button {
  flex: 0 0 auto;
}