.single-post {
  font-family: "Montserrat", Sans-serif;
}
.single-post-container {
    background-color: #fff;
}
.post-header {
    position: relative;
    overflow: hidden;
	max-width: 900px;
	margin: 0 auto;
}
	.header-background{
	margin: 2.25rem 0;
	}	
	
.header-background img{
	width: 100%;
	height: 65vh;
	object-fit: cover;
	}

.header-content {
    max-width: 900px;
    margin: 8rem auto 0 auto;
    width: 100%;
}
.post-header .entry-title {
    font-size: clamp(1.625rem, 0.94vw  + 1.272rem, 2.1875rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    color: #422166;
}
.post-header .entry-meta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    color: #FAA40E;
}
.entry-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}
	.entry-content p, .entry-content ul, .entry-content li, .entry-content p strong, .entry-content span {
		color: #1a1a1a;
	}
	
	.single-post-content h2, .single-post-content h1{
		font-size: 25px !important;
		line-height: 1.4;
	}
	
	.single-post-content h3{
		font-size: 20px !important;
		line-height: 1.2;
	}
	.single-post-content h4{
		font-size: 18px !important;
		line-height: 1.2;
	}
.post-header .entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
	font-weight:500;
}
.post-footer {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    padding: 30px 0;
    font-weight: 500;
    color: #755D96;
    display: flex;
    justify-content: space-between;
	gap: 1rem;
}
.post-navigation {
    font-weight: 500;
    color: #755D96;
    display: flex;
    justify-content: end;
	gap: 1rem;
}
.post-navigation a {
    display: inline-block;
    font-weight: 600;
	text-transform: uppercase;
	font-size: 0.75rem;
    color: #fff;
    text-decoration: none;
	background-color: #FAA40E;
    border: 1px solid #FAA40E;
    padding: 10px 35px;
	transition:all .3s;
}
	.post-navigation a:hover{
		background: #422166;
		border: 1px solid #422166;
		color: #fff;
	}

.entry-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media(max-width: 1024px) {
    .meta-content {
        flex-direction: column;
        gap: 30px;
    }
	.entry-content {
  padding: 0 1rem;	}
}
	@media (max-width: 1023px) {
    .post-footer {
        padding: 0 1rem;
    }
		.header-background img{
			height: 50vh;
		}
}
@media (max-width: 768px) {
    .post-header .entry-title {
        font-size: 2.5rem;
    }

    .header-content {
        padding: 0 1rem;
    }

}
@media (max-width: 480px) {
    .post-header .entry-title {
        font-size: 2rem;
    }
    .post-header .category {
        font-size: 0.8rem;
    }
    .post-header .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .reading-time:before {
        display: none;
    }
	.header-background img{
		height: 225px;
		padding: 0 1rem;
	}
	.post-footer{
		flex-direction: column-reverse;
		align-items: end;
		padding: 0 1rem;
	}
}
	@media (min-width:2400px){
		.header-content, .post-header .entry-title , .entry-content, .post-footer, .post-header {
			max-width: 1440px;
		}
	}	
	
.share-hover-container {
    position: relative;
    display: inline-block;
    margin: 0;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #FAA40E;
    padding: 8px;
    border-radius: 0;
    transition: background 0.2s;
	height: 35px;
	width: 35px;
}
.share-icon:hover {
    background: #422166;
}

.share-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 130%;
    left: 0;
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    z-index: 10;
    transition: opacity 0.2s ease, visibility 0.2s;
    border: 1px solid #ddd;
}

.share-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0 1px 0 #ddd);
}

.share-tooltip a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-family: sans-serif;
    transition: background 0.1s;
}
.share-tooltip a:hover {
    background-color: #f5f5f5;
}

.share-tooltip span {
    font-size: 13px;
}

.share-hover-container:hover .share-tooltip {
    visibility: visible;
    opacity: 1;
}