<!-- ✅ CSS -->
challenge-section {
  padding: 60px 0px;
  text-align: center;
}

.challenge-subtitle {
  color: #039FD8;
  font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 18px;
line-height: 140%;
letter-spacing: 0px;

}

.challenge-title {
  margin: 0 0 40px;
  font-family: DM Sans;
font-weight: 250;
font-style: ExtraLight;
font-size: 60px;
line-height: 130%;
letter-spacing: 0px;
vertical-align: middle;

}

.challenge-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.challenge-item {
  background: linear-gradient(108deg, #0A4672 0%, #0092FF 93.92%, #0A4672 176%);
  color: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  width: calc(25% - 15px);
  box-sizing: border-box;
}

.challenge-number {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

.challenge-text {
  font-family: DM Sans;
font-weight: 300;
font-style: Light;
font-size: 18px;
line-height: 150%;
letter-spacing: 0px;
text-align: center;

}

/* ✅ Tablet */
@media (max-width: 1024px) {
  .challenge-item {
    width: calc(50% - 10px);
  }
}

/* ✅ Mobile */
@media (max-width: 667px) {
  .challenge-item {
    width: 100%;
  }
  
  .challenge-title {
  margin: 0 0 40px;
  font-family: DM Sans;
font-weight: 250;
font-style: ExtraLight;
font-size: 32px;
line-height: 130%;
letter-spacing: 0px;
vertical-align: middle;

}
}

/* ✅ Landscape Mobile */
@media (min-width: 568px) and (max-width: 767px) {
  .challenge-item {
    width: calc(50% - 10px);
  }
}