.tb-native-timeline-host {
  min-height: 138px;
  overflow: hidden;
  background: linear-gradient(180deg,#0d0c0a,#070706);
}
.tb-native-timeline {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 138px;
  padding: 36px 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-color: rgba(212,180,99,.42) #080705;
}
.tb-native-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg,rgba(212,180,99,.18),rgba(212,180,99,.65),rgba(212,180,99,.18));
}
.tb-native-timeline-event {
  position: relative;
  flex: 0 0 178px;
  min-height: 76px;
  padding: 10px 11px;
  border: 1px solid #6f6758;
  border-radius: 3px;
  background: linear-gradient(180deg,#171510,#0e0d0b);
  color: #eee6d5;
  font-family: 'Times New Roman',serif;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.24);
}
.tb-native-timeline-event::before {
  content: '';
  position: absolute;
  top: -17px;
  left: 18px;
  width: 7px;
  height: 7px;
  border: 2px solid #0d0c0a;
  border-radius: 50%;
  background: #d4b463;
  box-shadow: 0 0 0 1px rgba(212,180,99,.55);
}
.tb-native-timeline-event:hover,.tb-native-timeline-event:focus-visible,.tb-native-timeline-event.is-selected {
  border-color: #d4b463;
  color: #f4d987;
  outline: none;
}
.tb-native-timeline-year {
  display: block;
  margin-bottom: 5px;
  color: #d4b463;
  font-family: 'Cinzel',serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tb-native-timeline-title { display: block; font-size: 12.5px; line-height: 1.25; }
