/* ===== Latest Insights — sliding cards row ===== */
.insights-slider {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.insights-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: insights-slide 75s linear infinite;
  will-change: transform;
}

.insights-slider:hover .insights-slider-track,
.insights-slider:focus-within .insights-slider-track {
  animation-play-state: paused;
}

@keyframes insights-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.insights-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.insights-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.08);
}

.insights-card .card-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.insights-card .card-date {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insights-card .card-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: #2dd4bf;
  background: rgba(20, 184, 166, 0.12);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insights-card h4 {
  color: #f1f5f9;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 0.6rem;
}

.insights-card h4 a {
  color: inherit;
  text-decoration: none;
}

.insights-card h4 a:hover {
  color: #2dd4bf;
}

.insights-card p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insights-card .read-more {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
}

.insights-card .read-more:hover {
  color: #2dd4bf;
}

@media (prefers-reduced-motion: reduce) {
  .insights-slider-track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .insights-card {
    flex: 0 0 280px;
  }
}
