.sections-wrapper {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 8rem;

  font-family: var(--font-family-jost);
  line-height: 2;
}

.education-section,
.experience-section {
  min-width: 0;

  flex: 1;
  flex-shrink: 0;
}

.education-location,
.experience-location {
  font-weight: 700;
}

.education-title,
.experience-title,
.education-list,
.experience-list {
  font-weight: 300;
}

.education-title,
.experience-title {
  font-style: italic;
}

.cgpa,
.dissertation-title {
  font-weight: 300;
}

/* Vertical Timeline */

.education-timeline,
.experience-timeline {
  position: relative;

  margin: 0;
  padding: 0;
}

.education-timeline::before,
.experience-timeline::before {
  position: absolute;
  width: 1px;
  top: 0.7rem;
  bottom: 0.75rem;
  left: 8px;

  content: "";

  background-color: black;
}

.education-item,
.experience-item {
  position: relative;

  margin-bottom: 2rem;
  padding-left: 2rem;
}

.education-item:last-child,
.experience-item:last-child {
  margin-bottom: 0;
}

.education-marker,
.experience-marker {
  position: absolute;
  width: 9px;
  height: 9px;
  top: 0.7rem;
  left: 4px;
  z-index: 1;

  border-radius: 50%;

  background-color: black;
}

/* Media Queries */

@media (min-width: 1200px) {
  .sections-wrapper {
    flex-direction: row;
  }
}
