body {
    background-color: white;
    font-family: 'FND-Questrial';
    overflow-x: hidden;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-featured-image {
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

@media (max-width: 768px) {
  .hero-featured-image {
    background-attachment: scroll;
    
    height: 400px; /* Optional: reduce height for better mobile fit */
  }
}




.post-title {
    margin-top: 620px;
    font-size: 46px;
    line-height: 1.4;
    padding: 15px 15px;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
  .post-title {
    margin-top: 420px;
  }
}



.post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 50px;
    padding: 0px 15px 0px 15px;
}

.post-content {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    padding: 0px 15px 30px 15px;
    
}

.post-content h2, h3 , h4 {
    margin: 40px 0px;
}

post-content img {
    margin: 20px 0px;
}

.post-content p {
    margin: 15px 0px;
}

.post-content hr {
    margin: 30px 0px;
}

.back-to-blog {
    margin-top: 10px;
    
}

.back-to-blog a {
    font-family: 'FND-Mono';
    color: #1c1f2d;
    text-decoration: underline;
    text-underline-offset: 10px;
    font-size: 20px;
}




/*social share buttons styling*/
.social-share {
  margin-top: 50px;
  font-size: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.social-share span {
  font-weight: bold;
}

.share-btn {
  padding: 6px 12px;
  border: none;
  background: #1c1f2d;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  transition: background 0.3s;
}

.share-btn:hover {
  background: #005f8a;
}

.share-btn.copy {
  cursor: pointer;
}
