.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 992px) {
  .event-list {
    row-gap: 47px;
    column-gap: 10px;
  }
}
@media (min-width: 1633px) {
  .event-list {
    column-gap: 20px;
  }
}
.event-item {
  width: 100%;
}
@media (min-width: 992px) {
  .event-item {
    width: 24%;
  }
}
.event-link {
  display: flex;
  gap: 17px;
  width: 100%;
  text-align: right;
  text-decoration: unset;
}
@media (min-width: 992px) {
  .event-link {
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    max-width: 360px;
  }
}
.event-link:hover {
  text-decoration: underline;
  text-decoration-color: #000000;
}
.event-link:hover .tag {
  text-decoration: underline;
  text-decoration-color: #FFDD46;
}
.event-title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 21px;
  line-height: 0.952;
  color: #000000;
}
@media (min-width: 992px) {
  .event-title {
    margin-bottom: 11px;
  }
}
@media (min-width: 992px) {
  .event-info {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
}
.event-info-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .event-info-item {
    margin-bottom: 0;
  }
}
.event-info-item p {
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.333;
  color: #757575;
}
.event-info-item:last-child {
  margin-bottom: unset;
}
.event-content {
  width: 69%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .event-content {
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
  }
}
.event .img-block img {
  height: 100%;
  object-fit: cover;
}
.event-filter {
  display: flex;
}
@media (min-width: 992px) {
  .event-filter {
    margin-top: 43px;
    margin-bottom: 55px;
  }
}
.event-describe {
  text-overflow: ellipsis;
  overflow: hidden;
  -ms-line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  font-size: 18px;
}
@media (min-width: 992px) {
  .event-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.search-input-wrapper .playlist-search {
  border: none;
  background: none;
  width: 32px;
  height: 28px;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}
.search-input-wrapper .playlist-search-close {
  border: none;
  background: none;
  width: 32px;
  height: 28px;
  position: absolute;
  right: 7px;
  z-index: 2;
}
.search-input-wrapper .search-input-playlist::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.search-input-wrapper .search-input-playlist.filled-input {
  padding-right: 40px;
  color: #ffffff;
}
