/* Base Layout Resets for Canva Compilation Elements */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #faf8f5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Intercepting native links to prevent hard breaks */
a {
    transition: opacity 0.2s ease-in-out;
}

a:hover {
    opacity: 0.85;
}