body.single-post {
  margin: 0;
  padding: 0;
}

/* ================= HERO ================= */
.single-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.single-hero-bg,
.single-hero-slide,
.single-hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.single-hero-bg,
.single-hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.single-hero-carousel .single-hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.single-hero-carousel .single-hero-slide:first-child {
  opacity: 1;
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 2;
}

.single-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 170px 24px 130px;
  text-align: center;
}

.single-hero-logo {
  max-width: 170px;
  margin-bottom: 35px;
}

.single-hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.single-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.single-hero-button {
  display: inline-flex;
  margin-top: 35px;
  padding: 16px 34px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.single-hero-button:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* ================= CONTENT ================= */
.single-content-section {
  padding: 90px 0;
  background: #fff;
}

.single-content-section .container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.intro-text {
  font-size: 18px;
  line-height: 1.9;
  color: #4c4c4c;
  margin-bottom: 50px;
}

.post-content img {
  width: 100%;
  max-width: 1600px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  margin: 40px auto;
  display: block;
}

.post-content h2 {
  padding-bottom: 25px;
  font-size: 40px;
  font-weight: 800;
}

.post-content h3 {
  padding-bottom: 18px;
  font-size: 30px;
  font-weight: 700;
}

.post-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #4c4c4c;
}

/* ================= RELATED BLOGS ================= */
.related-blogs-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.related-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 60px;
}

.related-title span {
  color: #696969;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.related-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.related-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.related-content p {
  flex: 1;
  margin-bottom: 25px;
  color: #666;
}

.read-more-btn {
  display: inline-flex;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .single-hero {
    min-height: 500px;
  }

  .single-hero h1 {
    font-size: 36px;
  }

  .post-content h2 {
    font-size: 32px;
  }

  .post-content h3 {
    font-size: 24px;
  }
}
