.about-news {
    margin-top: 80px;
}

.about-news--all {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.about-news--all a {
    display: inline-block;
    padding: 10px 30px;
    background: red;
    color: #fff;
}

.about-news--all a:hover {
    color: #fff;
}

.about-news--row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-news--block {
    width: 32%;
}

.about-news--block_img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.about-news--block_img img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.about-news--block--date {
    display: inline-block;
    position: absolute;
    right: 0;
    padding: 20px 10px;
    background: red;
    color: #fff;
}

.about-news--block_data {
    margin-top: 20px;
}

.about-news--block_data p {
    line-height: 20px;
}

.about-news--block_data p span {
    font-weight: 900;
    color: #000;
}

.about-news--block_more {
    display: flex;
    justify-content: flex-end;
}

.about-news--block_more a {
    position: relative;
    color: #000;
    padding-right: 40px;
    text-decoration: none;
    margin-right: 30px;
}

.about-news--block_more a:hover {
    color: #000;
}

.about-news--block_more a::after {
    content: "\203A";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: red;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

@media (max-width: 1024px) {
    .about-news--block {
        width: 48%;
    }
}

@media (max-width: 992px) {
    .about-news--row {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .about-news--row {
        flex-direction: column;
        gap: 30px;
    }
    .about-news--block {
        width: 100%;
    }
    .about-news--all {
        justify-content: center;
    }
    .about-news--block_more {
        justify-content: center;
    }
}