/* Explain: Base reset and typography defaults. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
}

[x-cloak] { display: none !important; }

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

a {
    transition: color 0.3s ease;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.prose img {
    border-radius: 0.5rem;
    margin: 2rem 0;
}