/* ===================== Insights Page ===================== */

.insights-page {
  background: var(--cream);
}

/* Hero split */
.insights-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.insights-hero-content {
  background: var(--dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.insights-hero-inner {
  max-width: 520px;
}

.insights-hero-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.insights-hero-content h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.insights-hero-content h1 .accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.insights-hero-content h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: var(--orange);
}

.insights-hero-desc {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 400px;
}

.insights-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.insights-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Grid */
.insights-grid-section {
  background: #ffffff;
  padding: 48px 0 56px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.insight-card {
  background: #ffffff;
  border: 1px solid rgba(39, 35, 32, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.insight-card:hover {
  box-shadow: 0 8px 28px rgba(39, 35, 32, 0.10);
  transform: translateY(-2px);
}

.insight-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.insight-card:hover .insight-card__image img {
  transform: scale(1.04);
}

.insight-card__body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.insight-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.insight-card__category {
  color: var(--text-dark);
}

.insight-card__title {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: var(--text-dark);
}

.insight-card__title a {
  transition: color 0.2s;
}

.insight-card__title a:hover {
  color: var(--orange);
}

.insight-card__excerpt {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.insight-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--orange);
  transition: color 0.2s;
}

.insight-card__link:hover {
  color: var(--orange-dark);
}

/* CTA bar */
.insights-cta {
  background: var(--cream-2);
  padding: 28px 0;
  border-top: 1px solid rgba(39, 35, 32, 0.06);
}

.insights-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.insights-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.insights-cta-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-cta-text p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
  max-width: 480px;
}

.insights-cta-text strong {
  font-weight: 800;
}

.insights-cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--orange);
  white-space: nowrap;
  transition: color 0.2s;
}

.insights-cta-phone svg {
  flex-shrink: 0;
}

.insights-cta-phone:hover {
  color: var(--orange-dark);
}

/* ===================== Responsive ===================== */

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

  .insights-hero-content {
    padding: 44px 0;
  }

  .insights-hero-media {
    min-height: 260px;
    max-height: 320px;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .insights-hero-content h1 {
    font-size: 30px;
  }

  .insights-hero-desc {
    font-size: 14px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insights-cta-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .insights-cta-phone {
    font-size: 20px;
  }
}
