/* =================================== */
/* Single Blog Page Styles
/* =================================== */

/* Social Sharing Sidebar */
.social-sharing-sidebar {
  background-color: #1f3660;
  width: fit-content;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.social-sharing__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;

  letter-spacing: 2px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.social-sharing__icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.social-icons-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.social-sharing__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-sharing__icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-sharing__icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* Main Content */
.single-blog-main {
  background-color: #ffffff;
  min-height: 100vh;
}

/* Header Section */
.single-blog-header {
  padding: 3rem 0 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.blog-meta {
  margin-bottom: 1.5rem;
  text-align: center;
}

.blog-meta__category,
.blog-meta__date {
  color: rgba(31, 54, 96, 1);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0.5rem;
}

.blog-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f3660;
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Image Section */
.blog-hero-image {
  padding: 2rem 0;
}

.hero-image-container {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.blog-content {
  padding: 3rem 0 5rem;
}
.blog-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
  border-radius: 15px;
}

.content-section {
  margin-bottom: 3rem;
}

.content-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1f3660;
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.4;
}

.content-text {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Benefit Items */
.benefit-item {
  margin-bottom: 2.5rem;
}

.benefit-subheading {
  font-size: 20px;
  font-weight: 700;
  color: #1f3660;
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.4;
}

.benefit-image {
  margin: 1.5rem 0;
  text-align: center;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Tips Section */
.tips-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.tip-item {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.tip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: #1f3660;
  border-radius: 50%;
}

.checkmark {
  color: #28a745;
  font-size: 20px;
  margin-left: 0.5rem;
  font-weight: 700;
}

/* Conclusion */
.conclusion-text {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 1.8;
  text-align: left;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #1f3660;
}

/* =================================== */
/* Order Service Button Styles
/* =================================== */
.about-section__cta {
  margin-top: 2rem;
  text-align: center;
}


/* Responsive Button Styles */
@media (max-width: 991.98px) {
  .btn-primary {
    font-size: 18px;
    padding: 14px 36px;
    min-width: 200px;
  }
}

@media (max-width: 767.98px) {
  .btn-primary {
    font-size: 16px;
    padding: 12px 32px;
    min-width: 180px;
  }
}

@media (max-width: 575.98px) {
  .btn-primary {
    font-size: 15px;
    padding: 10px 28px;
    min-width: 160px;
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .social-sharing-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
    padding: 1rem;
  }

  .social-sharing__title {
    writing-mode: horizontal-tb;
    margin-bottom: 1rem;
    min-height: auto;
  }

  .social-sharing__icons {
    flex-direction: row;
    justify-content: center;
  }

  .social-icons-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-title {
    font-size: 30px;
  }

  .content-heading {
    font-size: 22px;
  }

  .content-text {
    font-size: 16px;
  }

  .benefit-subheading {
    font-size: 18px;
  }

  .tip-item {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .single-blog-header {
    padding: 2rem 0 1.5rem;
  }

  .blog-title {
    font-size: 26px;
  }

  .blog-meta__category,
  .blog-meta__date {
    font-size: 14px;
  }

  .content-heading {
    font-size: 20px;
  }

  .content-text {
    font-size: 15px;
  }

  .benefit-subheading {
    font-size: 16px;
  }

  .tip-item {
    font-size: 15px;
  }

  .conclusion-text {
    font-size: 15px;
    padding: 1.5rem;
  }

  .social-sharing-sidebar {
    padding: 0.75rem;
  }

  .social-sharing__icon {
    width: 26px;
    height: 26px;
  }

  .social-sharing__icon img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 575.98px) {
  .blog-title {
    font-size: 24px;
  }

  .content-heading {
    font-size: 18px;
  }

  .content-text {
    font-size: 14px;
  }

  .benefit-subheading {
    font-size: 15px;
  }

  .tip-item {
    font-size: 14px;
  }

  .conclusion-text {
    font-size: 14px;
    padding: 1rem;
  }

  .social-sharing__icon {
    width: 24px;
    height: 24px;
  }

  .social-sharing__icon img {
    width: 12px;
    height: 12px;
  }
}
