/***************** EVENT LIST *****************/
.event {
    margin-bottom: 10px;
    padding: 15px 15px;
    background-color: rgba(40, 45, 55, 0.7);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.event__title {
    margin: 0;
    display: block;
    /* color: rgba(74, 242, 242, 0.8); */
    font-weight: bold;
    font-size: 1.2em;
}

.event__line {
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: #7A7C8D;
}

.event__details {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.event__dates {
    flex-shrink: 0;
    margin-right: 20px;
}

.event__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.event_tags__item {
    padding: 0 6px;
    border-radius: 5px;
    flex-grow: 1;
    text-align: center;
    background-color: #3a404d;
    cursor: pointer; /*TODO: удалить когда будет реальная ссылка*/
}

.event__descr {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}