.webform-submission-becker-rfi-form .rfi-intent-tiles .form-type-radio > .description,
.webform-submission-becker-rfi-form .rfi-intent-tiles .form-type-radio > .form-item__description {
  display: none !important;
}
/* Make this one field stack vertically like the example */
.webform-submission-becker-rfi-form .js-form-item-is-current-student.rfi-toggle-enhanced {
  display: block;
  margin-bottom: 1rem;
}

/* Style the question like the example label */
.webform-submission-becker-rfi-form .js-form-item-is-current-student .rfi-toggle-question {
  display: block;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

/* Let the buttons span the full row */
.webform-submission-becker-rfi-form .js-form-item-is-current-student .rfi-toggle-wrapper {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

/* Remove the old divider treatment */
.webform-submission-becker-rfi-form .js-form-item-is-current-student .rfi-toggle-btn + .rfi-toggle-btn {
  border-left: 1px solid var(--rfi-gray-input);
}

/* Base button style closer to the example */
.webform-submission-becker-rfi-form .js-form-item-is-current-student .rfi-toggle-btn {
  flex: 1 1 0;
  min-height: 52px;
  padding: 0.875rem 1rem;
  border: 1px solid var(--rfi-gray-input);
  border-radius: 6px;
  background: var(--rfi-white);
  color: var(--rfi-blue);
  font-family: var(--rfi-font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: background var(--rfi-transition), border-color var(--rfi-transition), color var(--rfi-transition), box-shadow var(--rfi-transition);
}

/* Hover state */
.webform-submission-becker-rfi-form .js-form-item-is-current-student .rfi-toggle-btn:hover:not(.is-active) {
  background: var(--rfi-tile-hover-bg);
  border-color: var(--rfi-blue);
}

/* Selected state */
.webform-submission-becker-rfi-form .js-form-item-is-current-student .rfi-toggle-btn.is-active {
  background: var(--rfi-tile-selected-bg);
  border-color: var(--rfi-blue);
  color: var(--rfi-blue);
  box-shadow: inset 0 0 0 1px var(--rfi-blue);
  border-left-width: 1px;
  border-left-style: solid;
}

/* Keyboard focus */
.webform-submission-becker-rfi-form .js-form-item-is-current-student .rfi-toggle-btn:focus-visible {
  outline: 3px solid var(--rfi-blue-focus);
  outline-offset: 2px;
}