/* Leave-review modal: platform links instead of broken on-site form */
#review-popup.mb-leave-review{
  display:none;
  width:92vw;
  max-width:720px;
  box-sizing:border-box;
  background:#fff;
  color:#2c3a3c;
  border-radius:20px;
  padding:28px 26px 22px;
  box-shadow:0 18px 50px rgba(23,121,131,.16);
  font-family:inherit;
}
.mb-leave__title{
  margin:0 0 6px;
  font-size:26px;
  line-height:1.2;
  font-weight:700;
  color:#177983;
  text-align:center;
}
.mb-leave__lead{
  margin:0 auto 20px;
  max-width:520px;
  font-size:14px;
  line-height:1.45;
  color:#5a6e72;
  text-align:center;
}
.mb-leave__cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.mb-leave__clinic{
  background:#f4fbfc;
  border:1px solid #d9f1f3;
  border-radius:16px;
  padding:16px 14px 14px;
}
.mb-leave__clinic h3{
  margin:0 0 2px;
  font-size:18px;
  font-weight:700;
  color:#177983;
}
.mb-leave__addr{
  margin:0 0 12px;
  font-size:13px;
  color:#5a6e72;
}
.mb-leave__links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.mb-leave__link{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  padding:8px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid #d9f1f3;
  text-decoration:none !important;
  color:#2c3a3c !important;
  font-size:14px;
  font-weight:600;
  transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.mb-leave__link:hover{
  border-color:#01cbd2;
  box-shadow:0 4px 14px rgba(1,203,210,.18);
  transform:translateY(-1px);
}
.mb-leave__badge{
  flex:0 0 34px;
  width:34px;
  height:34px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}
.mb-leave__badge--ya{background:#fc3f1d}
.mb-leave__badge--g{background:#4285f4}
.mb-leave__badge--2g{background:#07a23b}
.mb-leave__badge--pd{background:#00a0e3}
.mb-leave__go{
  margin-left:auto;
  color:#01cbd2;
  font-size:18px;
  font-weight:400;
}
@media (max-width:640px){
  #review-popup.mb-leave-review{padding:20px 14px 16px;border-radius:16px;max-height:90vh;overflow-y:auto}
  .mb-leave__title{font-size:22px}
  .mb-leave__cols{grid-template-columns:1fr;gap:12px}
}
