/* BLOG ARCHIVE
------------------------------------------------------*/

.blog-archive {
	background-color: rgba(255,255,255,1.00);
}

.blog-archive .post-blog {
	background-color: rgba(255,255,255,1.00);
	color: rgba(50,50,50,1.00);
	display: block;
	position: relative;
	box-shadow: 0 2.5px 10px 1px rgba(0, 0, 0, 0.08);
}

.blog-archive .content-post {
	padding: 1rem;
}

.blog-archive p.post-title {
	color: rgba(50,50,50,1.00);
	font-size: 1.1rem;
	line-height: 1.1;
	font-weight: 600;
	min-height: 5rem;
	max-height: 5rem;
	overflow-y: hidden;
}

.blog-archive p.description {
	font-size: 0.8rem;
	color: rgba(100,100,100,1.00);
	border-top: 1px solid rgba(212,212,212,1.00);
}

.blog-archive .post-blog picture {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;    
	overflow: hidden;
}


.blog-archive .post-blog img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width:576px) {}

@media (min-width:768px) {}

@media (min-width:992px) {}

@media (min-width:1200px) {}

@media (min-width:1400px) {}

/* BLOG SINGLE
------------------------------------------------------*/

.blog-single .post-blog {
	background-color: rgba(255,255,255,1.00);
}

.blog-single .post-blog .meta {
	border-top: 1px solid rgba(212,212,212,1.00);
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: left;
	font-size: 0.85rem;

}

.blog-single .post-blog .meta-info {
	width: 100%;
	text-align: center;
	margin-top: 1rem;
}

.blog-single .post-blog .shared-post {
	width: 100%;
	text-align: center;
	margin-top: 1rem;
}

@media (min-width:768px) {

	.blog-single .post-blog .meta {
		flex-direction: row;
		font-size: 0.9rem;
	}

	.blog-single .post-blog .meta-info {
		text-align: left;
	}

	.blog-single .post-blog .shared-post {
		text-align: right;
	}
}

@media (min-width:992px) {

	.blog-single .post-blog .meta {
		flex-direction: row;
		font-size: 1rem;
	}
}

/*-----------------------------------------------------------------------------------*/
/*-------------------------------NO-CONTENT-PAGE-------------------------------------*/
/*-----------------------------------------------------------------------------------*/

.blog-archive .no-content-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70vh;
	padding: 2em;
	margin: 1em 0;
	background-color: rgba(242,242,242,1.00);
	text-align: center;
	border-radius: 5px;
}

/*-----------------------------------------------------------------------------------*/
/*-------------------------------SIDEBAR-TAGS----------------------------------------*/
/*-----------------------------------------------------------------------------------*/

.sidebar {
	background-color: rgba(242,242,242,1.00);
	border-radius: 0.7rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.sidebar .title {
	line-height: 1;
	border-bottom: 1px solid rgba(50,50,50,1.00);
	padding-bottom: 2rem;
}

.sidebar .post-tags a {
	display: inline-block;
	text-align: center;
	color: rgba(255,255,255,1.00);
	border-radius: 0.7rem;
	margin: 0.3rem;
	background-color: rgba(0, 73,143,1.00);
	padding: 0.6rem 1rem;
}

.sidebar .post-tags a:hover {
	opacity: 0.8;
}

/*-----------------------------------------------------------------------------------*/
/*-------------------------------SIDEBAR-WPP-PLUGIN----------------------------------*/
/*-----------------------------------------------------------------------------------*/

.sidebar .wpp-list li {
	margin-bottom: 1rem;
}

.sidebar .wpp-list a {
	line-height: 1.2;
	padding-right: 0.5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.sidebar .wpp-list a:hover {
	background-color: rgba(232,232,232,1.00);
}

.sidebar .wpp-list a .thumb {
	width: 40%;
	display: flex;
}

.sidebar .wpp-list a .thumb img {
	height: 80px;
	width: 100%;
	object-fit: cover;
}

.sidebar .wpp-list a .container-post {
	width: 100%;
	color: rgba(50,50,50,1.00);
}

.sidebar .wpp-list a .container-post p {
	font-size: 0.95rem;
	font-weight: bold;
}