.mode-hero-switch{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin:10px 10px 6px;
}

.mode-hero-card{
  position:relative;
  min-height:122px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 17px rgba(31,41,55,.09);
  transform:translateY(0);
  transition:transform .18s ease,box-shadow .18s ease;
}

.mode-hero-card.active{
  box-shadow:0 10px 19px rgba(31,41,55,.13);
  transform:translateY(-2px);
}

.mode-hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.mode-hero-overlay{
  position:absolute;
  inset:0;
}

.mode-hero-overlay.love{
  background:linear-gradient(180deg,rgba(126,31,68,.04),rgba(142,24,69,.14) 38%,rgba(103,17,56,.48));
}

.mode-hero-overlay.safe{
  background:linear-gradient(180deg,rgba(18,95,160,.04),rgba(19,108,183,.14) 38%,rgba(14,74,129,.5));
}

.mode-hero-copy{
  position:absolute;
  left:9px;
  right:9px;
  bottom:10px;
  z-index:2;
}

.mode-hero-title{
  display:block;
  font-size:15px;
  font-weight:800;
  color:#fff;
  text-shadow:0 2px 6px rgba(0,0,0,.18);
}

.mode-hero-desc{
  display:block;
  margin-top:4px;
  font-size:10.5px;
  line-height:1.55;
  color:rgba(255,255,255,.9);
}

.mode-hero-badge{
  position:absolute;
  top:8px;
  right:8px;
  z-index:2;
  padding:4px 8px;
  border-radius:499.5px;
  background:rgba(255,255,255,.2);
  backdrop-filter:blur(5px);
  color:#fff;
  font-size:10.5px;
  font-weight:700;
  border:0.5px solid rgba(255,255,255,.22);
}
