
  /* ========== INSIGHT SINGLE PAGE ========== */

.insight-single-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}

.insight-single-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
background: linear-gradient(135deg, rgba(5, 100, 5, 0.53) 20%, #04061bee 100%);


}

.insight-single-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.insight-single-hero h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.insight-single-meta {
  font-size: 0.95rem;
  color: #cbd5e1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.insight-single-meta i {
  margin-right: 6px;
  color: #22c55e;
}

/* BODY */
.insight-single-body {
  padding: 4rem 0;
  max-width: 900px;
}

.insight-single-excerpt {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.insight-single-content p {
  margin-bottom: 1.5rem;
  color: #334155;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* SHARE SECTION */
.insight-single-share {
  margin-top: 3rem;
  text-align: center;
}

.insight-single-share h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.insight-share-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.share-btn.twitter { background: #000; }
.share-btn.facebook { background: #1877f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover { transform: scale(1.1); }

.insight-share-count {
  font-size: 0.9rem;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .insight-single-hero h1 {
    font-size: 1.8rem;
  }
  .insight-single-body {
    padding: 2rem 1rem;
  }
}
