/* 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;
	gap:1%;
	margin:0 -1%;
	justify-content: center;
}

section.std-page-list .page-list-item{
	position:relative;
	width:23%;
	margin: 0.5em 0.25em;
}
section.std-page-list .page-list-item .image{
	height:0;
	padding-bottom:100%;
}
section.std-page-list .page-list-item .image:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(34, 43, 49, 0.59);
	transition: all 0.3s;
	z-index: 10;
}

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

section.std-page-list .page-list-item .info{
	position:absolute;
	top:60%;
	transform:translateY(-50%);
	text-align:center;
	padding:20px;
	width:100%;
	z-index:20;
}
section.std-page-list .page-list-item .info h4{
	font-weight: 400;
	color: #fff;
	font-size: 1.4em;
	line-height: 1em;
	font-family: var(--main-font);
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricprecision;
}
section.std-page-list .page-list-item .info p{
	color: #fff;
	font-size: 0.875em;
	margin: 0;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.2em;
	margin-top: 5px;
}

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(255, 63, 0, 0.783); 
}
@media screen and (max-width:960px){
	section.std-page-list .page-list-item{
		width: calc(50% - 5px);
		margin: 3px 0;
	}
}
@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{
	padding:0 5%;
	margin:45px 0;
}
section.blog-page-list .max-width{
	max-width:@max-width;
	margin:0 auto;
	
}
section.blog-page-list .wrapper{
	display:flex;
	flex-wrap:wrap;
	margin: 0 -2%;
}

section.blog-page-list .blog-page-list-item{
	position:relative;
	width:29.333%;
	margin:2%;
}

.blog-page-list-item .image{
	position:relative;
}

.blog-page-list-item .image a:before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	background:rgb(34, 43, 49);
	transition:all 0.3s;
	position: absolute;
	top: 0;
	left: 0;
	opacity:0;
}
.blog-page-list-item .image a{
	display:block;
	position:relative;
}

.blog-page-list-item .image a: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;
}

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

.blog-page-list-item .info{
	padding:20px 0 30px 0;
}

.blog-page-list-item .info h4{
	font-weight:700;
	margin:0;
	font-size:1.375em;
	line-height:1em;
}

.blog-page-list-item .info h4 a{
	transition:all 0.3s;
}

.blog-page-list-item .info p{
	font-size:0.875em;
}

.blog-page-list-item .info p.author, section.title-block p.author{
	display:flex;
	font-size:11px;
	align-items: center;
	font-weight:500;
	margin: 0 0 15px 0;
	cursor: default;
}
.blog-page-list-item .info p.topic{
	margin: 0;
	text-transform: uppercase;
	font-size: 0.75em;
	color: #fff;
	position: absolute;
	top: 5px;
	left: 5px;
	padding: 3px 8px;
	background: #000;
}

.blog-page-list-item .info p.author span, section.title-block p.author span{
	font-weight:400;
}

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


.blog-page-list-item:hover .info h4 a{
	color:#fff;
}

.blog-page-list-item:hover .image a:before{
	opacity:0.5;
}

.blog-page-list-item:hover .image a:after{
	opacity:1;
	transform:translate(-50%,-50%);
}
@media screen and (max-width:760px){
	section.blog-page-list .blog-page-list-item{
		width:46%;
	}
}
@media screen and (max-width:540px){
	section.blog-page-list .blog-page-list-item{
		width:96%;
	}
}
/* BLOG LIST SHARING */
div.list-sharing{
	display:flex;
	overflow:hidden;
	justify-content: flex-end;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	padding-bottom:3px;
}
div.list-sharing-icon{
	width: 24px;
	height: 24px;
	background: transparent;
	text-align: right;
	line-height: 24px;
	position:relative;
	z-index:10;
	cursor:pointer;
}
div.list-socials{
	display:flex;
	transform: translateX(100%);
	opacity:0;
	transition:all 0.6s;
}
div.list-sharing.viewing div.list-socials{
	transform: translateX(0);
	opacity:1;
}
a.socials-item{
	display:block;
	width:24px;
	height:24px;
	text-align:center;
	line-height:24px;
	transition:all 0.3s;
	font-size:15px;
}

a.socials-item:hover{
}

section.motorhome-page-list{
	padding:0 5%;
	margin:90px 0;

}
section.motorhome-page-list .wrapper{
	display:flex;
	gap:5%;
	flex-wrap:wrap;
}

.motorhome-list-entry{
	width:47.5%;
	display: flex;
	flex-direction: column;
	margin: 0 0 2em 0;
}

.motorhome-list-entry .image img{
	display:block;
	width:100%;
	height:auto;
}
.motorhome-list-entry .specs{
	background-color:var(--orange-color);
	padding:10px 0;
	color:#fff;
	display:flex;
	justify-content:center;
}
.motorhome-list-entry .specs .spec{
	display:flex;
	flex-direction:column;
	align-items:center;
	width:25%;
}
.motorhome-list-entry .specs span{
	display:block;
}
.motorhome-list-entry .specs span.number,
.motorhome-list-entry .specs span.svg{
	font-weight: 600;
	font-size: 24px;
	height:28px;
}

.motorhome-list-entry .specs span.description {
	font-size: 0.75em;
	text-transform: uppercase;
	font-weight: 500;
}

.motorhome-list-entry .specs span.number strong {
	font-size: 14px!important;
}

.motorhome-list-entry .specs span.svg svg{
	width:20px;
	height:20px;
}
.motorhome-list-entry .info {
	background: var(--dark-grey-color);
	padding: 30px 30px 95px 30px;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.motorhome-list-entry .info h3 {
	color: #fff;
	font-size: 1.5em;
	margin-bottom: 15px;
}

.motorhome-list-entry .info p {
	color: #fff;
	font-weight:400;
	font-size:0.875em;
}

.motorhome-list-entry .buttons {
	position: absolute;
	bottom: 30px;
	left: 30px;
	width: calc(100% - 60px);
}

.motorhome-list-entry a.button:first-of-type { 
	margin:0 10px 0 0;
}

@media screen and (max-width: 800px){
	.motorhome-list-entry {
	  width: 97.5%;
	  margin: 0  0 40px 0;
	}
}

@media screen and (max-width: 500px){ 
	section.std-page-list .page-list-item .info h4 {
		font-size: 1.1em;
	}
	
	.motorhome-list-entry .info {
		padding-bottom: 155px;
	}
}

@media screen and (max-width: 450px){ 
	.motorhome-list-entry .info a.button {
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 390px){ 
	section.std-page-list .page-list-item .info h4 {
		font-size: 0.9em;
	}
}