/**
 * Laureate Explore Education Stats Grid Stylesheet
 *
 * @package Laureate
 * @version 1.0.0
 */

.evo-explore-section,
.evo-explore-section * {
  box-sizing: border-box;
}

.evo-explore-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
}

.evo-explore-container {
  max-width: 1100px;
  margin: 0 auto;
}

.evo-explore-head {
  text-align: center;
  margin-bottom: 60px;
}

.evo-adv-badge {
  display: inline-block;
  background: rgba(29, 150, 12, 0.12);
  color: #1d960c;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: normal;
}

.evo-explore-head h2 {
  color: #0a2248;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.evo-explore-head p {
  color: #667085;
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Stats Grid */
.evo-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.evo-stat-item {
  background: #f4f8fc;
  border: 1px solid #e6edf5;
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s ease;
}

.evo-stat-item:hover {
  background: #0a2248;
  transform: translateY(-5px);
}

.evo-stat-item h3 {
  color: #1d960c;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.evo-stat-item p {
  color: #42526b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  transition: 0.3s ease;
}

.evo-stat-item:hover h3 {
  color: #ffffff;
}

.evo-stat-item:hover p {
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .evo-explore-section {
    padding: 60px 18px;
  }
  .evo-explore-head h2 {
    font-size: 28px;
  }
}
