.hero {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 1.1fr);
}

.hero h1 {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
}

.policy-vessel {
  position: relative;
  min-height: 24rem;
  border: 1px solid #49384f;
  border-radius: 8rem 2rem 8rem 2rem;
  background: linear-gradient(145deg, #241b2c, #160f1e);
  overflow: hidden;
}

.policy-vessel::before {
  content: "";
  position: absolute;
  inset: 11% 28% 8%;
  border: 5px solid #f7f0e5;
  border-top-width: 2px;
  border-radius: 2rem 2rem 5rem 5rem;
  opacity: .92;
}

.policy-vessel i {
  position: absolute;
  left: 31%;
  right: 31%;
  height: 18%;
  border-radius: 999px;
}

.policy-vessel i:nth-child(1) { bottom: 12%; background: #f0c94a; }
.policy-vessel i:nth-child(2) { bottom: 30%; background: #e55661; }
.policy-vessel i:nth-child(3) { bottom: 48%; background: #2f8c83; }

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