.content-with-side-bar {
    display: flex;
    flex-wrap: wrap;
}
.content-with-side-bar * {
    box-sizing: border-box;
}
.content-with-side-bar .item-page {
    flex: 0 0 calc(100% - 360px );
    max-width: calc(100% - 360px );
    padding-right: 15px;
    padding-top: 2.5799793601651184vh;
    padding-bottom: 2.5799793601651184vh;
}
.content-with-side-bar .latestnews {
    flex: 0 0 360px;
    max-width: 360px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    padding-left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    margin-bottom: 2.5rem;
    padding-top: 22px;
}

.content-with-side-bar .latestnews .latestnews-item {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px 20px;
    position: relative;
    box-shadow: 0 0 2px #88b84b;
    border-radius: 4px;
    gap: 10px;
    transition: 0.35s ease;
}
.content-with-side-bar .latestnews .latestnews-item:hover {
    box-shadow: 0 0 6px #88B84B;
    transform: scale(1.015);
}
.content-with-side-bar .latestnews .latestnews-item .permalink {
    position: absolute;
    inset: 0;
}

.content-with-side-bar .latestnews .latestnews-item .page-header {
    padding: 0;
    border: 0;
    margin: 0;
}

.content-with-side-bar .latestnews .latestnews-item .page-header h2 {
    font-size: 1.125rem;
    line-height: 1.25;
    margin: 0;
    font-weight: 400;
}

.content-with-side-bar .latestnews .latestnews-item .item-image {
    margin: 0;
    float: none;
    width: 100%;
}
.content-with-side-bar .latestnews .latestnews-item .item-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.content-with-side-bar .latestnews .latestnews-item .item-image .no-image {
    border: 1px solid #88b84b;
    height: 100%;
    object-fit: contain;
    width: 100%;
    padding: 5%;
}

.content-with-side-bar .latestnews .latestnews-item .intro-text {
    line-height: 1.1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.content-with-side-bar .latestnews .latestnews-item .intro-text * {
    text-align: left!important;
    line-height: 1.75;
    margin: 0;
}
.content-with-side-bar .latestnews .latestnews-item .item-image a img {
    transition: 1.5s ease-in-out;
}
.content-with-side-bar .latestnews .latestnews-item:hover .item-image a img:not(.no-image) {
    object-fit: cover;
    transform: scale(1.5);
}

@media screen and ( max-width: 991px ) {
    .content-with-side-bar .item-page {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }
    .content-with-side-bar .latestnews {
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr) );
        flex: auto;
        max-width: 100%;
        gap: 1rem;
        margin: 2.5rem auto;
    }
}