.ppp-learn-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 20px 60px;
}

.ppp-learn-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 35px;
}

.ppp-learn-hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #111827;
}

.ppp-learn-hero p {
  font-size: 19px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.ppp-learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ppp-learn-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e0ec;
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ppp-learn-card-image{
  width:100%;
  height:68px;
  overflow:hidden;
  border-radius:12px;
  margin-bottom:16px;
  background:#f7f3fb;
}

.ppp-learn-card-image img{
  display:block;
  width:100%;
  height:68px;
  object-fit:cover;
}

.ppp-learn-card:hover {
  transform: translateY(-3px);
  border-color: #6b35b6;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.ppp-learn-icon svg {
  width: 34px;
  height: 34px;
  stroke: #6b21a8;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ppp-learn-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f1e9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 18px;
}

.ppp-learn-card h2 {
  font-size: 22px;
  margin: 0 0 10px;
}

.ppp-learn-card p {
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 24px;
}

.ppp-learn-card span {
  color: #4b148c;
  font-weight: 600;
}

.ppp-learn-cta {
  margin-top: 28px;
  background: #f3eafb;
  border-radius: 14px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ppp-learn-cta h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.ppp-learn-cta p {
  margin: 0;
  color: #4b5563;
}

.ppp-learn-cta a {
  background: #6b35b6;
  color: #fff;
  padding: 12px 28px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.ppp-learn-eyebrow {
  margin: 0 0 10px;
  color: #6b21a8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ppp-learn-icon svg {
  width: 34px;
  height: 34px;
  stroke: #6b21a8;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .ppp-learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ppp-learn-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .ppp-learn-grid {
    grid-template-columns: 1fr;
  }

  .ppp-learn-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppp-learn-hero h1 {
    font-size: 30px;
  }
}