    .single_news {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    }

    .single_news p {
    line-height: 1.5;
    }

    .single_news .single_news_head_wrapper_img {
    border-radius: 20px;
    overflow: hidden;
    max-width: 950px;
    max-height: 400px;
    margin-top: 15px;
    margin-bottom: 25px;
    }

    .single_news .single_news_head_wrapper_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    .single_news .single_news_aside_lastnews_item_title {
        display: flex;
        gap: 5px;
    }

    .single_news .single_news_head_wrapper_content {
    display: flex;
    flex-wrap: wrap;
    }

    @media screen and(min-width: 768px) {
        .single_news .single_news_head_wrapper_content {
        justify-content: space-between;
        }     
    }  

    .single_news h2 {
    font-size: 3.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    }

    .single_news h3 {
    font-size: 2.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
    }

    .single_news .single_news_head ul {
    margin-bottom: 20px;
    }

    .single_news hr {
    background: #c8c8c8;
    margin-top: 20px;
    margin-bottom: 20px;
    }

    /* Aside */
    .single_news .single_news_aside_lastnews_title {
    font-size: 1.5rem;
    font-weight: 500;
    }

    .single_news .single_news_aside {
    position: sticky;
    top: 120px;
    height: max-content;
    }

    .single_news .single_news_aside_lastnews_item_title_date {
    display: block;
    font-size: 1.3rem;
    }

    .single_news .single_news_aside_lastnews_item_title_span {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }

    .single_news .single_news_aside_lastnews_img {
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
    }

    .single_news .single_news_aside_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    }