div.component_block.block_news .block h2 {
    overflow: unset;
}

.block_news div.news_item {
    border-bottom: 2px solid var(--title-color);
}

.block_news h2 a {
    position: relative;
}

.block_news .news_date {
    display: block;
    float: left;
    margin-left: 0px;
}

.block_news .naked .news_date {
    margin-left: 15px !important;
}

.block_news .news_title {
    margin-left: 0px;
    margin-bottom: 0px;
}

.block_news .naked .news_title {
    margin-left: 15px;
    margin-bottom: 0px;
}

.block_news .news_intro_container {
    min-height: 120px;
    position: relative;
}

.block_news .news_intro_container.titledate {
    min-height: 0px;
}

.block_news .news_intro_contents {
    min-height: 80px;
    max-height: 350px;
    overflow: hidden;
}

.block_news .news_intro_contents.titledate {
    min-height: 0px;
}

.block_news .nig {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 80px;
    background: inherit;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(var(--gradient-color), 1) 90%);
}

.block_news .news_intro_image {
    width: 40%;
    aspect-ratio: 1;
    object-fit: cover;
}

.block_news .news_intro_image.blok-style {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3;
}

.block_news .news_intro_content {
    max-height: 200px;
}

.block_news .news_intro_content li {
    position: relative;
    left: 1em;
}

@media (max-width: 991.98px) {
    .col-xs-6 .block_news h2 * {
        font-size: 18px;
    }
}


@media (max-width: 500px) {
    .col-xs-6 .block_news h2 * {
        font-size: 14px;
    }
}

/* New news styles */

/* Style 2: title list */
.block_news .title-list {
    padding-left: 5px;
    background-color: var(--block-background-color, transparent);
}

.block_news .title-list li {
    list-style-type: none;
    border-bottom: 1px solid #d8d6d6;
}

.block_news .title-list li .news-pointer {
    font-size: 20px;
    color: #949292;
    padding-top: 15px;
}

.block_news .title-list .news_title h4 {
    padding: 10px 0;
}

/* Style 4 & 5: article list */
.block_news .article-list {
    display: grid;
    grid-column-gap: 15px;
    align-items: stretch;
}

.block_news .article-list article {
    background-color: var(--block-background-color);
    border: solid 1px var(--news-accent-color, #F7B4A1);
    overflow: hidden;
    padding: 6px;
}

.block_news .article-list article:not(:last-child) {
    margin-bottom: 10px;
}

.block_news .article-list article .link {
    display: flex;
    flex-direction: row;
}

.block_news .article-list article .thumbnail {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    
    margin-right: 18px;
    width: 145px;
    height: 145px;
}

.block_news .article-list article .thumbnail img {
    width: 100%;
    object-fit: cover;

    aspect-ratio: 1;
}

.block_news .article-list article .post-text {
    display: block;
    flex-grow: 1;
}

.block_news .article-list article .post-text .post-title {
    margin: 0;
    padding: 0 10px 10px 0;
}

.block_news .article-list article .post-text .post-excerpt {
    position: relative;
    padding-right: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    line-height: 25px;
    
    max-height: 75px;
}

.block_news .article-list article .post-text .post-excerpt::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(transparent 50px, var(--block-background-color));
}

/* Style 5: article list horizontal */
@media (min-width: 767.98px) {
    .block_news .article-list.horizontal {
        display: flex;
        flex-direction: row;
    }
    
    .block_news .article-list.horizontal article {
        border: solid 1px var(--news-accent-color);
        flex: 1 1 20%;
        padding: 0;
        margin: 5px 10px;
    }
    
    .block_news .article-list.horizontal article .link {
        flex-direction: column;
    }
    
    .block_news .article-list.horizontal article .thumbnail {
        margin-right: 0;
        width: 100%;
        height: unset;
        aspect-ratio: 3/1;
    }
    
    .block_news .article-list.horizontal article .thumbnail img {
        transform: translateY(-20%);
    }
    
    .block_news .article-list.horizontal article .post-text {
        margin: 10px 5px 0;
    }
}