/*
 * PingGalaxy Reset
 * Minimal reset replacing Astra parent theme base styles.
 * Loaded at priority 10, before variables.css (20).
 */

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

body, h1, h2, h3, h4, h5, h6, p, ol, ul, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--pg-text, #333);
    background-color: var(--pg-bg-page, #F5F5F7);
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Layout containers */

/* Sticky footer: push footer to bottom when content is short */
#page.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    width: 100%;
    flex: 1;
}
