/* Shared Module Wrapper Styles */
/* Note: Title styles are now in each module's CSS file for better isolation */

/* Desktop - ensure padding is applied */
.cmk-module-wrapper {
    padding: 20px !important;
}

/* Mobile */
@media (max-width: 767px) {
    /* Reduce side padding on mobile for better space usage */
    .cmk-module-wrapper {
        padding: 20px 10px !important;
    }
}

/* Mobile - Add spacing between sections */
@media (max-width: 768px) {
    .cmk-module-wrapper {
        margin-bottom: 30px !important;
    }
}