/* ═══════════════════════════════════════════════════════════════════════
   INSIGHTS PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Hero ──────────────────────────────────────────────────────────── */

.insights-hero {
  background: #FAFAFA;
  padding: 40px 24px 60px;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
}

.insights-hero-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.insights-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 9999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #5a7c3b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.insights-hero h1 {
  font-family: 'Zilla Slab', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111111;
  margin: 0;
}

.insights-hero h1 .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: #5a7c3b;
  font-style: italic;
  font-size: 1.15em;
}

.insights-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(0,0,0,0.6);
  max-width: 640px;
  margin: 0;
}

/* ─── Grid Section ──────────────────────────────────────────────────── */

.insights-section {
  padding: 64px 24px 100px;
  background: #f5f5f5;
}

.insights-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* ─── Featured Card (First Article) ────────────────────────────────── */

.insight-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  min-height: 400px;
}

.insight-card-featured:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.insight-card-featured:hover .insight-card-image-wrap img {
  transform: scale(1.04);
}

.insight-card-featured .insight-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.insight-card-featured .insight-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.insight-card-featured .insight-card-body {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.insight-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a7c3b;
}

.insight-featured-dot {
  width: 6px;
  height: 6px;
  background: #5a7c3b;
  border-radius: 50%;
  display: inline-block;
}

.insight-card-featured h2 {
  font-family: 'Zilla Slab', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0;
}

.insight-card-featured p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
  margin: 0;
}

.insight-card-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.insight-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #5a7c3b;
  text-decoration: none;
}

.insight-read-link svg {
  transition: transform 0.2s ease;
}

.insight-card-featured:hover .insight-read-link svg {
  transform: translateX(4px);
}

/* ─── Grid ──────────────────────────────────────────────────────────── */

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

/* ─── Regular Card ──────────────────────────────────────────────────── */

.insight-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.insight-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.11);
  transform: translateY(-4px);
}

/* Image wrapper */
.insight-card-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.insight-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.insight-card:hover .insight-card-image-wrap img {
  transform: scale(1.06);
}

/* Category overlay on image */
.insight-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #5a7c3b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-card-body {
  padding: 22px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insight-card-readtime {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.4);
}

.insight-card h2 {
  font-family: 'Zilla Slab', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #111111;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.58);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card-footer {
  padding: 14px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: auto;
}

.insight-card-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(90,124,59,0.07);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #5a7c3b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-card-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90,124,59,0.07);
  border-radius: 50%;
  color: #5a7c3b;
  transition: background 0.2s ease, transform 0.2s ease;
}

.insight-card:hover .insight-card-arrow {
  background: #5a7c3b;
  color: white;
  transform: translateX(2px);
}

/* ─── Empty ─────────────────────────────────────────────────────────── */

.insights-empty {
  text-align: center;
  padding: 80px 24px;
}

.insights-empty h2 {
  font-family: 'Zilla Slab', serif;
  font-size: 28px;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  margin: 0 0 12px;
}

.insights-empty p {
  font-size: 16px;
  color: rgba(0,0,0,0.45);
}

/* ─── Mobile ─────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .insights-hero {
    padding: 40px 20px 40px;
  }

  .insights-hero h1 {
    font-size: 32px;
  }

  .insights-hero p {
    font-size: 15px;
  }

  .insight-card-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .insight-card-featured .insight-card-image-wrap {
    height: 240px;
  }

  .insight-card-featured .insight-card-body {
    padding: 28px 24px 28px;
  }

  .insight-card-featured h2 {
    font-size: 24px;
  }

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

  .insight-card-image-wrap {
    height: 200px;
  }

  .insights-section {
    padding: 40px 20px 80px;
  }
}
