.workshop {
  @media screen and (min-width: 900px) {
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;

    & .eventlist {
      flex: 1;
    }
    & .blocks {
      flex: 1.5;
    }
  }

  & .time {
    font-size: 1.2rem;
    font-weight: 600;
  }
  & .price {
    font-size: 1.2rem;
  }

  & .event {
    margin: 1rem 0;
    border: 1px solid #000;
    padding: 1rem;
    & .line {
      border-radius: 2px;
      display: flex;
      gap: 1rem;
      justify-content: space-between;
      align-items: center;
    }
  }
  .location {
    margin: 0.5rem 0 1rem 0;
    font-size: 1rem;
    font-weight: 500;
  }
  .comment {
    margin: 0.5rem 0 1rem 0;
    font-size: 1rem;
    font-weight: 500;
  }
  .price {
    background-color: var(--purple);
    color: #fff;
    border-radius: 2px;
    padding: 0.5rem 1rem;
    line-height: 1;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }
}
