.page-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
}

.insights-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}

.insights-main {
  min-width: 0;
}

.insight-card {
  background: var(--bg-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  margin-bottom: 2rem;
}

.insight-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.insight-card.featured {
  border: 2px solid var(--accent-gold);
}

.insight-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 2/1;
  background: var(--bg-light);
}

.image-placeholder svg {
  width: 100%;
  height: 100%;
}

.insight-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.insight-content {
  padding: 2rem;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.insight-category {
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
}

.insight-date,
.insight-read-time {
  color: var(--text-light);
}

.insight-card h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.insight-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.insight-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.insight-link {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast);
}

.insight-link:hover {
  gap: 1rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.insights-grid .insight-card {
  margin-bottom: 0;
}

.insights-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.sidebar-widget {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.sidebar-widget p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all var(--transition-fast);
}

.category-list a:hover {
  background: var(--bg-white);
  color: var(--primary-blue);
  padding-left: 1rem;
}

.category-list span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.cta-widget {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
}

.cta-widget h3 {
  color: white;
}

.cta-widget p {
  color: rgba(255, 255, 255, 0.95);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gray);
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

@media (max-width: 1024px) {
  .insights-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .insights-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card h2 {
    font-size: 1.5rem;
  }

  .insight-content {
    padding: 1.5rem;
  }
}
