Berufliche Laufbahn

.my-listings ul {
  list-style: none !important;
}

.my-listings li {
  display: grid;
  gap: 0 20px;
  grid-auto-flow: row;
  grid-template-columns: 120px 1fr;
  justify-content: start;
  margin-bottom: 10px;
}

.my-listings li strong {
  font-weight: normal;
  justify-self: end;
}

.my-listings li em {
  font-style: normal;
}

/* === responsive styling === */
@media only screen and (max-width: 469px) {
  .my-listings li {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .my-listings li strong {
    font-weight: normal;
    justify-self: start;
  }
}