/* ==========================================================================
   Norah Core — Base CSS
   Only styles that theme.json cannot express. Keep this minimal.
   ========================================================================== */

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

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

/* Prevent text overflow */
body {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive media defaults */
img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default list styles inside content */
.entry-content ul,
.entry-content ol {
    padding-left: 1.5em;
}

/* Table base styles */
table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    text-align: left;
    padding: 0.5em 0.75em;
}

/* Focus visible for keyboard nav */
:focus-visible {
    outline: 2px solid var(--wp--preset--color--secondary, #3A6F9E);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
