* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section.light {
  background: #ffffff;
}

.section.soft {
  background: linear-gradient(180deg, #f8fafc, #eef3ff);
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

/* Glow lighting effects */
.insights-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(96,165,250,.35), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(56,189,248,.25), transparent 60%);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}


/* FEATURED ARTICLE */
.featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-body {
  color: #475569;
  margin-bottom: 25px;
}

.featured-img img {
  width: 100%;
  height: auto;
  max-height: 420px;  /* adjust height freely */
  object-fit: cover;
  border-radius: 14px;
}

/* INSIGHTS GRID */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.insight-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
}

.insight-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 14px 0 10px;
}

.insight-body {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.insight-link {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

/* TRENDS */
.trends-grid {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 5px;
}

.trend-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);

  min-width: 250px;
  flex: 0 1 auto;
}

.trend-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* NEWSLETTER */
.newsletter-section {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 90px 20px;
  text-align: center;
  color: #ffffff;
}

.newsletter-inner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.newsletter-form {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.newsletter-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  outline: none;
  width: 300px;
  background: #fff;
  color: #0f172a;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
  transition: 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width: 1024px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .insights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trends-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero-title {
    font-size: 2.3rem;
  }
}