.ssh-contact-choice,
.ssh-contact-choice * {
  box-sizing: border-box;
}

.ssh-contact-choice {
  width: 100%;
  padding: 28px;
  border: 1px solid #ccd8fa;
  border-radius: 18px;
  color: #17213b;
  background: #f6f8fc;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.07);
  font-family: "Inter", Arial, sans-serif;
}

.ssh-contact-choice__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #2f5eff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ssh-contact-choice h3 {
  max-width: 680px;
  margin: 0;
  font: 700 clamp(24px, 3vw, 34px)/1.14 "Sora", Arial, sans-serif;
}

.ssh-contact-choice__copy {
  max-width: 720px;
  margin: 12px 0 22px;
  color: #596276;
  font-size: 15px;
  line-height: 1.55;
}

.ssh-contact-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ssh-contact-choice__card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #dce3ef;
  border-radius: 13px;
  color: #17213b;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ssh-contact-choice__card:hover,
.ssh-contact-choice__card:focus-visible {
  border-color: #2f5eff;
  outline: 0;
  box-shadow: 0 9px 22px rgba(47, 94, 255, 0.12);
  transform: translateY(-1px);
}

.ssh-contact-choice__card img {
  display: block;
  width: 116px;
  height: 78px;
  object-fit: cover;
  object-position: top;
  background: #fff;
}

.ssh-contact-choice__card > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
  padding-right: 10px;
}

.ssh-contact-choice__card strong {
  overflow: hidden;
  font: 700 14px/1.3 "Sora", Arial, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ssh-contact-choice__card small {
  color: #687187;
  font-size: 11px;
}

.ssh-contact-choice__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.ssh-contact-choice__browse,
.ssh-contact-choice__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  font: 800 13px/1 "Inter", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.ssh-contact-choice__browse {
  border: 1px solid #2f5eff;
  color: #fff !important;
  background: #2f5eff;
}

.ssh-contact-choice__help {
  border: 1px solid #ccd5e4;
  color: #33405a;
  background: #fff;
}

.ssh-contact-choice[hidden],
form.breakdance-form[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .ssh-contact-choice {
    padding: 20px;
  }

  .ssh-contact-choice__grid {
    grid-template-columns: 1fr;
  }

  .ssh-contact-choice__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ssh-contact-choice__browse,
  .ssh-contact-choice__help {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ssh-contact-choice__card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .ssh-contact-choice__card img {
    width: 92px;
    height: 68px;
  }
}
