#worship{
    width: 100%;
    overflow: hidden;

}
#worship1{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
}
#worship1_welcome{
    margin-top:140px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 10px;
    padding-bottom: 25px;
    border-bottom: 3px solid #61CE70;;
    width: 200px;
}
#worship1_title{
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 5px;
    margin-top: 45px;
    margin-bottom: 60px;
}

#worship1_content{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 80%;
    max-width: 1150px;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 10px;
}
.worship1_contents{
    margin:auto;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 60px;
}

.worship1_profile_picture_wrapper{
    width: 150px;
    height: 150px;
    
}
.worship1_profile_picture_wrapper img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;

}
.worship1_profile_name{
    font-size: 24px;
    margin:16px 0px;
}
.worship1_profile_title{
    color:#7A7A7A;
    font-size: 14px;
    font-weight: 600;
}
#worship1_contents_bottom_text{
    max-width: 85%;
    font-size: 16px;
    font-weight: 600;
    color: #54595f;
}

/* 예배 안내 */
#worship2{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
}
#worship2_welcome{
    margin-top:140px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 10px;
    padding-bottom: 25px;
    border-bottom: 3px solid #61CE70;;
    width: 200px;
}
#worship2_title{
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 5px;
    margin-top: 45px;
    margin-bottom: 60px;
}
#worship2_content{
    display:grid;
    grid-template-columns: 1fr 1fr;
    font-size: 16px;
    font-weight: 600;
    color: #54595f;
    column-gap: 10%;
    word-break: keep-all;
}
.worship2_contents{
    margin-bottom: 50px;
}
.worship2_contents > div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
.worship2_contents_dots{
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    border-bottom-color: #CBCBCB;
    flex-grow: 1;
    height: 0;
    margin-left: 10px;
    margin-right: 10px;
}
.worship2_contents_description{
    font-weight: 400;
    font-size: 14px;
    color: #54595F;
    margin-top: 12px;
}

#worship3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: auto;  
    margin-bottom: 60px;
    max-width: 90%;

}
#worship3 > img{
    width: 100%;
    height: auto;
}

/* Mobile */
@media only screen and (max-width:480px) {
    #worship1_content{
        width: 100%;
        grid-template-columns: 1fr;
    }
    #worship2_content{
        width: 85%;
        grid-template-columns: 1fr;
    }
    #worship3{
        grid-template-columns: 1fr;
    }
    /* #worship3 > img{
        width: auto;

    } */
}