.news-new {
    padding: 65px 0;
    position: relative;
    background: #ededed;
}
.news-new .obj-1-new {
    left: 0;
    top: 250px;
    transform: translateX(-50%);
}
.container-new-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}
.news-new .title-new {
    margin: 0 0 40px 0;
}
.news-new .title-line {
    width: 100%;
    height: 4px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.news-new .title-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15%;
    background: #FBB03B;
}
.news-new .title-text {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}
.news-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 10px;
}
.news-item-big {
    width: 600px;
}
.news-right-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 600px;
}
.news-item-top {
    width: 100%;
}
.news-small-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.news-item-small {
    width: 100%;
}
.news-link {
    display: block;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}
.news-image {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: white;
    text-align: left;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}
.news-link:hover .news-image::before {
    background: rgba(0, 0, 0, 0.5);
}
.news-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.news-text-wrapper {
    margin-bottom: auto;
}
.news-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-transform: uppercase;
}
.news-description {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    transition: color 0.3s ease;
}
.news-date {
    font-size: 14px;
    color: white;
    margin-top: 15px;
    font-weight: 500;
    opacity: 0.8;
    transition: color 0.3s ease;
}
.news-link:hover .news-title,
.news-link:hover .news-description,
.news-link:hover .news-date {
    color: #FBB03B;
}
.news-item-small .news-title {
    font-size: 14px;
}
.news-item-small .news-description {
    font-size: 13px;
}
.news-image {
    background-size: cover !important;
    background-position: center !important;
}

/* Или если нужно только для мобильных */
@media (max-width: 768px) {
    .news-image {
        background-size: cover !important;
        background-position: center !important;
    }
}
/* Адаптация */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item-big,
    .news-right-column {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .news-new {
        padding: 45px 0;
    }
    
    .news-new .title-text {
        font-size: 28px;
    }
    
    .news-small-row {
        grid-template-columns: 1fr;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .news-content {
        padding: 15px;
    }
}