/*
 * RESET: CSS Reset / Normalize
 * Purpose: Base reset styles for consistent rendering across browsers
 * WARNING: Do not override global layout here.
 */

/* Basic reset - minimal, WordPress already includes normalize */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

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

