/* =========================
   Market Insights Section
   ========================= */
.market {
  padding: 5rem 0;
  background: #ffffff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #646464;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #646464;
  max-width: 700px;
  margin: 2rem auto 3rem;
  font-weight:lighter;
}

.market-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 50px;
  margin-right: 50px;
}

.stat-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.stat-card img {
  height: 72px;
  width: auto;
  margin-bottom: 1.2rem;
}

.stat-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #10D3E2; /* brand color */
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1rem;
  color: #374151;
}

/* Note text */
.market-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 2rem;
}

/* =========================
   Mobile Responsive (Market)
   ========================= */
@media (max-width: 768px) {
  .market {
    padding: 1rem 1rem;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 1rem;
    margin: 1rem auto 2rem;
    padding: 0 1rem;
  }

  .market-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .stat-card {
    flex: 1 1 100%;
    padding: 1.5rem;
    margin-left: 15%;
    margin-right: 15%;
  }

  .stat-card h3 {
    font-size: 1.4rem;
  }

  .stat-card p {
    font-size: 0.95rem;
  }
}
