.efx-self-check-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 24px 0;
}

.efx-check-option {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 76, 59, 0.18);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  min-height: 144px;
  padding: 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.efx-check-option.is-selected,
.efx-check-option:has(input:checked) {
  border-color: rgba(36, 112, 93, 0.7);
  box-shadow: 0 12px 28px rgba(36, 112, 93, 0.14);
  transform: translateY(-1px);
}

.efx-check-option input {
  accent-color: #24705d;
  flex: 0 0 auto;
  margin-top: 5px;
}

.efx-check-option strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.efx-check-option span {
  color: rgba(41, 36, 31, 0.76);
  display: block;
  font-size: 0.94rem;
  line-height: 1.65;
}

.efx-self-check-result {
  background: rgba(247, 242, 233, 0.92);
  border: 1px solid rgba(91, 76, 59, 0.18);
  border-radius: 8px;
  margin-top: 20px;
  padding: 22px;
}

.efx-self-check-result h3 {
  margin-top: 0;
}

.efx-self-check-result .efx-actions {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .efx-check-option {
    min-height: auto;
  }
}
