/*НОВОСТИ*/

.latest-news {
    display: flex;
    margin: 100px 160px 160px 0;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.latest-news-block{
    display: flex;
    gap: 80px;
    width: 100%;
}

.news-substrate{
    position: absolute;
    background-color: var(--colorLightGray);
    width: 100%;
    height: 410px;
    margin-top: 170px;
    z-index: -1;
}

.decor-news{
    position: absolute;
    height: 92%;  
}

.news-slider {
    position: relative;
    
}

.news-slider-container{
    width: 700px;
    overflow: hidden;
}

.slider-content {
    display: flex;
    justify-content: space-between;
    margin: 0 160px 0 0;
    transition: transform 0.5s ease; 
    width: 700px;
}

.news-slide {
    height: 460px;
    width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0; /* Не сжимать слайды */
}


.news-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content{
    display: none;
    flex-direction: column;
    gap: 40px;
}

.news-content-active{
    display: flex;  
}

.news-description {
    max-width: 800px; 
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-desc-content{
    display: flex;
    height: 290px;
}

.news-desc-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-indicate{
    display: flex;
    gap: 30px;
}

.indicators{
    display: flex;
    justify-content: space-between;
    width: 200px;
}


.news-rhombus{
    background-color: var(--colorWhite);
}

.news-indicators .indicate{
    background-color: var(--colorRed);
}

.button-news svg:hover path{
    fill: var(--colorLightGray);
    transition: 0.4s;
}


.button-news {
    width: 180px;
    height: 160px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}