.menu-item{
	position:relative;
	font-weight:400;
}
.menu-item .sub-menu{
	  position: absolute;
    background: #fff;
    width: 240px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
	 opacity:0;
	visibility:hidden;
	overflow:hidden;
	transition:all .4s ease;
}
.menu-item .sub-menu a{
	padding:.5rem 1rem;
	display:block;
	font-size:16px;
	transition:all .4s ease;
}
.menu-item .sub-menu a:hover{
	background:#f6f3f4;
}
.menu-item.menu-item-has-children:hover .sub-menu{
	opacity:1;
	visibility:visible;
}
.mobile-sub-menu{
	display:none;
}
.mobile-sub-menu li{
	margin:1rem 0;
}
.mobile-menu-item:hover .mobile-sub-menu{
	display:block;
}
.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;
}
.blog_content a{
	font-weight:400;
	color:var(--color-primary);
	text-underline-offset:2px;
	text-decoration-line:underline
}
.blog_content a:hover{opacity:.9}
.blog_content h2, 
.wp-block-heading{
	font-size: 28px;
    font-weight: 300;
	margin-bottom:1rem;
}
h3.wp-block-heading{
	font-size: 24px;
}
.blog_content .wp-block-button{
	margin:1rem 0;
}
.blog_content .wp-block-button__link{
	font-family: var(--font-hankengrotesk);
    font-weight: var(--font-weight-medium);
	  background-color: #403D9C;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}
.post-excerpt{
	height:54px;
}
.blog-image-rounded img{
	width:100%;
	object-fit:cover;
	border-radius:2rem;
}
.blog-thumbnail-image{
	height:270px;
	object-fit:cover;
}
.blog-banner-image{
	height:auto;
	margin-bottom:15px;
}
.blog-banner-image img{
	width:100%;
	border-radius:.75rem;
	object-fit:cover;
}
.check-list li{
	position:relative;
	margin-bottom:24px;
	padding-left:32px;
}
.check-list li::before{
	top: 2px;
    left: .25rem;
    content: "";
    background-image: url(/wp-content/uploads/2026/06/check-secondary.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    position: absolute;
}
.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){
	.post-content-container .sidebar {
		width: 100%;
	}
	.post-date-social{
		justify-content:center;
	}
}