/* Insights Breadcrumb */
.insights-breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  font-size: 14px;
}

.insights-breadcrumb a {
  color: #5b5bff;
  text-decoration: none;
  margin: 0 4px;
}

.insights-breadcrumb a:hover {
  text-decoration: underline;
}

.insights-breadcrumb .separator {
  margin: 0 6px;
  color: #999;
}

.insights-breadcrumb .current {
  color: #111;
  font-weight: 500;
}

.breadcrumb-right span {
  color: #666;
  margin-right: 6px;
}

.breadcrumb-right a {
  margin-left: 6px;
}

/* Insights Hero Section */
.insights-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.insights-hero .container {
  /* padding-top: 30px;  */
  margin-bottom: 15rem;
}

.insights-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: blur(1px); */
  transform: scale(1.05);
}

.insights-hero-overlay {
  position: absolute;
  inset: 0;
}

.insights-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.insights-subtitle {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .insights-hero {
    min-height: 65vh;
  }

  .insights-hero .container {
    padding-top: 40px;
  }

  .insights-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .insights-hero {
    min-height: 60vh;
  }

  .insights-hero .container {
    padding-top: 30px;
  }

  .insights-title {
    font-size: 2.1rem;
  }

  .insights-subtitle {
    font-size: 1rem;
  }
}

/* ------------------------------------
Case Studies Hero Section
------------------------------------ */

.case-studies-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-position: left center;
}

.case-studies-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  /* transform: scale(1.05); */
}

.case-studies-hero-overlay {
  position: absolute;
  inset: 0;
}

.case-studies-hero .container {
  position: relative;
  z-index: 2;
  /* max-width: 900px; */
}

.hero-row {
  justify-content: flex-start;
}

.hero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

.hero-subheading {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #ffffff;
  margin: 15px 0 28px;
  max-width: 400px;
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .case-studies-hero {
    min-height: 65vh;
    justify-content: center;
  }

  .case-studies-hero .container {
    padding-top: 40px;
  }

  .hero-row {
    justify-content: center;
  }

  .hero-heading {
    font-size: 2.6rem;
    text-align: center;
  }

  .hero-subheading {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .case-studies-hero {
    min-height: 60vh;
  }

  .case-studies-hero .container {
    padding-top: 30px;
  }

  .hero-heading {
    font-size: 2.1rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }
}

/* -----------------------------------------
Success Stories 
--------------------------------------------*/

/* ARTICLE CARD */

.article-card-premium {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.article-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.article-img-wrap {
  height: 260px;
  overflow: hidden;
}

.article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.2s ease;
}

.article-card-premium:hover img {
  transform: scale(1.08);
}

/* BODY */

.article-body {
  padding: 26px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}

.article-badge {
  background: #eef0ff;
  color: #4f5bff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.article-body h4 {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 26px;
}

.article-read {
  border-top: 1px solid #eee;
  padding-top: 16px;
  font-weight: 500;
}

/* HOVER */

.article-hover-premium {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(
    140deg,
    rgba(79, 91, 255, 0.95),
    rgba(52, 198, 176, 0.85)
  );
  opacity: 0;
  transition: 0.45s;
}

.article-card-premium:hover .article-hover-premium {
  opacity: 1;
}

.hover-actions {
  font-size: 1.1rem;
  align-self: flex-end;
}

@media (max-width: 768px) {
  .article-hover-premium {
    display: none;
  }
}

/* Badge */

.premium-badge {
  background: #000;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
}

/* Arrow animation */

.hover-arrow {
  font-size: 1.6rem;
  align-self: flex-end;
  transition: 0.3s;
}

.case-card-premium:hover .hover-arrow {
  transform: translateX(6px);
}

/* MOBILE */

@media (max-width: 768px) {
  .case-hover-premium {
    display: none;
  }

  .case-card-premium:hover {
    transform: none;
  }
}

/* ------------------------------------------
hr
-----------------------------------*/

.gradient-hr {
  border: none;
  height: 3px;
  background: linear-gradient(
    90deg,
    #8a5cff,
    /* purple */ #5fd3ff,
    /* light blue */ #3ef0c4 /* teal */
  );
  opacity: 1;
  margin: 0;
}
