#singleNewsPage .single-news-wrapper {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}

#singleNewsPage h1.page-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 100;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

#singleNewsPage .single-news-wrapper .page-content p {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    display: flex;
    flex-direction: column;
}

#singleNewsPage .social-buttons {
    display: flex;
    margin-top: 40px;
}

#singleNewsPage .social-buttons .social-button {
    background: #C4942F;
    height: 38px;
    width: 38px;
    padding: 6px 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

#singleNewsPage .social-buttons .social-button a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#singleNewsPage .social-buttons .social-button a i {
    font-size: 25px;
}

#singleNewsPage .single-news-wrapper .left-side {
    width: 70%;
    padding-right: 20px;
}

#singleNewsPage .single-news-wrapper .left-side h2.news-title.with-line {
    margin-bottom: 20px;
}

#singleNewsPage .single-news-wrapper .left-side .main-image {
    width: 100%;
}

#singleNewsPage .single-news-wrapper .left-side .main-image img {
    width: 100%;
}

#singleNewsPage .single-news-wrapper .left-side .page-content h3 {
    margin-bottom: 40px;
}

#singleNewsPage .single-news-wrapper .left-side .page-content p img {
    margin-bottom: 20px;
    width: 100% !important;
    height: auto !important;
}

#singleNewsPage .single-news-wrapper .left-side .page-content h3 {
    font-family: 'Karla';
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    color: #000000 !important;
}

#singleNewsPage .single-news-wrapper .left-side .page-content p {
    margin-bottom: 20px;
}

#singleNewsPage .single-news-wrapper .right-side {
    margin-top: 60px;
    width: 30%;
    padding-left: 15px;
}

#singleNewsPage .single-news-wrapper .right-side .latest-news .single {
    display: flex;
    margin-top: 20px;
}

#singleNewsPage .single-news-wrapper .right-side .latest-news .single .info {
    width: 40%;
}

#singleNewsPage .single-news-wrapper .right-side .latest-news .single .image {
    width: 60%;
}

#singleNewsPage .single-news-wrapper .right-side .latest-news .single .info h3 {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    color: #000000;
}

#singleNewsPage .single-news-wrapper .right-side .latest-news h2 {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 24px;
    color: #000000;
    text-transform: uppercase;
    border-bottom: 2px solid #C4942F;
    width: fit-content;
}

h2.news-title.with-line {}

h2.news-title.with-line::after {
    top: 22px;
}

@media (max-width: 768px) {
    #singleNewsPage .single-news-wrapper {
        flex-wrap: wrap;
    }

    #singleNewsPage .single-news-wrapper .left-side {
        width: 100%;
    }

    #singleNewsPage .single-news-wrapper .right-side {
        width: 100%;
    }

    #singleNewsPage .single-news-wrapper .right-side .latest-news .single {
        flex-direction: column-reverse;
    }

    #singleNewsPage .single-news-wrapper .right-side .latest-news .single .info {
        width: 100%;
    }

    #singleNewsPage .single-news-wrapper .right-side .latest-news .single .image {
        width: 100%;
    }

}