/* ============================================================
   PREMIERE GROUP — Base / reset
   ============================================================ */

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--pg-font);
  font-size: var(--pg-fs-base);
  line-height: var(--pg-lh);
  color: var(--pg-text);
  background: var(--pg-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }

h1 { font-size: var(--pg-fs-2xl); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: var(--pg-fs-xl); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--pg-fs-lg); font-weight: 600; }
h4 { font-size: var(--pg-fs-md); font-weight: 600; }

a { color: var(--pg-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { display: block; max-width: 100%; }

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--pg-blue);
  outline-offset: 2px;
}

/* Utility helpers used across both apps */
.pg-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.pg-scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pg-muted { color: var(--pg-text-secondary); }
.pg-strong { font-weight: 600; }
.pg-nowrap { white-space: nowrap; }
.pg-mt-0 { margin-top: 0; }
.pg-hide { display: none !important; }
