.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, .8fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 34px;
}

.hero .intro {
  margin-bottom: 0;
}

.hero-art {
  margin: 0;
  min-width: 0;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #dbe2e3;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(14, 30, 42, .1);
}

.verdict-slot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin-left: auto;
  min-width: 0;
  align-self: center;
}

.verdict-slot .verdict {
  margin-left: 0;
}

.verdict-art {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  border: 1px solid #54706b;
  border-radius: 10px;
}

.trash-art {
  border-color: #745d58;
}

.spam-readout {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  color: #29453f;
  font-size: .95rem;
}

.spam-readout strong { font-size: 1.1rem; }

.spam-track {
  height: 7px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #dbe5e3;
}

.spam-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #c47742;
  transition: width .3s ease;
}

.spam-note {
  margin: 9px 0 18px;
  color: #526762;
  font-size: .8rem;
  line-height: 1.45;
}

@media (min-width: 901px) and (max-width: 1150px) {
  .score-line strong {
    font-size: 3.4rem;
  }

  .verdict-art {
    width: 120px;
  }
}

@media (max-width: 600px) {
  .score-line strong {
    font-size: clamp(2.75rem, 12vw, 4.2rem);
  }

  .verdict-art {
    width: 118px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-art {
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .hero {
    margin-bottom: 26px;
  }
}
