/* pill styling refinement */
.news-list-filters .pill { display:inline-flex; gap:.35rem; align-items:center; }

/* flash effect */
.news-list-results.flash {
  transition: all 0.3s;
  opacity:0;
}
.news-list-results.flash.remove {
  opacity:1;
}


section.news-list .news-list-results{
	margin:0 -1rem;
}

.news-list-item {
	position: relative;
	padding: 1rem!important;
	transition:all 0.3s;
	margin:1rem 0;
	background:transparent;
}

.news-list-item .image-wrapper {
	position: relative;
	width:100%;
	padding-bottom:75%;
}

.news-list-item .image{
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-size:cover;
	background-position:center;
}

.news-list-item .image-wrapper .categories {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
}

.news-list-item .image-wrapper .categories .article-types {
	display: flex;
	flex-wrap: wrap;
	color: #fff;
	gap: 0.25rem;
	margin: 0;
	font-size: 0.75rem;
	font-weight: 500;
}

.news-list-item .image-wrapper .categories .article-types span {
	background: var(--copper-color);
	padding: 0 0.5em;
}

.news-list-item .info {
	padding: 1.5rem 0 0.75rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.news-list-item .info h4,
.news-list-item .info p{
	margin:0;
	transition:all 0.3s;
}

.news-list-item p.read-time {
	display: flex;
	font-size: .75rem;
	align-items: center;
	color: #fff;
	cursor: default;
	font-weight: 500;
	position: absolute;
	bottom: 0;
	padding: 10px;
	width: 100%;
	background: rgba(203, 109, 81, 0.4);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	gap:.3rem;
	margin:0;
}

.news-list-item p.read-time i{
	font-size:1.125rem
}


.news-list-item:hover {
	background: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.news-list-item:hover h4{
	color:var(--copper-color);
}

@media screen and (max-width:760px){
	section.news-list .news-list-item{
		width:96%;
	}
}
@media screen and (max-width:540px){
	section.news-list .news-list-item{
		width:96%;
	}
}