/* Canvas — base styles */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* TinyMCE border harmonisation */
.tox-tinymce {
    border-radius: 0.5rem !important;
    border-color: #d9cdb8 !important;
}

/* Line-clamp for older webkit */
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Prevent body scroll when a mobile sidebar drawer is open */
body.sidebar-open {
    overflow: hidden;
}
