.insights-hub {
  background-color: var(--color-wimper-light);
  min-height: 80vh;
  padding-bottom: 4rem;
}

.insights-header-bar {
  background-color: var(--color-wimper-navy);
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.insights-header-bar h1 {
  color: white;
  font-size: var(--text-4xl);
  margin: 0;
  font-weight: bold;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.insight-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.insight-card h3 {
  font-size: var(--text-2xl);
  color: var(--color-wimper-navy);
  margin-top: 0;
  margin-bottom: 1rem;
}

.insight-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.insight-card .read-more {
  color: var(--color-wimper-navy);
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--text-sm);
}
