/* A two-column label/value grid used to summarize a record (the apply
 * review step, the admin row expansion). */

.card-details {
  @apply grid grid-cols-1 gap-5 text-sm sm:grid-cols-2;

  & .detail {
    @apply col-span-2 sm:col-span-1;

    & .label {
      @apply mb-1 block font-bold;
    }
  }
}
