.kartatg_list {
  font-family: BerlinType, sans-serif;
  font-size: 16px;
  line-height: 20px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.kartatg_list .group-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  padding: 5px 0;
}

.kartatg_list .list-item a {
  text-decoration: none;
  color: #222432;
  padding: 5px 0;
  display: flex;
  white-space: nowrap;
  gap: 8px;
}

.kartatg_list .list-item a .event__category {
  color: #5A628A;
}

.upcoming_events .list-item a {
  padding: 5px 0;
}

@media screen and (max-width: 780px) {
  .kartatg_list .list-item a {
    flex-direction: column;
    gap: 0;
  }
}

.kartatg_list .list-item a:hover .title {
  text-decoration: underline;
}

.kartatg_list .list-item .source {
  font-weight: 700;
}

.kartatg_list .list-item .title {
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 780px) {
  .kartatg_list .list-item .title {
    white-space: initial;
    display: -webkit-box;
    text-wrap: balance;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

@media screen and (min-width: 981px) {
  .kartatg_list.upcoming_events {
    display: none;
  }
}