/*--------------------------------------------------------------
# ARCHIVE

For blog page and archives pages like category, author etc.. 
ONLY for post type = post 
ADD your own stylesheet for custom post type archive 
OR, if it uses sames styles, add it to enqueue style function in functions.php 

--------------------------------------------------------------*/

.letter {
	opacity: 0.04;
}

#glitch-l {
	top: 0px;
	left: 80px;
	transform: translateY(-50%);
}

#glitch-o {
	top: 320px;
	left: -280px;
}

#glitch-o2{
	top: 0px;
	right: 0;
	transform: translateX(55%);
}

.blog .site-content, .archive .site-content {
	overflow: hidden;
	position: relative;
}

@media (max-width:767px) {
	.letter {
		font-size: 80rem;
		line-height: 1;
	}
	#glitch-o {
		display: none
	}
	#glitch-o2 {
		transform: translate(67%, -60%);
		top: 0px;
	}
	#glitch-l {
	    left: -30%;
	    transform: translateY(-54%);
	    font-size: 58rem;
	}
}

/* BLOG */

.archive .site-content,
.blog .site-content {
	padding: 120px 0 140px;
}

.blog-subtitle {
	font-size: 18px;
	text-align: center;
	color: #c0c0c0;
	font-weight: 500;
}

.archive .site-content h1,
.blog .site-content h1 {
	margin: 15px 0 72px;
	text-align: center;
}

.attachment-post-thumbnail {
  display: block;
  min-width: 100%;
}

.une-title {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.31;
	letter-spacing: normal;
	color: #161616;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.first-article {
	margin-bottom: 95px;
}

.first-article a {
	text-decoration: none;
}

.first-article a h2 {
	color: #141414;
	margin-top: 48px;
}

.first-article a  .rt-reading-time {
	display: none!important;
}

.first-article a .first-excerpt {
	color: #000!important;
	margin: 16px 0 32px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.post-list article {
	margin: 62px 0;
}

.post-list article h2 a {
	font-size: 24px;
	color: #141414;
	text-decoration: none;
}

.post-list article h2 a:hover {
	color: var(--main-color);
}

.post-list article h2 {
	font-size: 24px;
	line-height: 34px;
	margin: 5px 0 9px;
	width: 516px;
	max-width: 100%;
}

.entry-content-excerpt .rt-reading-time {
	display: none!important;
}

.entry-content-excerpt p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	font-size: 18px;
	line-height: 34px;
	color: #141414;
}

article .post-thumbnail img {
	height: 63vw;
	object-fit: cover;
}

.post-list article .entry-content {
 margin-top: 40px;
}
.post-list article .posted-on {
	position: relative;
	margin-right: 23px;
}
.post-list article .posted-on:after {
    display: block;
    border-radius: 100%;
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background-color: #c0c0c0;
    top: 6px;
    right: -15px;
}

.entry-content-infos {
	display: flex;
}

.posted-on a {
	color: #c0c0c0;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.entry-content-infos-reading {
	color: #f27851;
	font-weight: 600;
}

.posts-navigation .nav-links {
	display: flex;
	justify-content: space-between;
}

.posts-navigation .nav-links {
	transform: translateY(100%);
}

.posts-navigation .nav-links a {
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
}

.paginateselect {
	margin: auto;
	width: 65%;
	display: flex;
	justify-content: center;
	transform: translateY(-50%);
}

.paginateselect > div {
	position: relative;
	z-index: 2;
}

.paginateselect select {
	margin: 0 15px;
	cursor: pointer;
	border: 2px solid var(--main-color);
	padding: 11px 14px;
}

@media (min-width:768px) {
	.posts-navigation .nav-links a {
		white-space: nowrap;
	}
	.nav-next {
		margin-left: auto
	}
	.nav-next:after {
	    content: "";
	    display: inline-block;
	    position: relative;
	    top: -5px;
	    margin-left: 12px;
	    width: 23px;
	    height: 2px;
	    background-color: var(--main-color);
	}
	.nav-previous:before {
	    content: "";
	    display: inline-block;
	    position: relative;
	    top: -5px;
	    margin-right: 12px;
	    width: 23px;
	    height: 2px;
	    background-color: var(--main-color);
	}
	.paginateselect {
		font-size: 1.8rem
	}
	.archive .site-content,
	.blog .site-content {
		padding: 180px 0 140px;
	}
}

@media (max-width:767px) {
	.posts-navigation .nav-links a {
		position: relative;
		z-index: 2;
		font-size: 0;
		width: 30px;
		height: 30px;
	}
	.posts-navigation .nav-links a:before {
		content: "";
		display: block;
		height: 14px;
		width: 14px;
		border-top: 2px solid var(--main-color);
		border-left: 2px solid var(--main-color);
	}
	.nav-next a:before {
		transform: rotate(135deg);
	}
	.nav-previous a:before {
		transform: rotate(-45deg);
	}
	.paginateselect {
		transform: translateY(-38%);
	}
}

@media screen and (min-width: 992px) {
	.post-list article {
		display: flex;
		align-items: center;
	}
	.first-article a .first-excerpt,
	.entry-content-excerpt p {
		-webkit-line-clamp: 2;
	}
	article .post-thumbnail img {
		width: 234px;
		max-width: 234px;
		height: 169px;
		object-fit: cover;
	}
	.post-list article .entry-content {
		margin-top: 0;
		margin-left: 36px;
	}
  }