/* =====================================================
   100 WOMEN WHO CARE MICHIANA
   CLEAN MINIMAL CUSTOM CSS
   Purpose: only style items Divi is not handling itself.
   No H1/H2/H3 typography and no global row-width overrides.
   Includes the mockup-matched Join Us row layout.
   ===================================================== */


/* =====================================================
   HOME HERO CODE-MODULE BUTTONS
   ===================================================== */

.wwc-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.wwc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 23px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 2px;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.wwc-donate-btn {
    background: #dfa51b;
    color: #08285f !important;
    border: 1px solid #dfa51b;
}

.wwc-donate-btn:hover {
    background: #c99110;
    border-color: #c99110;
    color: #08285f !important;
}

.wwc-how-btn {
    background: #ffffff;
    color: #08285f !important;
    border: 1px solid #08285f;
}

.wwc-how-btn:hover {
    background: #08285f;
    color: #ffffff !important;
}

@media only screen and (max-width: 480px) {
    .wwc-hero-buttons {
        gap: 10px;
    }

    .wwc-hero-btn {
        min-height: 40px;
        padding: 0 17px;
        font-size: 10px;
    }
}




/* =====================================================
   HERO IMAGE
   Used on hero image modules with class: wwc-hero-image
   ===================================================== */

.wwc-hero-image {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
}

.wwc-hero-image .et_pb_image_wrap {
    display: block !important;
    width: 100% !important;
}

.wwc-hero-image img {
    display: block !important;
    width: 100% !important;
    height: 600px !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* WHITE FADE ON LEFT SIDE */
.wwc-hero-image:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 24%;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255,255,255,.92) 15%,
        rgba(255,255,255,.65) 40%,
        rgba(255,255,255,.25) 70%,
        rgba(255,255,255,0) 100%
    );
}

@media only screen and (max-width: 980px) {
    .wwc-hero-image img {
        height: 450px !important;
    }
}

/* REMOVE FADE ON SMALL SCREENS */
@media only screen and (max-width: 767px) {
    .wwc-hero-image img {
        height: 300px !important;
    }

    .wwc-hero-image:after {
        display: none;
    }
}


/* =====================================================
   GLOBAL HEADER
   Restores the previously approved desktop layout:
   logo left, Donate button right, hamburger at far right.
   Scoped ONLY to .wwc-header-row / .wwc-hamburger.
   ===================================================== */

.wwc-header-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 98% !important;
    max-width: none !important;
    padding: 22px 4% !important;
    margin: 0 auto !important;
}

.wwc-header-row > .et_pb_column {
    float: none !important;
    margin: 0 !important;
}

/* Logo column */
.wwc-header-row > .et_pb_column:nth-child(1) {
    flex: 1 1 auto !important;
    width: auto !important;
}

.wwc-header-row > .et_pb_column:nth-child(1) .et_pb_image {
    margin: 0 !important;
    text-align: left !important;
}

.wwc-header-row > .et_pb_column:nth-child(1) img {
    display: block !important;
    width: 280px !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Donate column */
.wwc-header-row > .et_pb_column:nth-child(2) {
    flex: 0 0 auto !important;
    width: auto !important;
    margin-right: 27px !important;
}

.wwc-header-row > .et_pb_column:nth-child(2) .et_pb_button_module_wrapper {
    margin: 0 !important;
}

.wwc-header-row > .et_pb_column:nth-child(2) .et_pb_button,
.wwc-header-row .wwc-donate {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100px !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #dfa51b !important;
    color: #08285f !important;
    border: 0 !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.wwc-header-row > .et_pb_column:nth-child(2) .et_pb_button:after,
.wwc-header-row .wwc-donate:after {
    display: none !important;
    content: none !important;
}

.wwc-header-row > .et_pb_column:nth-child(2) .et_pb_button:hover,
.wwc-header-row .wwc-donate:hover {
    padding: 0 !important;
    background: #c99110 !important;
    color: #08285f !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Hamburger column */
.wwc-header-row > .et_pb_column:nth-child(3) {
    flex: 0 0 30px !important;
    width: 30px !important;
    max-width: 30px !important;
}

.wwc-header-row .wwc-hamburger {
    width: 30px !important;
    margin: 0 !important;
    background: transparent !important;
}

.wwc-header-row .wwc-hamburger .et_pb_menu__menu {
    display: none !important;
}

.wwc-header-row .wwc-hamburger .et_mobile_nav_menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wwc-header-row .wwc-hamburger .et_pb_menu__wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wwc-header-row .wwc-hamburger .mobile_nav {
    width: 30px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.wwc-header-row .wwc-hamburger .mobile_menu_bar {
    display: block !important;
    position: relative !important;
    width: 28px !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    background:
        linear-gradient(#08285f, #08285f) 0 0 / 28px 2px no-repeat,
        linear-gradient(#08285f, #08285f) 0 9px / 28px 2px no-repeat,
        linear-gradient(#08285f, #08285f) 0 18px / 28px 2px no-repeat !important;
}

.wwc-header-row .wwc-hamburger .mobile_menu_bar:before {
    display: none !important;
    content: none !important;
}

.wwc-header-row .wwc-hamburger .et_mobile_menu {
    position: absolute !important;
    top: 45px !important;
    right: 0 !important;
    left: auto !important;
    width: 280px !important;
    padding: 15px 0 !important;
    background: #ffffff !important;
    border-top: 3px solid #dfa51b !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12) !important;
}

.wwc-header-row .wwc-hamburger .et_mobile_menu li a {
    padding: 12px 20px !important;
    color: #08285f !important;
    border-bottom: 1px solid #eeeeee !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: none !important;
}

/* Header responsive */
@media only screen and (max-width: 980px) {
    .wwc-header-row {
        padding: 18px 4% !important;
    }

    .wwc-header-row > .et_pb_column:nth-child(1) img {
        width: 240px !important;
    }

    .wwc-header-row > .et_pb_column:nth-child(2) {
        margin-right: 20px !important;
    }
}

@media only screen and (max-width: 600px) {
    .wwc-header-row {
        padding: 15px 4% !important;
    }

    .wwc-header-row > .et_pb_column:nth-child(1) img {
        width: 180px !important;
    }

    .wwc-header-row > .et_pb_column:nth-child(2) {
        margin-right: 14px !important;
    }

    .wwc-header-row > .et_pb_column:nth-child(2) .et_pb_button,
    .wwc-header-row .wwc-donate {
        width: 86px !important;
        height: 35px !important;
        font-size: 10px !important;
    }

    .wwc-header-row > .et_pb_column:nth-child(3) {
        flex-basis: 27px !important;
        width: 27px !important;
        max-width: 27px !important;
    }

    .wwc-header-row .wwc-hamburger,
    .wwc-header-row .wwc-hamburger .et_pb_menu__wrap,
    .wwc-header-row .wwc-hamburger .mobile_nav {
        width: 27px !important;
    }

    .wwc-header-row .wwc-hamburger .mobile_menu_bar {
        width: 26px !important;
        background:
            linear-gradient(#08285f, #08285f) 0 0 / 26px 2px no-repeat,
            linear-gradient(#08285f, #08285f) 0 9px / 26px 2px no-repeat,
            linear-gradient(#08285f, #08285f) 0 18px / 26px 2px no-repeat !important;
    }
}



/* =====================================================
   JOIN US SECTION - MOCKUP MATCH
   Centered, constrained 3-column row.
   The approved mockup uses three equal-width columns
   with normal Divi gutters, not a full-width strip.
   ===================================================== */

.wwc-join-section {
    margin: 0 !important;
    overflow: hidden !important;
}

/*
   Mockup target:
   - centered row
   - approximately 80% of desktop viewport
   - capped so it does not keep growing on wide screens
*/
.wwc-join-row {
    width: 80% !important;
    max-width: 1568px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/*
   IMPORTANT:
   Do NOT force 33.333%, 46/23/31, or zero column margins here.
   The row is already a Divi 3-column row (et_pb_gutters2).
   Let Divi preserve the equal columns and gutter spacing shown
   in the mockup.
*/
.wwc-join-row > .et_pb_column {
    box-sizing: border-box !important;
}

/* Image fills the first Divi column and keeps mockup ratio */
.wwc-join-row > .et_pb_column:nth-child(1) {
    padding: 0 !important;
}

.wwc-join-row > .et_pb_column:nth-child(1) .et_pb_image,
.wwc-join-row > .et_pb_column:nth-child(1) .et_pb_image_wrap {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wwc-join-row > .et_pb_column:nth-child(1) img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1.84 / 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* Keep copy and form aligned to the top like the mockup */
.wwc-join-row > .et_pb_column:nth-child(2),
.wwc-join-row > .et_pb_column:nth-child(3) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.wwc-join-row > .et_pb_column:nth-child(2) .et_pb_text {
    max-width: none !important;
}

/* =====================================================
   JOIN US - GRAVITY FORM ONLY
   Uses .wwc-join-row so it does not depend on the
   wwc-join-form module class.
   ===================================================== */

.wwc-join-row .gform_wrapper,
.wwc-join-row .gform_wrapper form {
    margin: 0 !important;
    padding: 0 !important;
}

.wwc-join-row .gform_fields {
    row-gap: 7px !important;
    column-gap: 9px !important;
    grid-row-gap: 7px !important;
    grid-column-gap: 9px !important;
}

.wwc-join-row .gfield,
.wwc-join-row .ginput_container {
    margin: 0 !important;
    padding: 0 !important;
}

.wwc-join-row .gfield_label {
    display: none !important;
}

.wwc-join-row input[type="text"],
.wwc-join-row input[type="email"],
.wwc-join-row input[type="tel"] {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 6px 11px !important;
    background: #ffffff !important;
    color: #08285f !important;
    border: 1px solid #8b94a3 !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.wwc-join-row input::placeholder,
.wwc-join-row textarea::placeholder {
    color: #08285f !important;
    opacity: 1 !important;
}

.wwc-join-row textarea {
    width: 100% !important;
    height: 80px !important;
    min-height: 80px !important;
    margin: 0 !important;
    padding: 9px 11px !important;
    background: #ffffff !important;
    color: #08285f !important;
    border: 1px solid #8b94a3 !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    font-size: 11px !important;
    resize: none !important;
}

.wwc-join-row .gform_footer,
.wwc-join-row .gform_page_footer {
    margin: 8px 0 0 !important;
    padding: 0 !important;
}

.wwc-join-row .gform_footer input[type="submit"],
.wwc-join-row input.gform_button,
.wwc-join-row input[type="submit"],
.wwc-join-row button[type="submit"] {
    width: auto !important;
    min-width: 122px !important;
    height: 36px !important;
    min-height: 36px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: #dfa51b !important;
    background-color: #dfa51b !important;
    background-image: none !important;
    color: #08285f !important;
    border: 0 !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}

.wwc-join-row .gform_footer input[type="submit"]:hover,
.wwc-join-row input.gform_button:hover,
.wwc-join-row input[type="submit"]:hover,
.wwc-join-row button[type="submit"]:hover {
    background: #c99110 !important;
    background-color: #c99110 !important;
    color: #08285f !important;
}




/* =====================================================
   JOIN US - TABLET / MOBILE
   Stack the three columns and use the full available width.
   ===================================================== */

@media only screen and (max-width: 980px) {
    .wwc-join-row {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .wwc-join-row > .et_pb_column {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .wwc-join-row > .et_pb_column:nth-child(2),
    .wwc-join-row > .et_pb_column:nth-child(3) {
        padding: 35px 7% !important;
    }

    .wwc-join-row > .et_pb_column:nth-child(2) .et_pb_text {
        max-width: none !important;
    }
}


/* =====================================================
   PARTNER TITLE + DIVIDERS
   No partner image sizing is touched.
   ===================================================== */

.wwc-partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.5px;
    color: #08285f;
    text-transform: uppercase;
    white-space: nowrap;
}

.wwc-partners-title:before,
.wwc-partners-title:after {
    content: "";
    display: block;
    height: 1px;
    background: #d7dce4;
    flex: 1;
}

/* Standard row-class method */
.wwc-partners-dividers > .et_pb_column:not(:last-child) {
    border-right: 1px solid #d7dce4 !important;
}

/* Front-end fallback that does not depend on the row class */
.et_pb_section:has(.wwc-partners-title) > .et_pb_row:last-child > .et_pb_column:not(:last-child) {
    border-right: 1px solid #d7dce4 !important;
}

@media only screen and (max-width: 767px) {
    .wwc-partners-title {
        gap: 12px;
        font-size: 11px;
        white-space: normal;
    }

    .wwc-partners-dividers > .et_pb_column:not(:last-child),
    .et_pb_section:has(.wwc-partners-title) > .et_pb_row:last-child > .et_pb_column:not(:last-child) {
        border-right: 0 !important;
        border-bottom: 1px solid #d7dce4 !important;
    }
}




/* =====================================================
   HOW IT WORKS - DETAILS / IMPORTANT TO KNOW CHECKLISTS
   ===================================================== */

.wwc-check-list {
    margin: 0 !important;
    padding: 0 !important;
}

.wwc-check-item {
    display: grid !important;
    grid-template-columns: 30px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    align-items: start !important;

    margin: 0 0 22px !important;
    padding: 0 !important;
}

.wwc-check-item:last-child {
    margin-bottom: 0 !important;
}

.wwc-check-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 26px !important;
    height: 26px !important;
    margin: 1px 0 0 !important;
    padding: 0 !important;

    color: #dfa51b !important;
    background: transparent !important;

    border: 1.5px solid #dfa51b !important;
    border-radius: 50% !important;

    font-family: Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.wwc-check-copy {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wwc-check-copy h4 {
    margin: 0 0 5px !important;
    padding: 0 !important;

    color: #08285f !important;

    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3em !important;
    letter-spacing: .4px !important;
    text-transform: uppercase !important;
}

.wwc-check-copy p {
    margin: 0 !important;
    padding: 0 !important;

    color: #08285f !important;

    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.65em !important;
}

@media only screen and (max-width: 767px) {
    .wwc-check-item {
        grid-template-columns: 28px minmax(0, 1fr) !important;
        column-gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .wwc-check-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
    }

    .wwc-check-copy h4 {
        font-size: 14px !important;
    }

    .wwc-check-copy p {
        font-size: 13px !important;
        line-height: 1.6em !important;
    }
}


/* =====================================================
   FOOTER - DECORATION ONLY
   Divi keeps control of footer row widths and typography.
   ===================================================== */

.wwc-footer {
    padding-bottom: 15px !important;
}

.wwc-footer-main > .et_pb_column:not(:last-child) {
    border-right: 1px solid #d7dce4 !important;
}

.wwc-footer-main a[href^="mailto:"] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    text-decoration: none !important;
}

.wwc-footer-main a[href^="mailto:"]:before {
    content: "" !important;
    display: inline-block !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 18px 18px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2308285f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='1.5'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E") !important;
}

.wwc-footer-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-top: 1px solid #d7dce4 !important;
}

.wwc-footer-bottom p,
.wwc-footer-bottom a {
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 767px) {
    .wwc-footer-main > .et_pb_column:not(:last-child) {
        border-right: 0 !important;
        border-bottom: 1px solid #d7dce4 !important;
    }
} 