.lntw-widget {
  position: relative;
}

.lntw-timeline {
  position: relative;
  margin: 0;
  padding: 0;
}

.lntw-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px; /* Timeline line position */
  width: 2px;
  background-color: #000;
  z-index: 1;
}

.lntw-item {
  position: relative;
  padding-left: 40px; /* Space for dot and line */
  margin-bottom: 30px;
}

.lntw-dot {
  position: absolute;
  top: 4px;
  left: 9px; /* 15px line - 6px (half of 12px dot) */
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: 2;
}

.lntw-item:first-child .lntw-dot {
  background-color: #000;
}

.lntw-meta {
  font-size: 13px;
  color: #555;
}

.lntw-title {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  margin-top: 4px;
}

.lntw-desc {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}
.lntw-title a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.lntw-title a:hover {
  text-decoration: underline;
}