/**
 * Laureate Our Commitment Section Stylesheet
 *
 * @package Laureate
 * @version 1.0.0
 */

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

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

.evo-commitment-container {
  max-width: 1280px;
  margin: 0 auto;
}

.evo-commitment-head {
  text-align: center;
  margin-bottom: 40px;
}

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

.evo-commitment-head h2 {
  color: #0a2248;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
}

.evo-commitment-head p {
  color: #475569;
  font-size: 16px;
  margin: 0;
}

.evo-commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.evo-commit-card {
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(10, 34, 72, 0.04);
}

.evo-commit-card:hover {
  transform: translateY(-5px);
  border-color: #1d960c;
  box-shadow: 0 15px 35px rgba(29, 150, 12, 0.1);
}

.evo-commit-icon {
  width: 50px;
  height: 50px;
  background: rgba(29, 150, 12, 0.1);
  color: #1d960c;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: 0.3s ease;
}

.evo-commit-card:hover .evo-commit-icon {
  background: #1d960c;
  color: #ffffff;
}

.evo-commit-card p {
  color: #0a2248;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
