/* Start custom CSS for html, class: .elementor-element-536835a */.wfc-programs {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 20px;
  color: #222;
}

.wfc-program-title {
  text-align: center;
  margin-bottom: 46px;
}

.wfc-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9f2525;
}

.wfc-program-title h2 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #111;
}

.wfc-program-title p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  color: #777;
}

.wfc-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.wfc-program-card {
  position: relative;
  min-height: 275px;
  padding: 28px 26px;
  border: 1px solid #eadada;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  box-shadow: 0 10px 24px rgba(60, 30, 20, 0.045);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: wfcFadeUp 0.7s ease both;
}

.wfc-program-card:nth-child(1) { animation-delay: 0.05s; }
.wfc-program-card:nth-child(2) { animation-delay: 0.1s; }
.wfc-program-card:nth-child(3) { animation-delay: 0.15s; }
.wfc-program-card:nth-child(4) { animation-delay: 0.2s; }
.wfc-program-card:nth-child(5) { animation-delay: 0.25s; }
.wfc-program-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes wfcFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wfc-program-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(159, 37, 37, 0.055);
  transition: all 0.28s ease;
}

.wfc-program-card::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 24px;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: #9f2525;
  opacity: 0.25;
  transition: width 0.28s ease, opacity 0.28s ease;
}

.wfc-program-card:hover {
  transform: translateY(-7px);
  border-color: #9f2525;
  box-shadow: 0 18px 38px rgba(60, 30, 20, 0.12);
}

.wfc-program-card:hover::before {
  transform: scale(1.25);
  background: rgba(159, 37, 37, 0.09);
}

.wfc-program-card:hover::after {
  width: 86px;
  opacity: 1;
}

.wfc-program-card.featured {
  background: #fbf0f0;
  border-color: #dfbcbc;
}

.wfc-program-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.wfc-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #9f2525;
}

.wfc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid #eadada;
  border-radius: 999px;
  background: #fff;
  color: #9f2525;
  font-size: 13px;
  font-weight: 800;
}

.wfc-program-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.035em;
  color: #222;
}

.wfc-program-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: -0.025em;
  color: #555;
}

@media (max-width: 1024px) {
  .wfc-program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wfc-programs {
    padding: 52px 18px;
  }

  .wfc-program-title h2 {
    font-size: 32px;
  }

  .wfc-program-title p {
    font-size: 15px;
  }

  .wfc-program-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wfc-program-card {
    min-height: auto;
    padding: 24px 22px 54px;
    border-radius: 20px;
  }

  .wfc-program-card h3 {
    font-size: 19px;
  }

  .wfc-program-card p {
    font-size: 14px;
  }
}/* End custom CSS */