/* SECTION */
.commitment-section {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

/* GRID */
.commitment-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.commitment-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 1;
  border: 1px solid rgb(186, 158, 212);
}

/* HOVER EFFECT */
.commitment-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* TEXT */
.text-fourth-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);   /* brand blue #1773d0 */
}

.text-general {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);  /* readable slate #475569 */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:770px) {
  .commitment-section {
    padding: 0px 20px 80px 20px !important;
  }
}

@media (max-width: 640px) {
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .commitment-section {
    padding: 60px 16px;
  }
}