/* Shared compact benefits component for document wizards on mobile only. */
@media (max-width: 767px) {
  .wizard-benefits {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-color: rgba(181, 145, 84, 0.42);
    background: linear-gradient(145deg, #fbf9f3, #ffffff);
    box-shadow: 0 12px 28px -25px rgba(128, 101, 53, 0.4);
  }

  .wizard-benefits > h2 {
    font-size: 0.9375rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .wizard-benefits [data-benefit-description],
  .wizard-benefits [data-benefit-footer] {
    display: none;
  }

  .wizard-benefits [data-benefit-list] {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto !important;
    gap: 0;
    margin-top: 0.625rem;
  }

  .wizard-benefits [data-benefit-tile] {
    min-width: 0;
    min-height: 1.75rem;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wizard-benefits [data-benefit-tile] + [data-benefit-tile] {
    border-top: 1px solid rgba(208, 213, 221, 0.5);
  }

  .wizard-benefits [data-benefit-icon] {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    border-radius: 9999px;
    background: rgba(213, 183, 125, .2);
    color: #806535;
  }

  .wizard-benefits [data-benefit-icon] > * {
    display: none;
  }

  .wizard-benefits [data-benefit-icon]::before {
    content: "✓";
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
  }

  .wizard-benefits [data-benefit-label] {
    min-width: 0;
    font-size: 0.8125rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
}
