/*==================================================
LEARNING
==================================================*/

.learning {
  padding: 120px 0;

  background: var(--primary-soft);
}

.learning-timeline {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;

  position: relative;
}

.learning-timeline::before {
  content: "";

  position: absolute;

  top: 28px;

  left: 12%;

  right: 12%;

  height: 2px;

  background: var(--primary-alpha-18);
}

.timeline-card {
  position: relative;

  background: var(--white);

  padding: 48px 30px 30px;

  border-radius: var(--radius-lg);

  text-align: center;

  box-shadow: var(--shadow-sm);

  transition: var(--normal);
}

.timeline-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-md);
}

.timeline-dot {
  width: 20px;

  height: 20px;

  margin: 0 auto 24px;

  border-radius: var(--radius-round);

  background: var(--primary);

  border: 5px solid var(--white);

  box-shadow: var(--shadow-ring-md);
}

.timeline-card h3 {
  color: var(--primary);

  margin-bottom: 8px;

  font-size: 1.3rem;
}

.timeline-card h4 {
  margin-bottom: 16px;

  font-size: 1.15rem;
}

.timeline-card p {
  margin-bottom: 0;
}
