.gtv-vertical-timeline {
  position: relative;
  padding: 20px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline-grid;
  align-items: center;
  justify-content: center;
}

/* The vertical line */
.gtv-timeline-line {
  position: absolute;
  left: 40px; /* Center of the 80px left column */
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #1e4e8c; /* Default blue */
  transform: translateX(-50%);
  z-index: 0;
}

.gtv-timeline-item {
  display: flex;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

.gtv-timeline-item:last-child {
  margin-bottom: 0;
}

/* Left column with Icon and Date */
.gtv-timeline-left {
  padding-top: 15px;
  border-right: 2px solid #4f7fbb;
  width: 150px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent; /* Ensure it doesn't hide the line if not needed, but icons need bg */
}

.gtv-timeline-left:after {
  content: " ";
  position: absolute;
  right: -10px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #4f7fbb;
  z-index: 9999;
}

.gtv-timeline-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #75b7e4; /* Default light blue */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
  z-index: 2; /* Above the line */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow:hidden;
	padding: 7px;
}

.gtv-timeline-icon-wrapper i,
.gtv-timeline-icon-wrapper svg {
  width: 1em;
  height: 1em;
}

.gtv-timeline-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.gtv-timeline-date {
  font-weight: 700;
  font-size: 14px;
  color: #333;
  text-align: center;
  background-color: #ffffff00; /* Optional: background to clear line if date overlaps? No, date is below icon */
  padding: 2px 5px;
  border-radius: 4px;
}

/* Right content area */
.gtv-timeline-content-wrapper {
  /* flex-grow: 1; */
  padding-left: 30px;
  position: relative;
}

/* The Arrow */
.gtv-timeline-arrow {
  position: absolute;
  left: 15px; /* Adjust based item_iconon padding */
  top: 15px; /* Align with title */
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #1e4e8c; /* Matches title color usually */
}

.gtv-timeline-content {
  background-color: #f9f9f9; /* Light gray background for content box? Or transparent? Image looks like transparent on a gray page bg. Let's make it transparent for now. */
  background-color: transparent;
  padding: 0;
  max-width: 650px;
}

.gtv-timeline-title:after {
  content: " ";
  display: block;
  width: 80%;
  height: 1px;
  background-color: #3e3e3e;
  margin-top: 20px;
  max-width: 500px;
}

.gtv-timeline-title {
  margin: 15px 0 15px 0;
  font-size: 18px;
  font-weight: 700;
  color: #172e55;
  /* border-bottom: 2px solid #ddd; */
  padding-bottom: 10px;
  display: inline-block; /* Or block if full width underline */
  width: 100%;
}

.gtv-timeline-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.gtv-timeline-desc ul {
  padding-left: 20px;
  margin: 0;
  list-style-type: disc;
}

.gtv-timeline-desc li {
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 767px) {
  .gtv-timeline-item {
    flex-direction: column;
  }

  .gtv-timeline-left {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 15px;
    padding-left: 20px; /* Align with content */
  }

  .gtv-timeline-line {
    left: 45px; /* Adjust for mobile layout if needed */
    /* Or hide line on mobile? */
  }

  .gtv-timeline-icon-wrapper {
    margin-right: 15px;
    margin-bottom: 0;
  }

  .gtv-timeline-content-wrapper {
    padding-left: 60px; /* Indent content under icon */
  }

  .gtv-timeline-arrow {
    display: none; /* Hide arrow on mobile usually */
  }
}
