.news{
    height: 100%;
    padding: 100px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news > h2{
    font-size: 26px;
    font-weight: 600;
    line-height: 30.5px;
    padding-bottom: 30px;
    width: 100%;
    max-width: 1050px;
}

.news_underline{
    padding-bottom: 10px;
    border-bottom: 4px solid var(--red-primary-solid);
}

.walkathonImg{
    max-width: 100%;
}

.main_news{
    width: 100%;
    max-width: 1050px;
    height: 400px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 55px 0px;
}

.left_main_news_img{
    height: 100%;
    width: 50%;
    border-radius: 88px 0 0 0;
    object-fit: cover;
}

.right_main_news_content_container{
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: var(--red-primary-solid);
    border-radius: 0 0 88px 0;
    color: var(--white-primary-solid);
}

.news_title{
    margin-bottom: 1em;
    font-weight: 400;
    line-height: 32px;
}

.main_news_title{
    font-size: 30px;
    font-weight: 400;
    line-height: 41px;
    margin-bottom: 35px;
}
.news_text{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: left;
}
.main_news_text{
    line-height: 30px;
    margin-bottom: 50px;
}

.news_leer_nota_container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: center;
}
.news_main_leer_nota_container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: center;
}

.news_arrow_leer_nota:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition: 0.3s;
}

.center_content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.center_content:hover{
    text-decoration: none;
}

.news_arrow_leer_nota{
    height: 32px;
    width: 32px;
    margin: auto 0;
}

.news_leer_nota{
    margin-left: 1em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    color: var(--white-primary-solid);
}

.news_main_leer_nota_container:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition: 0.3s;
}
.news_leer_nota_container:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition: 0.3s;
}

.sub_news_section_flex{
    max-width: 1050px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.sub_main_news{
    width: 30%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.up_sub_main_news_img{
    width: 100%;
    max-height: 165px;
    border-radius: 58px 0 0 0; 
    object-fit: cover;
}

.bottom_sub_main_news_text_container{
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: var(--lightblue-primary-solid);
    border-radius: 0 0 58px 0;
    color: var(--white-primary-solid);
    min-height: 250px;
}

.sub_main_news_title{
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 32px;
}

.sub_main_news_text{
    line-height: 25px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 600px) {
    .news{
        margin: 50px 25px;
        padding: 0px;
    }
   .main_news{
        flex-direction: column;
        height: 100%;
   }
   .left_main_news_img{
        width: 100%;
   }
   .right_main_news_content_container{
        width: 100%;
        padding: 0px;
   }
   .main_news_title{
        padding: 20px;
        margin-bottom: 0px;
   }
   .main_news_text{
        padding: 20px;
        margin-bottom: 0px
   }
   .news_main_leer_nota_container{
        padding: 20px;
    }
   .sub_news_section_flex{
        flex-direction: column;
   }
   .sub_main_news{
        width: 100%;
        margin-bottom: 30px;
   }
   .sub_main_news:last-of-type{
        margin-bottom: 0px;
   }
   .bottom_sub_main_news_text_container{
        padding: 20px;
   }
}