/* Inline download link within text */
.insight-inline-link {
  color: #1B4332;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.insight-inline-link:hover {
  color: #FFCA29;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: #1B4332;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B4332 0%, #0d2118 100%);
  opacity: 0.85;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ===== INSIGHTS SECTION ===== */
.insights-section {
  padding: 70px 0 80px;
  background: #f8f8f8;
}

/* ===== INSIGHT CARD ===== */
.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 8px;
  padding: 30px 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(27,67,50,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27,67,50,0.12);
}

/* File type icon */
.insight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1B4332;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-icon i {
  font-size: 1.4rem;
  color: #FFCA29;
}

/* PDF — red tint */
.insight-icon i.fa-file-pdf    { color: #ff6b6b; }
/* Word — blue tint */
.insight-icon i.fa-file-word   { color: #5BB8F5; }
/* Excel — green tint */
.insight-icon i.fa-file-excel  { color: #6bcb77; }
/* PowerPoint — orange tint */
.insight-icon i.fa-file-powerpoint { color: #FFCA29; }

/* Card body */
.insight-body {
  flex: 1;
}

.insight-date {
  font-size: 0.78rem;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.insight-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B4332;
  margin: 0 0 10px;
  line-height: 1.3;
}

.insight-text {
  font-size: 0.95rem;
  color: #696969;
  line-height: 1.7;
  margin: 0 0 16px;
}

.insight-list {
  font-size: 0.95rem;
  color: #696969;
  line-height: 1.7;
  margin: 0 0 16px;
  padding-left: 20px;
}

.insight-list li {
  margin-bottom: 6px;
}

/* Download button */
.insight-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1B4332;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.3px;
}

.insight-download:hover {
  background: #FFCA29;
  color: #1B4332;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .insight-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }
}
