/*
 * Musti Theme - Forced Global Reset
 * This file aims to strip ALL Drupal default styling to ensure the replication works.
 */

/* Reset Drupal Core's basic styling */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    color: #333 !important;
    font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Hide Drupal's default header/toolbar if not logged in */
.toolbar-region {
    display: none !important;
}

/* Force the layout from the original site */
.page_wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Remove default Drupal page title and margins */
.page-title, .page-title-wrapper {
    display: none !important;
}

.main-content, .region-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* Re-apply the exact CSS from the target site */
:root {
    --cm-templates-bp-tablet: 1250;
}

/* The actual copied styles follow... (merged from the main.css) */
.content_center {
    width: 75%;
    margin: 0 auto;
    padding: 3.75em 0;
}

h1, h2, h3 {
    color: #1a365d !important;
    text-align: center !important;
}

.cm_column_wrapper {
    display: flex !important;
    justify-content: space-between !important;
    gap: 20px;
    margin-top: 40px;
}

.cm_column {
    width: 33.33% !important;
    text-align: center !important;
}

.cm_column img {
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
}

.cm_column a {
    background-color: rgba(213,33,0,0.9) !important;
    color: white !important;
    padding: 15px 30px !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 10px !important;
    font-weight: bold !important;
}

/* Hide those search boxes and log-in links that are appearing */
.block-system-main-synca-block-form, 
.block-system-main-synca-block-links,
#block-system-main-synca-block-form,
#block-system-main-synca-block-links {
    display: none !important;
}
