.main_news {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.32);
    border-radius: 50px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 4px 4px 48px 0px #0000001F;
}
.main_news_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.main_news_title h2 {
    font-family: 'Mardoto-Bold',sans-serif;
    font-weight: normal;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.64px;
}
.main_news_title_button {
    cursor: pointer;
    border: 1px solid #04A7A114;
    box-shadow: 8px 8px 16px 0px rgba(4, 167, 161, 0.08);
    background: rgba(4, 167, 161, 0.26);
    border-radius: 24px;
    transition: all 0.25s ease;
    transform: translateY(0);
}
.main_news_title_button:hover {
    transform: translateY(4px) scale(0.97);
}
.main_news_title_button-block {
    display: flex;
    gap: 10px;
    padding: 33px 122px;
}
.main_news_title_button-block a {
    color: #007470;
    font-family: 'Mardoto-Medium', sans-serif;
    font-size: 24px;
    line-height: 120%;
}
.main_news_flex {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.main_news_item {
    width: 49%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);

}
.news_picture_block img {
    border-radius: 16px;
    width: 100%;
    max-width: 816px;
    object-fit: contain;
}
.main_news_item_inside {
    padding: 16px;
    display: flex;
    gap: 24px;
    flex-direction: column;
}
.news_description_block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.news_description_block h2 {
    font-family: 'Mardoto-Medium',sans-serif;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0.64px;
    color: #000000;
}
.news_description_block p {
    font-family: 'Mardoto-Regular',sans-serif;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.64px;
    color: #000000;
}
.mini_see_more {
    max-width: 207px;
    cursor: pointer;
    border: 1px solid #04A7A114;
    box-shadow: 8px 8px 16px 0px rgba(4, 167, 161, 0.08);
    background: rgba(4, 167, 161, 0.26);
    border-radius: 24px;
    transition: all 0.25s ease;
    transform: translateY(0);
}
.big-see-more {
    width: 100%;
    max-width: unset;
}
.mini_see_more:hover {
    transform: translateY(4px) scale(0.97);
}
.mini_see_more_block {
    padding: 18px 32px;
    display: flex;
    gap: 10px;
}
.big-see-more-link p {
    font-size: 24px!important;
}
.big-see-more-link {
    padding: 30px 0;
    justify-content: center;
}
.mini_see_more_block p {
    color: #007470;
    font-family: 'Mardoto-Medium', sans-serif;
    font-size: 16px;
}
.hidden_news {
    width: 100%;
    max-width: 1400px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 64px;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.3s ease;
}
.hidden_news_item {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: #FFFFFF;
    border-radius: 54px;
}
.hidden_news_item_picture img {
    border-radius: 54px;
    width: 100%;
    max-width: 1336px;
    object-fit: contain;
}
.hidden_news_description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hidden_news_description h3 {
    font-family: 'Mardoto-Medium', sans-serif;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0.64px;
    color: #000000;
}
.hidden_news_description p {
    font-family: 'Mardoto-Regular', sans-serif;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.64px;
    color: #000000;
}
.hidden_news_close {
    width: 100%;
    cursor: pointer;
    border: 1px solid #04A7A114;
    box-shadow: 8px 8px 16px 0px rgba(4, 167, 161, 0.08);
    background: rgba(4, 167, 161, 0.26);
    border-radius: 24px;
    transition: all 0.25s ease;
    transform: translateY(0);
}
.hidden_news_close:hover {
    transform: translateY(4px) scale(0.97);
}
.hidden_news_close_item {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 26px;
    padding-bottom: 26px;
}
.hidden_news_close_item p {
    font-family: 'Mardoto-Medium',sans-serif;
    font-size: 16px;
    line-height: 120%;
    color: #007470;
}
.news_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    z-index: 999;
    overflow-y: auto;
    padding: 40px 20px;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.news_overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.news_overlay:not(.active) {
    opacity: 0;
}
.hidden_news {
    width: 100%;
    max-width: 1400px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 64px;
    background: #fff;

    /* Animation start */
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.4s ease;
}
.news_overlay.active .hidden_news {
    transform: translateY(0);
    opacity: 1;
}
.detail-about-title {
    display: none;
}
.unset-all {
    border: unset!important;
    padding: unset!important;
    margin: unset!important;
    border-radius: unset!important;
    box-shadow: unset!important;
}
.news-description-big {
    gap: 24px;
}
@media (min-width: 1921px) {
    .news_picture_block img {
        max-width: unset;
    }
}
@media (min-width: 1280px) and (max-width: 1919px) {
    .main_news_flex {
        gap: 8px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .mini_see_more_block p {
        font-size: 16px!important;
    }
    .news_picture_block img {
        max-width: unset;
    }
    .main_news_item {
        width: 100%;
    }
    .news_description_block h2 {
        font-size: 24px;
    }
    .news_description_block p {
        font-size: 20px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .hidden_news_description h3 {
        font-size: 24px;
    }
    .hidden_news_description p {
        font-size: 20px;
    }
    .main_news_item {
        width: 100%;
    }
    .news_description_block h2 {
        font-size: 20px;
    }
    .news_description_block p {
        font-size: 16px;
    }
    .mini_see_more_block p {
        font-size: 16px!important;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .mini_see_more {
        max-width: unset;
    }
    .mini_see_more_block {
        justify-content: center;
    }
    .big-see-more-link {
        padding: 21px
    }
    .main_news_item {
        width: 100%;
    }
    .news_description_block h2 {
        font-size: 16px;
    }
    .news_description_block p {
        font-size: 12px;
    }
    .mini_see_more_block p {
        font-size: 12px!important;
    }
    .news-description-big {
        gap: 8px;
    }
}