.hero {
  padding: 0.55rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
}

.hero__image {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: clamp(140px, 24vh, 240px);
  object-fit: cover;
  object-position: 75% center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #edf4ff, #f6fbff);
  filter: saturate(0.88) contrast(0.95) brightness(0.94);
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  height: 100%;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 0.26rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: linear-gradient(125deg, rgba(20, 33, 72, 0.74), rgba(26, 67, 138, 0.5));
  color: #fff;
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.92;
}

.hero__title {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.05vw, 1.85rem);
  line-height: 1.15;
}

.hero__text {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero__trust {
  margin: 0.95rem 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
}

#hero-slot .hero__image {
  height: 100%;
  min-height: 0;
}

@media (max-height: 860px) and (min-width: 980px) {
  .hero__image {
    height: clamp(108px, 18vh, 168px);
  }

  .hero__content {
    gap: 0.18rem;
    padding: 0.72rem 0.85rem;
  }

  .hero__title {
    font-size: clamp(1rem, 1.8vw, 1.45rem);
  }

  .hero__trust {
    margin-top: 0.68rem;
  }
}

@media (max-width: 740px) {
  .hero {
    padding: 0.45rem;
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero__content {
    padding: 0.76rem 0.78rem;
  }

  .hero__text {
    max-width: none;
  }
}
