#newsPage #pageWrapper .news-container {
    margin-top: 40px;
}

#newsPage #pageWrapper .news-container .news .tab-buttons .switch-button.active {
    background: linear-gradient(90deg, rgba(215, 172, 82,1) 0%, rgba(255, 227, 171,1) 50%, rgba(215, 172, 82,1) 100%);
    color: black;
}

#newsPage #pageWrapper .news-container .news .tab-buttons .switch-button {
    padding: 10px 20px;
    display: block;
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    background: black;
    color: white;
    border: 2px solid transparent;
    transition: all 250ms;
    margin-right: 10px;
}

#newsPage #pageWrapper .news-container .news .tab-buttons .switch-button:hover {
    background: white;
    color: black;
    border: 2px solid #D2A446;
}

#newsPage #pageWrapper .news-container .title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#newsPage #pageWrapper .news-container .item-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#newsPage #pageWrapper .news-container .item-wrapper .item {
    width: 49%;
}

#newsPage #pageWrapper .news-container .item-wrapper .item .content .title {
    margin-bottom: 20px;
    margin-top: 20px;
}

#newsPage #pageWrapper .news-container .item-wrapper .item .content .date {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #C4942F;
}

#newsPage #pageWrapper .news-container .item-wrapper .item .content .intro-content {
    /*line-height: 21px;*/
    /*height: 3em;*/
    /*overflow: hidden;*/
    /*white-space: nowrap;*/
    /*text-overflow: ellipsis;*/
    /*width: 100%;*/
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*font-family: 'Karla';*/
    /*font-style: normal;*/
    /*font-weight: 400;*/
    /*font-size: 18px;*/
    /*!* or 156% *!*/


    /*color: #000000;*/

    line-height: 21px;
    height: 42px;       /* height is 2x line-height, so two lines will display */
    overflow: hidden;  /* prevents extra lines from being visible */

}

#newsPage #pageWrapper .news-container .item-wrapper .item .content .intro-content > :first-child {
    font-family: 'Karla';
    font-style: normal !important;
    font-weight: 400;
    font-size: 18px;
    color: #000000 !important;
    line-height: 21px;
    height: 42px;       /* height is 2x line-height, so two lines will display */
    overflow: hidden;  /* prevents extra lines from being visible */
    width: 100%;
}

#newsPage #pageWrapper .news-container .item-wrapper .item .content .intro-content p img {
    display: none;
}

/*#newsPage #pageWrapper .news-container .item-wrapper .item .content .intro-content h3 {*/
/*    font-family: 'Karla';*/
/*    font-style: normal !important;*/
/*    font-weight: 400;*/
/*    font-size: 18px;*/
/*    !* or 156% *!*/


/*    color: #000000 !important;*/
/*}*/

#newsPage #pageWrapper .news-container .item-wrapper .item .content p {}

#newsPage #pageWrapper .news-container .item-wrapper .item .image-wrapper {
    border-bottom: 10px solid #000000;
}

#newsPage #pageWrapper .news-container .item-wrapper .item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#newsPage #pageWrapper .news-container .item-wrapper .item .content .more  {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #C4942F;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
}

#newsPage #pageWrapper .news-container .item-wrapper .item .content .more img {
    margin-right: 10px;
}

@media (max-width: 768px) {
    #newsPage #pageWrapper .news-container .title-wrapper {
        flex-wrap: wrap;
    }

    #newsPage #pageWrapper .news-container .item-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    #newsPage #pageWrapper .news-container .item-wrapper .item {
        width: 80%;
    }

    #newsPage #pageWrapper .news-container .title-wrapper h2.article-title.with-line {
        width: 100%;
    }

    #newsPage #pageWrapper .news-container .title-wrapper .tab-buttons {
        margin-bottom: 40px;
    }
}

@media (max-width: 680px) {

    #newsPage .tab-buttons {
        width: 100%;
    }
    #newsPage .tab-buttons .switch-button a:not(:first-child) {
        margin-left: 0;
    }
    #newsPage .tab-buttons .switch-button  {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    #newsPage #pageWrapper .news-container .item-wrapper .item {
        width: 95%;
    }
}

