/* Shared Learning Path section (homepage + programs page) */

.lp-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #ffffff;
}

.lp-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.lp-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-700);
}

.lp-intro h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary-800);
}

.lp-intro p {
  margin: 0 auto;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.lp-steps li {
  position: relative;
  min-height: 214px;
  padding: 28px 22px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f5faf9);
  border: 1px solid rgba(15, 118, 110, 0.13);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lp-steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.1);
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--primary-700);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(15, 118, 110, 0.2);
}

.lp-steps h3 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.lp-steps p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.lp-footer {
  margin-top: 40px;
  text-align: center;
}

.lp-footer-text {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--primary-700);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lp-cta svg {
  width: 18px;
  height: 18px;
}

.lp-cta:hover {
  transform: translateY(-2px);
  background: var(--primary-800);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

@media (max-width: 980px) {
  .lp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-steps li {
    min-height: 0;
  }
}
