/** Small, single-purpose helpers. Prefixed so they never clash with game CSS. */

.pd-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.pd-hidden {
  display: none !important;
}

.pd-stack {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-3);
}

.pd-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--pd-spacing-3);
}

.pd-centre {
  text-align: center;
}

.pd-container {
  width: 100%;
  max-width: var(--pd-content-width);
  margin-inline: auto;
}
