.news {
margin-bottom: 20px;
}

.news_list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 20px;
}

.news_big_item {
background: var(--text-white);
border-radius: 10px;
padding: 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.news_big_item_title {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 30px;
}

.news_big_item_text {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
    min-height: 98px;
}

.news_big_item_img {
 border-radius: 15px;
 margin-bottom: 40px;
}

.cat_title {
    font-weight: 300;
    font-size: 48px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-white);
    margin-bottom: 26px;
}

.cat_flex {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.cat_flex {

}

@media (min-width: 576px) {
 .news_dialog {
max-width: 600px !important;
}
}

.news_btn {
display: flex;
align-items: center;
justify-content: center;
padding: 10px ;
max-width: 180px;
width: 100%;
font-size: 16px;
cursor: pointer;
margin: auto;
background: var(--color-yellow);
border-radius: 8px;
font-weight: 600;
color: black;
}

.news_btn:hover {
background: var(--color-yellow-hover);  
}

.news_content {
border-radius: 30px;
background: #202020;
}

.news_modal_title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 40px;
}

.news_modal_text {
    color: var(--text-white);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    margin-top: 40px;
}

.news_modal_form {
margin-top: 40px;
display: flex;
flex-direction: column;
gap: 20px;
}

.news_modal_item {
max-width: 100%;
width: 100%;
 height: 60px;
background: transparent;
border: none;
}

.news_modal_item input{
    width: 100%;
    height: 100%;
    padding: 15px;
    color: rgb(255, 255, 255);
    border: 1px solid rgb(156, 156, 156);
    background-color: transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
}

.news_modal_social {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.news_modal_social_list {
display: flex;
justify-content: center;
gap: 20px;
}

.news_modal_social_item {
display: flex;
align-items: center;
justify-content: center;
max-width: 82px;
width: 100%;
height: 62px;
background: #333333;
border-radius: 5px;

}

.news_form_blog {
display: flex;
align-items:center;
justify-content: space-between;
width: 100%;
background:rgba(0, 122, 167, 1);
border-radius: 10px;
padding: 10px;
margin: 20px 0;
}

.news_form_blog .news_btn  {
margin: unset;
}

.news_form_title {
font-weight: 400;
font-size: 20px;
line-height: 100%;
color: var(--text-white);
}

.news_form_text {
font-weight: 400;
font-size: 16px;
line-height: 100%;
color: var(--text-white);
margin-top: 10px;
}

