.tl-188f04c2-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  --tl-rail-width: 40px;
  --tl-date-width: 140px;
  --tl-col-gap: 24px;
  --tl-item-gap: 40px;
  --tl-line-width: 2px;
  --tl-line-color: #cdd6e0;
  --tl-line-style: solid;
}

.tl-188f04c2-item {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: var(--tl-item-gap);
  padding: 0;
  list-style: none;
}

.tl-188f04c2-item:last-child {
  margin-bottom: 0 !important;
}

/* Rail Area */
.tl-188f04c2-rail {
  width: var(--tl-rail-width);
  min-width: var(--tl-rail-width);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  order: 2;
}

.tl-188f04c2-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: calc(-1 * var(--tl-item-gap));
  left: 50%;
  width: var(--tl-line-width);
  background-color: var(--tl-line-color);
  border-left: var(--tl-line-width) var(--tl-line-style) var(--tl-line-color);
  transform: translateX(-50%);
  z-index: 0;
}

.tl-188f04c2-item--last .tl-188f04c2-rail::before {
  display: none !important;
}

/* Dots Styling */
.tl-188f04c2-dot {
  position: relative;
  border-radius: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.tl-188f04c2-dot svg {
  fill: currentColor;
}

/* Date Range Area */
.tl-188f04c2-date {
  width: var(--tl-date-width);
  min-width: var(--tl-date-width);
  order: 1;
  padding-top: 2px;
}

/* Content Details Area */
.tl-188f04c2-content {
  flex-grow: 1;
  order: 3;
  padding-top: 2px;
}

.tl-188f04c2-heading {
  margin: 0;
  font-weight: 700;
}

.tl-188f04c2-subheading {
  margin: 0;
}

.tl-188f04c2-description {
  margin-top: 10px;
}

.tl-188f04c2-description ul {
  padding-left: 20px;
  list-style-type: disc;
  margin: 10px 0;
}

/* Mobile Responsiveness / Stack layout */
@media (max-width: 767px) {
  .tl-188f04c2-stack-yes .tl-188f04c2-item {
    flex-direction: column !important;
  }
  
  .tl-188f04c2-stack-yes .tl-188f04c2-rail {
    display: none; /* Hide vertical rail on pure stacked view if desired, or let it stay left */
  }
  
  .tl-188f04c2-stack-yes .tl-188f04c2-date {
    width: 100% !important;
    min-width: 100% !important;
    margin-bottom: 8px;
  }
  
  .tl-188f04c2-stack-yes .tl-188f04c2-content {
    width: 100% !important;
  }
}

/* Fallback/Grid or gap spacings on non-stacked screen sizes */
@media (min-width: 768px) {
  .tl-188f04c2-item {
    gap: var(--tl-col-gap);
  }
}
