.insight-page {
  position: relative;
  padding: 105px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(15, 147, 214, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(250, 171, 59, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--aksenutama) 100%);
  overflow: hidden;
}

.insight-page::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 8%;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  border: 1px solid rgba(0, 118, 178, 0.14);
  transform: rotate(12deg);
}

.insight-page::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 180px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(250, 171, 59, 0.10);
}

.insight-page .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.insight-heading {
  max-width: 880px;
  margin: 0 auto 65px;
  padding: 0 10px;
}

.insight-heading .section-label {
  margin-bottom: 18px;
}

.insight-heading h1 {
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--hitamtua);
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.insight-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--tekssekunder);
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.9;
}

/* CATEGORY BLOCK */
.insight-category-block {
  position: relative;
  margin-bottom: 70px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 118, 178, 0.10);
  box-shadow: 0 22px 55px rgba(25, 25, 25, 0.07);
  backdrop-filter: blur(10px);
}

.insight-category-block:last-child {
  margin-bottom: 0;
}

.insight-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 118, 178, 0.12);
}

.insight-category-header h2 {
  color: var(--hitamtua);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.insight-category-header p {
  color: var(--tekssekunder);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

.insight-category-header a {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid rgba(0, 118, 178, 0.16);
  color: var(--birugelap);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.insight-category-header a:hover {
  background: var(--birugelap);
  color: var(--bg);
  transform: translateY(-2px);
}

/* CARD */
.insight-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 118, 178, 0.09);
  box-shadow: 0 12px 32px rgba(25, 25, 25, 0.06);
  transition: all 0.32s ease;
}

.insight-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 118, 178, 0.18);
  box-shadow: 0 24px 58px rgba(25, 25, 25, 0.13);
}

.insight-img {
  display: block;
  height: 178px;
  overflow: hidden;
  background: var(--aksenutama);
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.45s ease;
}

.insight-card:hover .insight-img img {
  transform: scale(1.06);
}

.insight-card-body {
  padding: 20px 20px 22px;
}

.insight-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 118, 178, 0.08);
  color: var(--birugelap);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.insight-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
}

.insight-card h3 a {
  color: var(--hitamtua);
  text-decoration: none;
  transition: color 0.25s ease;
}

.insight-card h3 a:hover {
  color: var(--birugelap);
}

.insight-card p {
  color: var(--tekssekunder);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;

  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 118, 178, 0.08);
  color: var(--tekssekunder);
  font-size: 0.8rem;
}

.insight-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .insight-page {
    padding: 85px 0 70px;
  }

  .insight-category-block {
    padding: 26px;
  }
}

@media (max-width: 576px) {
  .insight-page {
    padding: 65px 0 55px;
  }

  .insight-page::before,
  .insight-page::after {
    display: none;
  }

  .insight-heading {
    margin-bottom: 42px;
  }

  .insight-heading h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
    letter-spacing: -0.025em;
  }

  .insight-heading p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .insight-category-block {
    padding: 22px;
    border-radius: 24px;
    margin-bottom: 42px;
  }

  .insight-category-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .insight-category-header a {
    width: 100%;
    justify-content: center;
  }

  .insight-img {
    height: 195px;
  }

  .insight-card-body {
    padding: 18px;
  }
}