/* ============================================================
   reset.css — Modern CSS Reset
   TSTP World | Phase 1c Layout
   ============================================================ */

/* ── Box-sizing ────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ── Margin / Padding reset ────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
}

/* ── Root / HTML ───────────────────────────────────────────── */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
}

/* ── Body ──────────────────────────────────────────────────── */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Media elements ────────────────────────────────────────── */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* ── Form elements inherit font ────────────────────────────── */
input, button, textarea, select {
    font: inherit;
}

/* ── Prevent text overflow ─────────────────────────────────── */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* ── List resets ───────────────────────────────────────────── */
ul, ol {
    list-style: none;
}

/* ── Link resets ───────────────────────────────────────────── */
a {
    text-decoration: none;
    color: inherit;
}

/* ── Table resets ──────────────────────────────────────────── */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ── Button cursor ─────────────────────────────────────────── */
button {
    cursor: pointer;
    background: none;
    border: none;
}

/* ── Hidden attribute ──────────────────────────────────────── */
[hidden] {
    display: none !important;
}
