.df-title{
	background-color: #B21E02;
	background-image: linear-gradient(to bottom, #B21E02, #B21E02,#B93016, #B21E02, #B21E02);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	padding: 0.5rem;
}
.df-title .title-text{
	color: #FFF;
	font-size: 1.2rem;
	margin: 0;
}
.df-title i{
	color: #DFCA00;
	margin-right: 10px;
	font-size: 18px;
}
.df-content{
	padding: 1rem;
	border: 1px solid #B21E02;
	border-top: 0;
}
/**/
.blocknews-ct {
	padding: 1rem;
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(auto-fit,minmax(260px, 1fr));
}
@media (min-width: 576px) {
  .blocknews-ct {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .blocknews-ct {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .blocknews-ct {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.item_post {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem;
	border-radius: 5px;
	background-color: #FFF;
	border: 1px solid #EEE8E6;
}
.newsittt {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-size: 1.1rem;
	margin-top: 0;
	font-weight: normal;
	color: #000;
}
.item_post:hover {
    opacity: 1;
}

.item_post a {
	display: block;
    text-decoration: none;
}

.item_post_img img {
	display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    object-fit: cover;
    border-radius: 3px;
}

.post_excerpt p {
    margin: 0;
    margin-top: 10px;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

nav.navigation.pagination {
    float: left;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

nav.navigation.pagination a.page-numbers {
    padding: 5px;
    text-decoration: none;
}

nav.navigation.pagination a.page-numbers:hover {
    text-decoration: underline;
}

/* single */
.single-post h2 {
    font-size: 16px;
}
.entry-content iframe{
	width: 100%;
}
/**/
.relatedcat{
	border: 1px solid #B21E02;
	border-top: 0;
	background-color: #F9F9F9;
}
.newsother-hd {
	padding: 0.5rem;
	background-color: #F2D9D4;
	background-image: linear-gradient(to bottom, #F2D9D4, #F9F9F9);
/*	border-top: 1px solid #B21E02;*/
	margin: 0;
	color: #3E0B00;
}
.newsother-hd i{
	color: #E24B01;
	margin-right: 10px;
}
.newsother-ct {
	display: grid;
	grid-gap: 1rem;
	padding: 1rem;
	grid-template-columns: repeat(auto-fit,minmax(180px, 1fr));
}
@media (min-width: 768px) {
  .blockdf-ct, .newsother-ct {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .blockdf-ct, .newsother-ct {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .blockdf-ct, .newsother-ct {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.newsotitem {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #FFF;
	border-radius: 5px;
	padding: 0.5rem;
	border: 1px solid #EEE8E6;
}

.newsotitem a {
	text-decoration: none;
	color: #3E0B00;
}
.newsotitem img {
	border-radius: 3px;
	aspect-ratio: 2/1;
	width: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 768px) {
    .post_excerpt {
        font-size: 11px;
    }

    .item_post h4 {
        font-size: 13px;
    }

    .post_date {
        font-size: 10px;
        margin-top: 0px;
    }

    .post_excerpt p {
        margin: 0;
    }
}

@media only screen and (max-width: 640px) {
	.df-title .title-text {
		font-size: 17px;
	}
}
@media only screen and (max-width: 500px) {
    .post_excerpt {
        display: none;
    }
}