/* Horizontal name fields: full-width rows, male first. */
#home .name-row{
  display:flex;
  flex-direction:column;
  gap:10px;
}
#home .heart-link{display:none}
#home .match-form label{
  display:grid;
  grid-template-columns:78px minmax(0,1fr);
  width:100%;
  height:58px;
  border-radius:11px;
}
#home .match-form label:nth-of-type(2){order:1}
#home .match-form label:nth-of-type(1){order:2}
#home .match-form label span{
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  padding:0 8px;
  line-height:1.2;
  text-align:left;
}
#home .match-form input{
  height:58px;
  padding:0 14px;
  text-align:left;
}
#home .delivery-strip{margin-top:min(76vw,305px)}
@media(max-width:390px){
  #home .match-form label{grid-template-columns:72px minmax(0,1fr);height:56px}
  #home .match-form label span{font-size:14px}
  #home .match-form input{height:56px;padding-left:12px}
  #home .delivery-strip{margin-top:76vw}
}
