/* Golf Gear Lab 11.2 — canonical score overlay for every scored product image */
.ggl-score-overlay-host {
  position: relative !important;
}

.ggl-product-score-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 8;
  display: grid;
  min-width: 82px;
  padding: 10px 11px 9px;
  border: 1px solid rgba(120, 211, 75, .58);
  border-radius: 13px;
  background: rgba(4, 12, 8, .92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
  color: #fff;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.ggl-product-score-overlay small {
  display: block;
  margin-bottom: 5px;
  color: #9be068;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ggl-product-score-overlay strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.035em;
}

/* Once the score is on the image, do not repeat it underneath the same card. */
.gps-card.ggl-has-score-overlay .gps-meta .gps-score {
  display: none;
}

@media (max-width: 620px) {
  .ggl-product-score-overlay {
    top: 10px;
    right: 10px;
    min-width: 74px;
    padding: 9px;
  }

  .ggl-product-score-overlay strong {
    font-size: 15px;
  }
}
