.tab-content-ul {
  display: flex;
  flex-wrap : wrap;
  gap: 10px;
  width: 100%;
  list-style: none;
}

.tab-content-li {
  width: calc(100% / 3 - 20px); /* 한 줄에 3개 배치 */
  text-align: center;
  margin-bottom: 20px; /* 아랫줄 간격 */
  position:relative;
}

.event_title {
    font-size:20px;
    color:#242424;
    text-align:left;
    font-weight:500;
    margin-bottom: 8px;
    /* 말줄임표 코드 시작 */
    white-space: nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    /* 말줄임표 코드 끝*/
    padding:0 5px;
    cursor:pointer;
}

.event_date {
    font-size:14px;
    color:#919191;
    text-align:left;
    padding:0 5px;
    cursor:pointer;
}

.event_img {
  width: 100%;
}

.end_img {
  position: absolute;
  background: #242424;
  opacity: 0.5;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 72%;
}

.end_title {
    background:#242424;
    color:white;
    width:60px;
    height:60px;
    position:absolute;
    top:5px;
    right:5px;
    z-index:111;
    border-radius:50%;
    padding:20px 0;
    cursor:pointer;
}

.font-size {
    font-size:18px;
    padding:10px 0;
}

.title_box {
  border-top: 2px solid #000;
  border-bottom: 2px solid #ddd;
  background: #eee;
}

.table thead tr th {
  border-bottom-color: #ddd;
  padding-block: 1.426rem;
}

/* 스크롤바 숨기기  */
.scroll {
  -ms-overflow-style: none; /* IE */
  scrollbar-width: none; /* Firefox */
}

  .scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera, Edge */
  }
