.ex-edb-block {
  margin: 0 0 24px;
  padding: 20px 24px;
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background: #fff;
}

.ex-edb-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a8da3;
}

.ex-edb-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #1c3554;
}

.ex-edb-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #5f6f82;
}

.ex-edb-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ex-edb-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #dce5ef;
  border-radius: 12px;
  background: #f8fbff;
  color: #294055;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ex-edb-option:hover {
  border-color: #8aa8c8;
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.08);
}

.ex-edb-option:focus {
  outline: none;
}

.ex-edb-option:focus-visible {
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.18);
}

.ex-edb-option[aria-checked="true"],
.ex-edb-option.ex-edb-option-selected {
  border-color: #1e3a5f;
  background: #eef4fb;
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.12);
}

.ex-edb-check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 1px solid #c5d4e4;
  border-radius: 6px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.ex-edb-option[aria-checked="true"] .ex-edb-check,
.ex-edb-option.ex-edb-option-selected .ex-edb-check {
  border-color: #1e3a5f;
  background: #1e3a5f;
  color: #fff;
}

.ex-edb-label {
  flex: 1;
}

@media (max-width: 720px) {
  .ex-edb-grid {
    grid-template-columns: 1fr;
  }
}
