/* ===========================
   MW Website
   =========================== */

html, body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Main site container */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ===========================
   Hero
   =========================== */
/* =========================================
   MW - Site-wide styles
   ========================================= */

:root {
    --mw-blue: #1D2842;
    --mw-blue-dark: #151D30;
    --mw-blue-light: #EEF0F5;
    --mw-text: #333333;
    --mw-muted: #777777;
    --mw-background: #f2f2f2;
    --mw-white: #ffffff;
}

html,
body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--mw-background);
    color: var(--mw-text);
    margin: 0;
}


/* =========================================
   Main site container
   ========================================= */

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--mw-white);
}


/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: 480px;
    position: relative;
    background: #1D2842;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
}


/* Circular profile image */

.hero-profile {
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


/* Hero text */

.hero-text {
    text-align: left;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 3.5rem;
    font-weight: 300;
}

.hero p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.5;
}

.site-title {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .hero {
        padding: 40px 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-profile {
        width: 130px;
        height: 130px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}


/* =========================================
   Content below hero
   ========================================= */

.home-content {
    padding: 110px 30px 40px;
}


/* =========================================
   THREE COLUMN AREA
   ========================================= */

.mw-cards {
    margin-left: -10px;
    margin-right: -10px;
}

.mw-left-column, .mw-right-column {
    padding-left: 20px;
    padding-right: 20px;
}


.mw-card {
    margin: 20px 10px 10px 10px;
    padding: 25px;
    background: white;
    border-top: 4px solid var(--mw-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

    .mw-card h2 {
        margin-top: 0;
        margin-bottom: 15px;
        color: var(--mw-blue);
        font-size: 1.35rem;
        font-weight: 400;
    }

    .mw-card p {
        line-height: 1.6;
    }


/* =========================================
   LINKS
   ========================================= */

a {
    color: var(--mw-blue);
    text-decoration: underline;
}

    a:hover {
        color: var(--mw-blue-dark);
        text-decoration: none;
    }


/* =========================================
   POSTS
   ========================================= */

.mw-box {
    margin-top: 25px;
    background: white;
}

.mw-box-title {
    background: #1D2842;
    color: white;
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.mw-box-date {
    color: #999;
    font-size: 0.8rem;
    margin: 7px 15px 10px;
    padding-bottom: 10px;
}

.mw-box-body {
    padding: 15px;
    color: var(--mw-text);
    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================
   Buttons
   ========================================= */

.btn-mw {
    background: var(--mw-blue);
    border-color: var(--mw-blue);
    color: white;
}

    .btn-mw:hover {
        background: var(--mw-blue-dark);
        border-color: var(--mw-blue-dark);
        color: white;
    }


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 767px) {

    .hero {
        height: 300px;
    }

        .hero h1 {
            font-size: 2.4rem;
        }

        .hero p {
            font-size: 1.05rem;
        }

    .hero-profile {
        width: 125px;
        height: 125px;
        bottom: -62px;
    }

    .home-content {
        padding: 90px 20px 30px;
    }

    .home-column {
        margin-bottom: 20px;
    }
}

/* Pagination (use site blue) */
.pagination .page-link {
    color: var(--mw-blue);
    border-color: var(--mw-blue);
}
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: var(--mw-blue);
    border-color: var(--mw-blue);
}
.pagination .page-link:hover,
.pagination .page-link:focus {
    color: #fff;
    background-color: var(--mw-blue-dark);
    border-color: var(--mw-blue-dark);
}
