.drupal-radio-change div.js-webform-radios {
  flex-direction: column;
}
.drupal-radio-change div.js-webform-radios div {
  margin: 5px;
}

/* =========================
   MOBILE (default behavior)
   ========================= */

/* Table: size based on content instead of forcing 100% width */
.auto-table {
  width: max-content;     /* table fits content (mobile scroll) */
  min-width: 100%;
  border-collapse: collapse;
}

/* Prevent ugly wrapping on mobile */
.auto-table td,
.auto-table th {
  white-space: nowrap;
}

/* City, Country wrapping */
.auto-table td[data-label="City, Country"] {
  white-space: normal;
  max-width: 13rem;
}

/* Ministry wrapping */
.auto-table td[data-label="Ministry"] {
  white-space: normal;
  max-width: 18rem;
}


/* =========================
   DESKTOP / LAPTOP ONLY
   ========================= */
@media (min-width: 992px) {
  .auto-table {
    width: 100%;          /* fit screen width */
    table-layout: fixed;  /* distribute columns evenly */
  }

  .auto-table td,
  .auto-table th {
    white-space: normal;  /* allow wrapping on desktop */
  }

  .auto-table td[data-label="City, Country"] {
    max-width: none;
  }

  .auto-table td[data-label="Ministry"] {
    max-width: none;
  }
}