.brandcramb{
	display:flex;
	gap:20px;
	flex-wrap:wrap;
}
.brandcramb a{
	text-decoration:underline;
}
.single-post-title{
	border-bottom:1px solid rgba(0,0,0,.3);
}
.post-content-container{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}
.post-content-container .content{
	flex:1;
}
.post-content-container .sidebar{
	flex: 0 0 auto;
	width:33%;
	background:#FBFBFB;
	padding:1rem;
}
.post-content-container .sidebar h3{
	font-size:30px;
}
.more-links li a{
	display:block;
	padding:1rem 0;
	border-bottom:1px solid rgba(0,0,0,.3);
}
.more-links li:last-child a{
	border-bottom:0;
}
.search-form{
	width:100%;
	display:flex;
	border-radius:50em;
	border:1px solid rgba(0,0,0,.4);
	padding:.8rem 1rem;
}
.search-form input{
	flex:1 auto;
}
.search-form input:focus{
	border:0;
	outline:none;
	box-shadow:none;
}
.blog-categories{
	display:flex;
	justify-content:center;
	gap:60px;
	margin-top:40px;
}
.blog-categories a{
	font-size:20px;
}
.blog-categories a:hover{
	color:var(--color-primary)
}
.blog-title{
	position:relative;
	padding-bottom:.8rem;
}
.blog-title:after{
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	width:30%;
	height:1px;
	background-color:var(--color-primary);
}
p{
	margin-bottom:1rem;
}
.wp-block-heading{
	font-size: 28px;
    font-weight: 400;
	margin:1rem 0;
}
.post-excerpt{
	height:54px;
}
.blog-thumbnail-image{
	height:270px;
	object-fit:cover;
}
.blog-banner-image{
	height:400px;
}
.blog-banner-image img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.post-navigation{
	margin: 1.5rem 0;
}
.post-navigation h2{
	display:none;
}
.nav-links{
	display: flex;
    justify-content: center;
    gap: 20px;
}
.nav-previous span{
	background-image: url(arrow-left-line.svg);
    background-position: 12px center;
    background-repeat: no-repeat;
    background-size: 26px;
    padding-left: 44px;
}
.nav-next span{
	background-image: url(arrow-right-line.svg);
    background-position: 86% center;
    background-repeat: no-repeat;
    background-size: 26px;
    padding-right: 44px;
}
.page-404-banner{
	height:100vh;
	display:flex;
	justify-content:center;
	align-items:center;
}
#load-more{
	display: flex;
    align-items: center;
    gap: 14px;
}
#load-more:hover{
	cursor:pointer;
}
#load-more span{
	display:none;
}
#load-more.loading span{
	display:inline-block;
	 border: 2px solid #80bf62;
	  border-radius: 50%;
	  border-top: 2px solid #fff;
	  width: 20px;
	  height: 20px;
	  -webkit-animation: spin 2s linear infinite; /* Safari */
	  animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.post-date-social{
	justify-content:space-between;
	align-items:center;
}
@media(max-width:768px){
	.blog-banner-image{
		height:250px;
	}
	.post-content-container .sidebar {
		width: 100%;
	}
	.post-date-social{
		justify-content:center;
	}
}