/* =========================================================
   custom.css
   ---------------------------------------------------------
   Hand-written CSS that loads AFTER css/app.css.
   Use this for quick fixes / tweaks on cPanel where
   Tailwind cannot be rebuilt.

   Loaded in functions.php via tailpress_enqueue_scripts().
   Because it loads after Tailwind, normal CSS specificity
   rules apply — no need for !important in most cases.
   ========================================================= */

/* Example:
.site-header {
    background: #000;
}
*/

.editor ul {
    list-style-type: disc;
    padding-left: 20px;
}

.editor ul li {
    list-style-type: disc;
}

.editor ul li::marker {
    color: #9bc9e3;
}

.custom-content-block ul li:not(:last-child) {
    margin-bottom: 1rem;
}

.news-card__content h3:hover {
    opacity: 0.6;
}

#menu-main-menu .menu-item:hover {
    opacity: 0.60;
}

.site-footer__nav a:hover, .custom-hover:hover {
	opacity: 0.60;
}


