/* ==============================
   SINGLE BLOG BANNER (CLEAN)
================================ */
.single-blog-banner {
  padding: clamp(80px, 10vw, 140px) 0 clamp(90px, 12vw, 160px);
  background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%);
  text-align: center;
}

/* Title */
.single-blog-banner h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

/* Soft underline accent */
.single-blog-banner h1::after {
  content: "";
  width: 48px;
  height: 4px;
  background: var(--primary-color);
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Breadcrumb */
.single-blog-banner p {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.single-blog-banner p a {
  color: var(--text-dark);
  font-weight: 500;
}

.single-blog-banner p a:hover {
  color: var(--primary-color);
}

/* Mobile refinement */
@media (max-width: 576px) {
  .single-blog-banner p {
    font-size: 14px;
  }

  .single-blog-banner h1::after {
    width: 36px;
    height: 3px;
  }
}

/* ==============================
   BLOG DETAILS
================================ */
.blog-details-thumb img {
  width: 100%;
  border-radius: 20px;
}

.blog-details-meta {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--text-light);
  margin: 22px 0 14px;
}

.blog-details-title {
  font-size: 38px;
  margin-bottom: 22px;
}

.blog-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.blog-details-grid img {
  width: 100%;
  border-radius: 16px;
}

/* Quote */
.blog-quote {
  background: #fff7eb;
  border-left: 4px solid var(--secondary-color);
  padding: 26px;
  margin: 32px 0;
  border-radius: 16px;
  font-style: italic;
}

/* Footer */
.blog-details-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-tags a {
  background: #f6eef9;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-right: 8px;
}

.blog-share a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}

/* ==============================
   SIDEBAR
================================ */
.blog-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.widget-title {
  font-size: 18px;
  margin-bottom: 18px;
}

/* Search */
.search-form {
  display: flex;
  gap: 8px;
}

.search-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.search-form button {
  background: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  padding: 0 18px;
}

/* Categories */
.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

/* Recent Post */
.recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.recent-post img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.recent-post a {
  font-weight: 600;
  font-size: 14px;
}

/* Tags */
.tag-cloud a {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 6px 14px;
  background: #f6eef9;
  border-radius: 999px;
  font-size: 14px;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .blog-details-title {
    font-size: 30px;
  }

  .blog-details-grid {
    grid-template-columns: 1fr;
  }

  .blog-details-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Lead Text */
.lead-text {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-bottom: 22px;
}

/* Highlight Strip */
.blog-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: linear-gradient(135deg, #f7f2fb, #fff);
  border-radius: 18px;
  padding: 22px;
  margin: 30px 0;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.blog-highlight strong {
  display: block;
  color: var(--primary-color);
  font-size: 16px;
}

.blog-highlight span {
  font-size: 14px;
  color: var(--text-light);
}

/* Subtitle */
.blog-subtitle {
  font-size: 26px;
  margin: 32px 0 14px;
}

/* Bullet Points */
.blog-points {
  margin: 18px 0 28px;
  padding-left: 18px;
}

.blog-points li {
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
}

.blog-points li::marker {
  color: var(--secondary-color);
}

/* CTA Box */
.blog-cta {
  background: linear-gradient(135deg, var(--primary-color), #6d3a84);
  color: #fff;
  padding: 36px;
  border-radius: 22px;
  margin-top: 50px;
}

.blog-cta h4 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}

.blog-cta p {
  color: #f3ecf6;
  max-width: 520px;
  margin-bottom: 22px;
}

/* Quote author */
.blog-quote span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-highlight {
    grid-template-columns: 1fr;
  }

  .blog-cta {
    text-align: center;
  }
}

/* ==============================
   BLOG CTA BUTTON (WHITE)
================================ */
.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: var(--primary-color);

  padding: 14px 28px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

/* ICON */
.blog-cta-btn i {
  font-size: 14px;
  transition: transform 0.35s ease;
}

/* HOVER EFFECT */
.blog-cta-btn:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* ICON SLIDE */
.blog-cta-btn:hover i {
  transform: translateX(6px);
}

/* FOCUS (ACCESSIBILITY) */
.blog-cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(138, 74, 161, 0.25);
}

/* ==============================
   BLOG SHARE FIX
================================ */
.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-share span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-right: 6px;
}

/* ICON BASE */
.share-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;

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

  background: #ffffff;
  color: var(--primary-color);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* ICON SIZE */
.share-icon i {
  font-size: 15px;
}

/* HOVER EFFECT */
.share-icon:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

/* OPTIONAL: BRAND COLORS ON HOVER */
.share-icon.facebook:hover {
  background: #1877f2;
}

.share-icon.twitter:hover {
  background: #1da1f2;
}

.share-icon.linkedin:hover {
  background: #0a66c2;
}
