.wf-timeline{
  --wf-accent: #0054A9;
  font-family: inherit;
}

.wf-timeline .wf-track{
  position: relative;
  display: flex;
  gap: 18px;
}

.wf-timeline.wf-vertical .wf-track{
  flex-direction: column;
  gap: 22px;
  padding-left: 18px;
}

.wf-timeline.wf-horizontal{
  overflow-x: auto;
  padding: 8px 0 14px;
}

.wf-timeline.wf-horizontal .wf-track{
  flex-direction: row;
  align-items: stretch;
  min-width: 700px;
  padding-bottom: 8px;
}

.wf-timeline.wf-compact .wf-track{ gap: 14px; }

.wf-timeline.wf-vertical .wf-track::before{
  content:"";
  position:absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--wf-accent) 35%, #ffffff);
}

.wf-timeline.wf-horizontal .wf-track::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 2px;
  background: color-mix(in srgb, var(--wf-accent) 35%, #ffffff);
}

.wf-node{
  position: relative;
  display: flex;
  gap: 12px;
}

.wf-timeline.wf-horizontal .wf-node{
  flex-direction: column;
  min-width: 260px;
  padding-top: 6px;
}

.wf-dot{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--wf-accent) 65%, #ffffff);
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.wf-dot .dashicons{
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: var(--wf-accent);
}

.wf-timeline.wf-horizontal .wf-dot{
  margin-left: 0;
  align-self: flex-start;
}

.wf-node .wf-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  width: 100%;
}

.wf-title{
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  margin: 2px 0 6px;
}

.wf-date{
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--wf-accent) 10%, #ffffff);
  color: color-mix(in srgb, var(--wf-accent) 85%, #000000);
}

.wf-text{
  font-size: 14px;
  line-height: 1.55;
  opacity: .92;
}

.wf-timeline.wf-hide-dates .wf-date{ display:none; }

/* Styles */
.wf-timeline.wf-style-1 .wf-card{
  border-left: 4px solid var(--wf-accent);
}

.wf-timeline.wf-style-2 .wf-card{
  box-shadow: none;
  border: 1px solid rgba(0,0,0,.10);
}
.wf-timeline.wf-style-2 .wf-dot{
  box-shadow: none;
}

.wf-timeline.wf-style-3 .wf-date{
  background: var(--wf-accent);
  color: #fff;
}
.wf-timeline.wf-style-3 .wf-card{
  border: 1px solid color-mix(in srgb, var(--wf-accent) 30%, #ffffff);
}
