/* Age restriction modal refinements */

.age-gate {
  /* modal-overlay base styles already defined in base.css */
}

.age-gate__modal {
  max-width: 540px;
}

.age-gate__actions {
  justify-content: flex-start;
}

.age-gate__button {
  min-width: 0;
}

@media (max-width: 520px) {
  .age-gate__modal {
    padding-inline: var(--space-4);
  }

  .age-gate__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .age-gate__button {
    width: 100%;
  }
}