/* HERO 1 ---------- */

.z-post-hero1 {
    width: 925px;
    height: fit-content;
    padding: 80px 0 120px;
}

@media screen and (max-width: 1128px) {
    .z-post-hero1 {
        width: 90%;
    }
}

.z-post-hero1 h5 {
    margin: 5px 0 25px;
    text-align: center;
}



/* Call To Action ---------- */

.z-post-hero1-callout { 
    width: 925px;
    padding: 40px 0 45px;
    background: #dce1e7;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

@media screen and (max-width: 1128px) {
    .z-post-hero1-callout {
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .z-post-hero1-callout {
        padding: 28px 0 33px;
    }
}

.z-post-hero1-callout h5 {
    text-align: center;
    margin: 5px 0 13px;
}



/* HERO 2 ---------- */

.z-post-hero2 {
    height: fit-content;
    padding: 110px 0 120px 0;
}

.z-post-hero2 div:first-of-type {
    width: 925px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 1128px) {
    .z-post-hero2 div:first-of-type {
        width: 100%;
    }

    .z-post-hero2 p {
        width: 100%;
        text-align: center;
    }
}

/*
.z-post-hero2 div:last-of-type {
    width: fit-content;
    display: flex;
    justify-content: center;
}

.z-post-hero2 div:last-of-type p {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px 25px;
    background: #ccc;
    border-radius: 2px;
}
*/


/* HERO 3 ---------- */

.z-post-hero3 {
    height: fit-content;
    padding: 110px 0 120px 0;
}

.z-post-hero3-p {
    width: 925px;
    margin: 20px 0 30px;
}

@media screen and (max-width: 1128px) {
    .z-post-hero3-p {
        width: 100%;
        text-align: center;
    }
}

.z-post-hero3-summary {
    width: 925px;
    padding: 30px 0;
    background: #e2e2e2;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    gap: 40px;
    box-sizing: border-box;
}

@media screen and (max-width: 1128px) {
    .z-post-hero3-summary {
        width: 100%;
    }
}

.z-post-hero3-summary img {
    width: 45px;
}



/* STEP ---------- */

.z-post-step-c {
    width: 925px;
    height: fit-content;
    margin-bottom: 30px;
    padding: 40px 50px;
    background: white;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .08), 0 5px 26px 0 rgba(67, 94, 131, .15);
}

.z-post-step-c div {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.z-post-step-c div p:first-child {
    width: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 5px 12px;
    margin: 0 20px 0 0;
    border: 1px solid #aaa;
    border-radius: 2px;
    text-align: center;
}

.z-post-step-c div p:last-child {
    width: calc(100% - 144px);
    margin: 5px 0 0;
    text-align: left;
}

@media screen and (max-width: 1128px) {
    .z-post-step-c {
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .z-post-step-c {
        padding: 28px 5vw;
        gap: 28px;
    }
    
    .z-post-step-c div {
        flex-direction: column;
    }

    .z-post-step-c div p:first-child {
        padding: 5px 0;
    }

    .z-post-step-c div p:last-child {
        width: 100%;
    }
}