.single-post-page{
  background:#07152b;
  padding:160px 6% 90px;
}

.single-post-container{
  max-width:1050px;
  margin:0 auto;
}

.back-link{
  display:inline-block;
  color:#f4b400;
  font-weight:900;
  margin-bottom:24px;
}

.single-post-image{
  width:100%;
  max-height:520px;
  background:white;
  border-radius:30px;
  margin-bottom:30px;
  display:block;
}

.image-fit-cover{
  object-fit:cover;
}

.image-fit-contain{
  object-fit:contain;
  padding:14px;
}

.single-post-content{
  background:white;
  border-radius:30px;
  padding:48px;
}

.single-post-category{
  color:#f4b400;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:12px;
}

.single-post-content h1{
  color:#061426;
  font-size:clamp(36px,5vw,64px);
  line-height:1.05;
  margin-bottom:16px;
}

.single-post-summary{
  color:#444;
  font-size:22px;
  line-height:1.6;
  font-weight:600;
  margin-bottom:20px;
}

.single-post-date{
  color:#777;
  margin-bottom:30px;
}

.single-post-text{
  color:#333;
  font-size:19px;
  line-height:1.85;
}

.single-post-text h2,
.single-post-text h3{
  color:#061426;
  margin:34px 0 14px;
  line-height:1.2;
}

.single-post-text p{
  margin-bottom:20px;
}

.single-post-text a{
  color:#0b57d0;
  font-weight:800;
  text-decoration:underline;
}

.single-post-text ul,
.single-post-text ol{
  padding-left:24px;
  margin:20px 0;
}

.single-post-text li{
  margin-bottom:10px;
}

.single-post-text blockquote{
  border-left:5px solid #f4b400;
  padding:18px 22px;
  background:#f7f8fb;
  border-radius:14px;
  margin:28px 0;
}

.video-wrapper,
.embed-wrapper{
  position:relative;
  width:100%;
  margin:34px 0;
  border-radius:24px;
  overflow:hidden;
  background:#000;
}

.video-wrapper iframe,
.embed-wrapper iframe{
  width:100%;
  min-height:420px;
  border:0;
  display:block;
}

.tags-box{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:34px;
}

.tags-box span{
  background:#f4f5f7;
  color:#061426;
  padding:9px 13px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

.share-box{
  margin-top:40px;
  background:#f6f7fa;
  border-radius:24px;
  padding:26px;
}

.share-box h3{
  color:#061426;
  margin-bottom:18px;
}

.share-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.share-buttons a,
.share-buttons button{
  border:none;
  padding:14px 18px;
  border-radius:14px;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  font-size:15px;
}

.share-whatsapp{
  background:#25D366;
  color:white;
}

.share-facebook{
  background:#1877F2;
  color:white;
}

.copy-link-btn{
  background:#061426;
  color:white;
}

.single-post-cta{
  margin-top:45px;
  background:#061426;
  color:white;
  border-radius:24px;
  padding:30px;
}

.single-post-cta h2{
  color:#f4b400;
  margin-bottom:12px;
}

.single-post-cta p{
  opacity:.85;
  line-height:1.6;
  margin-bottom:22px;
}

.single-post-cta a{
  display:inline-block;
  background:#f4b400;
  color:#061426;
  padding:15px 24px;
  border-radius:50px;
  font-weight:900;
}

.related-posts{
  margin-top:65px;
}

.related-title{
  text-align:center;
  margin-bottom:35px;
}

.related-title p{
  color:#f4b400;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:1px;
}

.related-title h2{
  color:white;
  font-size:clamp(32px,4vw,48px);
}

.related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.related-card{
  background:white;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.20);
}

.related-card img{
  width:100%;
  height:180px;
  background:#f1f1f1;
  display:block;
}

.related-body{
  padding:22px;
}

.related-body span{
  color:#f4b400;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
}

.related-body h3{
  color:#061426;
  margin:10px 0;
}

.related-body p{
  color:#555;
  line-height:1.5;
}

.related-body a{
  display:inline-block;
  margin-top:14px;
  background:#f4b400;
  color:#061426;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
}

@media(max-width:850px){
  .related-grid{
    grid-template-columns:1fr;
  }

  .share-buttons a,
  .share-buttons button{
    width:100%;
  }

  .video-wrapper iframe,
  .embed-wrapper iframe{
    min-height:260px;
  }
}

@media(max-width:700px){
  .single-post-page{
    padding:130px 5% 70px;
  }

  .single-post-content{
    padding:28px;
  }

  .single-post-text{
    font-size:17px;
  }

  .single-post-image{
    max-height:360px;
  }
}