.result-card {
  min-height: 720px;
  padding: 28px;
}

.result-card h3 {
  margin-top: 26px;
  font-size: 29px;
}

.result-evidence {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #10100f;
}

.result-evidence img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease;
}

.result-evidence span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #10100f;
  color: #fff;
  font-size: 8px;
}

.result-evidence:hover img {
  transform: scale(1.025);
}

@media (max-width: 560px) {
  .result-card {
    min-height: 650px;
    padding: 20px;
  }
}
