/* =============================================
   MYTHEOLOGYCORNER — BRAND CALLOUT BOX SYSTEM
   ============================================= */

/* KEY POINTS BOX — SA Blue background, white text */
.mtc-key-points {
    background-color: #003B6F;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: 'Source Sans Pro', sans-serif;
}
.mtc-key-points h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: #F6D84B;
}
.mtc-key-points ul {
    margin: 0;
    padding-left: 20px;
}
.mtc-key-points li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* ND NOTES BOX — SA Yellow background, charcoal text */
.mtc-nd-notes {
    background-color: #F6D84B;
    color: #333333;
    border: 1px solid #0A1A2F;
    border-radius: 8px;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: 'Source Sans Pro', sans-serif;
}
.mtc-nd-notes h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: #0A1A2F;
}

/* LIBERATION LENS BOX — white background, red left border */
.mtc-liberation-lens {
    background-color: #FAFAFA;
    border-left: 4px solid #C41230;
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: 'Source Sans Pro', sans-serif;
}
.mtc-liberation-lens h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: #C41230;
}

/* TRAUMA LENS BOX — white background, blue left border */
.mtc-trauma-lens {
    background-color: #FAFAFA;
    border-left: 4px solid #003B6F;
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: 'Source Sans Pro', sans-serif;
}
.mtc-trauma-lens h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: #003B6F;
}

/* REFLECTION SPACE — warm grey background, spacious layout */
.mtc-reflection {
    background-color: #E8E6E3;
    border-radius: 8px;
    padding: 28px 32px;
    margin: 40px 0;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
}
.mtc-reflection h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #0A1A2F;
}

/* SCRIPTURE QUOTE — italic, blue left border */
.mtc-scripture {
    font-style: italic;
    border-left: 2px solid #003B6F;
    padding: 12px 20px;
    margin: 24px 0;
    color: #0A1A2F;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
}

/* GENERAL BODY — clean reading experience */
body {
    color: #333333;
    background-color: #FAFAFA;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
}

/* Left-align all text — ND accessibility */
p, li, blockquote {
    text-align: left;
}

/* Heading colour system */
h1 { color: #C41230; font-family: 'Montserrat', sans-serif; }
h2 { color: #003B6F; font-family: 'Montserrat', sans-serif; }
h3 { color: #0A1A2F; font-family: 'Montserrat', sans-serif; }
/* ── Equal-height article cards on homepage ── */
.wp-block-columns {
    align-items: stretch !important;
}

.wp-block-column {
    display: flex;
    flex-direction: column;
}

.wp-block-column .wp-block-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.wp-block-column .wp-block-group .wp-block-buttons {
    margin-top: auto;
}
/* =============================================
   MYTHEOLOGYCORNER — MOBILE RESPONSIVENESS
   ============================================= */

/* ── Logo sizing on mobile ── */
@media (max-width: 768px) {
    .site-logo img,
    .custom-logo,
    .site-branding img {
        max-width: 220px !important;
        height: auto !important;
    }
}

/* ── Stack columns on mobile ── */
@media (max-width: 768px) {
    .wp-block-columns {
        flex-direction: column !important;
    }

    .wp-block-column {
        width: 100% !important;
        flex-basis: 100% !important;
        margin-bottom: 24px !important;
    }
}

/* ── Fix cover blocks on mobile ── */
@media (max-width: 768px) {
    .wp-block-cover {
        padding: 40px 20px !important;
        min-height: auto !important;
    }

    .wp-block-cover__inner-container {
        padding: 0 !important;
    }
}

/* ── Fix group blocks on mobile ── */
@media (max-width: 768px) {
    .wp-block-group {
        padding: 30px 20px !important;
    }
}

/* ── Fix text sizing on mobile ── */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

/* ── Fix buttons on mobile ── */
@media (max-width: 768px) {
    .wp-block-buttons {
        justify-content: center !important;
    }

    .wp-block-button__link {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
    }
}

/* ── Navigation menu on mobile ── */
@media (max-width: 768px) {
    .nav--toggle-sub .dropdown-nav-toggle,
    .kadence-mobile-enabled {
        display: block !important;
    }
}

/* ── Prevent horizontal scroll ── */
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    box-sizing: border-box !important;
}