.lmn-timeline-list .timeline-card {
  background-color: #f2f6fa;
  border: 1px solid #e0ebf3;
  border-radius: 5px;
  padding: 40px 30px 40px 40px;
  margin-bottom: 6rem;
  box-shadow: 0 10px 30px rgba(23, 84, 139, 0.04);
  margin-top: 0;
}
.lmn-timeline-list {
  /* Dashed Vertical Line Connecting the Items */
}
.lmn-timeline-list .timeline-list {
  position: relative;
  padding-left: 32px;
  border-left: 2px dashed #a3c2de;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.lmn-timeline-list .timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.lmn-timeline-list {
  /* Base Node Styling */
}
.lmn-timeline-list .timeline-node {
  position: absolute;
  left: -40px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #00aeee;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 3px #008cd2;
  /* Apply the sequential pulse animation (10s total loop) */
  animation: pulse-expand 10s infinite ease-in-out;
  /* Stagger the animation so dots expand one by one */
}
.lmn-timeline-list .timeline-node.node-1 {
  animation-delay: 0s;
}
.lmn-timeline-list .timeline-node.node-2 {
  animation-delay: 2.5s;
}
.lmn-timeline-list .timeline-node.node-3 {
  animation-delay: 4.5s;
}
.lmn-timeline-list .timeline-node.node-4 {
  animation-delay: 6.5s;
}
.lmn-timeline-list .timeline-node.node-5 {
  animation-delay: 8.5s;
}
.lmn-timeline-list .timeline-node.node-6 {
  animation-delay: 10.5s;
}
.lmn-timeline-list .timeline-node.node-7 {
  animation-delay: 12.5s;
}
.lmn-timeline-list .timeline-node.node-8 {
  animation-delay: 14.5s;
}
.lmn-timeline-list {
  /* Typography Styling */
}
.lmn-timeline-list .timeline-text {
  font-size: 1.8rem;
  color: #4a637c;
  line-height: 1.6;
  transform: translateY(-5px);
}
.lmn-timeline-list .timeline-text strong {
  color: #1E60AA;
  font-weight: 700;
}

/* Keyframe for the expanding dot + concentric bubble ripple */
/* Note: Keyframes are kept outside the nested block so they compile globally */
@keyframes pulse-expand {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 3px #008cd2, 0 0 0 3px rgba(0, 174, 238, 0);
  }
  10% {
    transform: scale(1.35);
    box-shadow: 0 0 0 3px #008cd2, 0 0 0 10px rgba(0, 174, 238, 0.4);
  }
  25% {
    transform: scale(1);
    box-shadow: 0 0 0 3px #008cd2, 0 0 0 18px rgba(0, 174, 238, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px #008cd2, 0 0 0 3px rgba(0, 174, 238, 0);
  }
}/*# sourceMappingURL=block-timeline-list.css.map */