/*--------------------------------------------------------------
# BLOG LIST STYLES
--------------------------------------------------------------*/
/* .blog-list-wrap {
	padding: 150px 0;
} */

.blog-title {
	padding-top: 1rem;
	font-size: 2.5rem;
	line-height: 3rem;
}

.blog-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

@media only screen and (min-width: 1024px) {
	.blog-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (min-width: 768px) {
	.blog-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.blog-list.cards {
	padding: 0;
}

.blog-header-content {
	margin-bottom: 5rem;
}

.blog-post-title {
	font-size: 1.5rem;
	line-height: 1.75rem;
}

.blog-post-title a {
	color: var(--light-blue);
}

.blog-post-excerpt {
	margin: 1rem 0;
}

.blog-post-thumbnail-img {
	display: grid;
	position: relative;
	overflow: hidden;
}

.blog-post-thumbnail-img:hover img {
	transform: scale(1.1);
	transform-origin: center;
	-webkit-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
		 -moz-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
			-ms-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
			 -o-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
					transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
}

.blog-post-thumbnail-img img {
	width:100%;
	height: 230px;
	object-fit: cover;
	object-position: center;
	overflow: hidden;
	transform: scale(1);
	transform-origin: center;
	-webkit-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
		 -moz-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
			-ms-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
			 -o-transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
					transition: all 0.7s cubic-bezier(.79,-0.01,.18,1);
	z-index: 1;
}

.blog-post-details {
	padding: 2rem;
	z-index: 1;
}

.blog-post-details p {
	margin-bottom: 0;
	line-height: 1.5rem;
}

.category-cat {
	font-size: .75rem;
}

.blog-pagination {
	display: flex;
	justify-content: space-between;
	padding: 2rem 0;
}

.single-video .blog-pagination {
	max-width: 800px;
}

.blog-previous {
	justify-content: flex-start;
}

.blog-next {
	justify-content: flex-end;
}

.blog-pagination a {
	text-transform: uppercase;
	color: var(--white);
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding-bottom: 8px;
	letter-spacing: 3px;
}

/*--------------------------------------------------------------
# SINGLE POST STYLES
--------------------------------------------------------------*/

.post-header {
	position: relative;
}

.post-content-wrapper {
	max-width: 680px;
	margin: 0 auto;
	margin-bottom: 1rem;
	padding-top: 2rem;
}

.post-title-contents {
	position: relative;
	padding-top: 2rem;
}

.post-title {
	font-size: 2.5rem;
	line-height: 3rem;
	color: #ffffff;
}

.post-date-label {
	font-weight: 600;
	color: #ffffff;
	display: grid;
	word-break: keep-all
}

.post-details {
	display: grid;
	grid-template-columns: 1fr;
	margin: 0 auto;
}

@media only screen and (min-width: 768px) {
	.post-details {
			grid-template-columns: 3fr 1fr;
	}
}

.post-cat {
	margin-bottom: 1rem;
}

.post-cat-listing {
	font-weight: 600;
}

.post-cat-listing a {
	word-break: break-word;
	display: inline-block;
}

.post-read-time {
	text-align: right;
}

@media only screen and (max-width: 768px) {
	.post-read-time {
		text-align: left;
	}
}

.post-read-time p,
.post-copy a {
	color: var(--blue);
}

.post-img img {
	width: auto;
	margin: 1.5rem 0;
	display: block;
}

.post-img figure {
	width: 100% !important;
}

.post-img figure figcaption {
	margin-bottom: 3rem;
	font-style: italic;
	color: #9a9a9a;
}

.post-content blockquote p::before {
	content: '"';
	font-size: 3rem;
	position: absolute;
	top: 1rem;
	left: 1rem;
}

.post-content blockquote p::after {
	content: '"';
	font-size: 3rem;
	position: absolute;
	bottom: -1rem;
	right: 1rem;
}

.post-content blockquote p {
	font-style: italic;
	font-weight: bold;
	padding: 1rem;
	border: 1px solid white;
	position: relative;
	text-align: center;
}

.post-content hr {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.post-thumbnail-img img {
	width:100%;
	height: auto;
	max-height: 800px;
	object-fit: cover;
	object-position: center;
	overflow: hidden;
	display: block;
	position: relative;
}

.post-tags {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	margin: 6.25rem 0 3rem
}

.post-tags a {
	padding: 2px 6px;
}

.post-share-wrap {
	display: flex;
	margin-bottom: 2rem;
}

.post-share-btns {
	display: flex;
	gap: 1rem;
	background: #ffffff;
	border: 1px solid #c8c8c8;
	border-radius: 50px;
	padding: 1rem;
}

.post-share-btns a:hover {
	color: var(--blue);
}

.post-share-btns a {
	color: #c8c8c8;
	-webkit-transition: all 0.2s ease-in-out;
		 -moz-transition: all 0.2s ease-in-out;
			-ms-transition: all 0.2s ease-in-out;
			 -o-transition: all 0.2s ease-in-out;
					transition: all 0.2s ease-in-out;
}
