.dynnt-timeline {
  --dynnt-circle: 48px;
  --dynnt-line-w: 2px;
  --dynnt-gap: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dynnt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--dynnt-gap);
}

.dynnt-item {
  display: flex;
  align-items: stretch;
  gap: 16px;
  position: relative;
}

.dynnt-marker {
  position: relative;
  flex: 0 0 var(--dynnt-circle);
  width: var(--dynnt-circle);
  align-self: stretch;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.dynnt-timeline.has-line .dynnt-item:not(:last-child) .dynnt-marker::before {
  content: '';
  position: absolute;
  top: var(--dynnt-circle);
  left: 50%;
  width: var(--dynnt-line-w);
  height: calc(100% - var(--dynnt-circle) + var(--dynnt-gap));
  transform: translateX(-50%);
  background-color: #d0d0d0;
  z-index: 0;
}

.dynnt-circle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--dynnt-circle);
  height: var(--dynnt-circle);
  border-radius: 50%;
  background-color: #5c2d91;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  box-sizing: border-box;
  flex-shrink: 0;
}

.dynnt-card {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

a.dynnt-card:hover {
  text-decoration: none;
}

.dynnt-title {
  margin: 0 0 6px;
  color: #5c2d91;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.dynnt-desc {
  margin: 0;
  color: #5c2d91;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .dynnt-timeline {
    --dynnt-circle: 40px;
  }

  .dynnt-desc {
    font-size: 13px;
  }
}
