@charset "UTF-8";

.timeline {
  margin: 2em auto;
  position: relative;
  max-width: 70em;
	padding: 0;
}
.timeline:before {
  background-color: black;
  content: "";
  margin-left: -1px;
  position: absolute;
  top: 0;
  left: 1em;
  width: 2px;
  height: 100%;
}

.timeline-event {
  position: relative;
	list-style: none;
}
.timeline li:last-child .timeline-event-copy{
	padding-bottom: 0;
}
.timeline-event:hover .timeline-event-icon {
  transform: rotate(-45deg);
  background-color: #a83279;
}
.timeline-event:hover .timeline-event-thumbnail {
  box-shadow: inset 40em 0 0 0 #a83279;
}

.timeline-event-copy {
  padding: 2em;
  position: relative;
  top: -1.875em;
  left: 1em;
  width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.timeline-event-copy h3 {
  font-size: 1.75em;
	display: flex;
  align-items: center;
}
.timeline-event-copy h3 span{
  font-size: 14px;
	margin-left: 10px;
	font-weight: normal;
}
.timeline-event-copy h4 {
  font-size: 1.2em;
  margin-bottom: 1.2em;
}
.timeline-event-copy strong {
  font-weight: 700;
}
.timeline-event-copy p:not(.timeline-event-thumbnail) {
  /*padding-bottom: 1.2em;*/
}
.timeline-event-copy img{
	max-width: 500px;
	width: 100%;
	object-fit: contain;
}

.timeline-event-icon {
  transition: transform 0.2s ease-in;
  transform: rotate(45deg);
  background-color: #4b3c56;
  outline: 10px solid white;
  display: block;
  margin: 0.5em 0.5em 0.5em -0.5em;
  position: absolute;
  top: 0;
  left: 1em;
  width: 1em;
  height: 1em;
}

.timeline-event-thumbnail {
  transition: box-shadow 0.5s ease-in 0.1s;
  color: white;
  font-size: 0.75em;
  background-color: #4b3c56;
  box-shadow: inset 0 0 0 0em #ef795a;
  display: inline-block;
  margin-bottom: 1.2em;
  padding: 0.25em 1em 0.2em 1em;
}

/* sm */
@media print, all and (min-width: 576px) {
}

/* md */
@media print, all and (min-width: 768px) {
	.timeline {
		margin: 3em auto;
	}
	.timeline-event-copy {
		padding: 3em 2em;
		position: relative;
		top: -1.875em;
		left: 2em;
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 30px;
		flex-wrap: nowrap;
	}
	.timeline-event-copy img{
		max-width: 300px;
		width: auto;
	}
}

/* lg */
@media print, all and (min-width: 992px) {
	.timeline-event-copy {
		left: 3em;
		gap: 40px;
	}
	.timeline-event-copy img{
		max-width: 400px;
	}
}

/* xl */
@media print, all and (min-width: 1200px) {
	.timeline-event-copy {
		left: 4em;
	}
	.timeline-event-copy img{
		max-width: 500px;
	}
}