/* Single Post Styles */
.single-hero-section {
  position: relative;
  width: 100%;
  height: 690px;
  overflow: hidden;
}

.single-hero-image {
  position: absolute;
  top: -219px;
  left: -1px;
  width: calc(100% + 2px);
  height: 961px;
  z-index: 0;
}

.single-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.single-hero-content {
  max-width: 650px;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-hero-title {
  font-size: 62px;
  line-height: 70px;
  color: #ffffff;
}

.single-hero-description {
  font-size: 16px;
  line-height: 1.75;
  color: #bababa;
}

.single-hero-rating {
  display: flex;
  justify-content: center;
}

/* Single Content Section */
.single-content-section {
  padding: 60px 0;
  background-color: #000000;
}

.single-content-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.single-content-container p {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 20px;
}

.single-content-container h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #ffffff;
  margin: 40px 0 20px;
}

.single-content-container h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #ffffff;
  margin: 30px 0 15px;
}

.single-content-container ul,
.single-content-container ol {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffff;
  margin: 20px 0;
  padding-left: 40px;
}

.single-content-container li {
  margin-bottom: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .single-hero-section {
    height: 500px;
  }

  .single-hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .single-hero-description {
    font-size: 14px;
  }

  .single-content-section {
    padding: 80px 0;
  }

  .single-content-container {
    padding: 0 20px;
  }

  .single-content-container h2 {
    font-size: 24px;
  }

  .single-content-container h3 {
    font-size: 20px;
  }
}
