.paragraph.paragraph--type--timeline-item .date-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 0;
  position: relative;
  z-index: 4;
}
.paragraph.paragraph--type--timeline-item .date-wrapper span {
  display: block;
  font-family: "DM Sans", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  font-size: 3.438rem;
  line-height: 3.75rem;
  font-weight: 700;
  color: var(--dark-blue);
  position: relative;
/*  background: var(--lightblue-bg);*/
  padding-bottom: 15px;
  padding-top: 10px;
}
.paragraph.paragraph--type--timeline-item .date-wrapper span:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  background: var(--dark-blue);
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
}
.paragraph.paragraph--type--timeline-item .content-wrapper {
  border-radius: var(--radius-m);
  background: #fff;
  padding: 40px;
  width: calc(50% - 120px);
  box-shadow: var(--shadow-l);
  position: relative;
}
.paragraph.paragraph--type--timeline-item .content-wrapper:after {
  content: "";
  display: block;
  height: 4px;
  background-image: url("../../img/graphics/line/horizontal.svg");
  background-repeat: repeat-x;
  background-position: right center;
  position: absolute;
  right: -120px;
  top: 160px;
  z-index: -1 !important;
}
.paragraph.paragraph--type--timeline-item .content-wrapper .title {
  font-family: "DM Sans", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 2.25rem;
  color: var(--dark-blue);
}
.paragraph.paragraph--type--timeline-item .content-wrapper .body {
  font-family: "DM Sans", Arial, Helvetica, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  color: var(--cfont);
  font-weight: 400;
  margin: 1.8rem auto;
}

@media only screen and (max-width: 760px) {
  .paragraph.paragraph--type--timeline-item .content-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
  }
}/*# sourceMappingURL=paragraph--timeline-item.css.map */