/* STANDARD PAGE LIST */

section.std-page-list{
	padding:0 5% ;
	margin:45px 0;
}

section.std-page-list .max-width{
	
}

section.std-page-list .wrapper{
	display:flex;
	flex-wrap:wrap;
	margin:0 -1.5%;
	justify-content: center;
}

section.std-page-list .page-list-item {
	position: relative;
	width: 48%;
	margin: 1%;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #e7eaee;
	padding: 20px;
	border-radius: 10px;
	box-shadow:0 0 0 12px rgba(0,0,0,0);
	transition:all 0.3s;
}
section.std-page-list .page-list-item:hover{
	box-shadow:0 0 0 6px rgba(238, 116, 29, 0.5);
}
section.std-page-list .page-list-item .image{
	height:140px;
	width:140px;
	overflow:hidden;
	position:relative;
	border-radius: 5px;
	margin-right:25px;

}
section.std-page-list .page-list-item .image:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0, 0);
	transition: all 0.3s;
	z-index: 10;
}
section.std-page-list .page-list-item .image:after {
	content: '\f0c1';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	z-index: 10;
	font-size: 2em;
	transform: translate(-50%,-100px);
	opacity: 0;
	transition: all 0.3s;
}

section.std-page-list .page-list-item .image img{
	display:block;
	width:100%;
	height:auto;
}

section.std-page-list .page-list-item .info {
	/* text-align: center; */
	padding: 0;
	width: calc(100% - 165px);
	z-index: 20;
}
section.std-page-list .page-list-item .info h4 {
	text-transform: uppercase;
	font-weight: 700;
	color: var(--yellow);
	font-size: 1.375em;
	line-height: 1em;
	margin: 0;
}
section.std-page-list .page-list-item .info h4.smaller{
	font-size: 1em;
}

section.std-page-list .page-list-item .info p{
	margin:0.5em 0;
	line-height:1.5em;
}
section.std-page-list .page-list-item .info p.subtitle {
	color: #fff;
	font-size: 0.875em;
	margin: 0;
	font-weight: 400;
	line-height: 1.5em;
	margin-top: 0.5em;
	text-transform: uppercase;
}
section.std-page-list .page-list-item .info p.text {
	color: var(--very-light-blue);
	font-size: 0.875em;
	margin: 0;
	font-weight: 400;
	line-height: 1.5em;
	margin-top: 0.5em;
}

section.std-page-list .page-list-item a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
	z-index:30;
}

section.std-page-list .page-list-item:hover .image:before {
	background-color: rgba(0,0,0, 0.45);
}
section.std-page-list .page-list-item:hover .image:after {
	opacity:1;
	transform:translate(-50%,-50%);
}
@media screen and (max-width:540px){
	section.std-page-list .page-list-item .info p{
	}
	section.std-page-list .page-list-item .info h4{
	}
}
@media screen and (max-width:720px){
	section.std-page-list .page-list-item .image{
		width:90px;
		height:90px;
		margin-right:15px;
	}
	section.std-page-list .page-list-item .info{
		width:calc(100% - 105px);
	}
}
@media screen and (max-width:960px){
	section.std-page-list .page-list-item{
		width:100%;
		margin:20px 1.5%;
	}
}
@media screen and (max-width:1320px){
	section.std-page-list .page-list-item{
		align-items:flex-start;
	}
}
@media screen and (max-width:@max-width-blog){
	section.std-page-list .page-list-item{
		width:98%;
	}
	
	section.std-page-list .page-list-item .image{
		padding-bottom:50%;
		overflow:hidden;
	}
	
	section.std-page-list .page-list-item .info p{
		display:none;
	}
}
/* BLOG PAGE LIST */

section.blog-page-list {

}

section.blog-page-list.blog-home{

}

section.blog-page-list .wrapper{
	display:flex;
	flex-wrap:wrap;
	margin: 0 -2%;
}

.blog-page-list-item {
	position: relative;
	width: 31.333%;
	margin: 1%;
	padding: 1%;
	transition:all 0.3s;
}

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

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

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

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

.blog-page-list-item p.author {
	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);
}


.blog-page-list-item p.author img{
	width:24px;
	height:24px;
	display:block;
	border-radius:50%;
	margin-right:8px;
}

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

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

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