/* Shared Mapillary image frame used by Guess-the-City and Guess-the-Country. */
.mp-sub {
  text-align: center;
  color: #c4c4d6;
  font-size: 13px;
  margin: 2px 0 14px;
}
.mp-frame {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 60vh;
  margin: 0 auto 14px;
}
.mp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mp-counter {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}
.mp-credit {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.45);
  padding: 4px 8px;
  border-radius: 4px;
  max-width: 70%;
  text-align: right;
  pointer-events: auto;
}
.mp-credit a { color: inherit; text-decoration: underline; }
