
.kv__title, .kv__desc {
    color: #000;
}



.event-list.no-results {
  margin: 0;
}


.event-list .no-data {
  border-radius: 20px;
  background: #F7F7F7;
  text-align: center;
  padding: 300px 0;
  color: #000;
  font-family: SamsungOne;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

@media only screen and (max-width: 1440px) {
    .event-list .no-data {
        border-radius: 1.39vw;
        padding: 20.83vw 0;
        font-size: 1.25vw;
    }
}
@media only screen and (max-width: 768px) {
    .event-list .no-data {
        margin: 0 6.67vw 20.56vw;
        border-radius: 5.56vw;
        padding: 26.11vw 0;
        font-size: 3.89vw;
    }
}



.event-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 24px 60px;

}

.event-card {
  background: #edf2f6;
  border-radius: 20px;
  padding: 32px 32px;
  font-family: SamsungOne, sans-serif;
  cursor: pointer;
}

.event-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.event-card__title {
  color: #000;
  font-family: samsungSharpSans;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  flex: 1 1 70%;
  margin: 0;
}

.event-card__meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #333;
  flex-shrink: 0;
}

.event-card__type {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
}

.event-card__divider {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 0 16px 0;
}

.event-card__desc {
  color: #000;

  font-family: SamsungOne;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}


.btn-learn-more {
  display: block;
  width: 120px;             /* 버튼 너비 */
  height: 40px;             /* 버튼 높이 */
  border-radius: 50px;      /* 둥근 캡슐 형태 */
  background: #000;
  color: #fff;
  font-family: SamsungOne, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin: 0 auto;
}

.filter-dropdown__icon {
  width: 18px;
  height: 18px;
  background: url("/resources/icon/ico_calender.svg") no-repeat center;
  background-size: 18px 18px;
  transition: initial;
}
.filter-dropdown--open .filter-dropdown__icon {
  transform: initial;
}


@media only screen and (max-width: 1440px) {


  .event-list {
    gap: 0.83vw;
    margin: 1.67vw 1.67vw 4.17vw;
  }

  .event-card {
    border-radius: 1.39vw;
    padding: 2.22vw 2.22vw;
  }

  .event-card__header {
    margin-bottom: 0.83vw;
  }

  .event-card__title {
    font-size: 1.67vw;
  }

  .event-card__meta {
    gap: 0.83vw;
    font-size: 0.90vw;
  }

  .event-card__type {
    font-size: 1.11vw;
    margin-bottom: 1.11vw;
  }

  .event-card__divider {
    margin: 0 0 1.11vw 0;
  }

  .event-card__desc {
    font-size: 1.25vw;
  }


  .btn-learn-more {
    width: 8.33vw;
    height: 2.78vw;
    border-radius: 3.47vw;
    font-size: 0.97vw;
    margin: 0 auto;
  }

  .filter-dropdown__icon {
    width: 1.25vw;
    height: 1.25vw;
    background: url("/resources/icon/ico_calender.svg") no-repeat center;
    background-size: 1.25vw 1.25vw;
    transition: initial;
  }

}


@media only screen and (max-width: 768px) {

  .kv__title, .kv__desc {
      color: #fff;
  }

  .event-list {
    gap: 3.33vw;
    margin: 0 6.67vw 11.11vw;
  }

  .event-card {
    border-radius: 5.56vw;
    padding: 8.89vw;
  }

  .event-card__header {
    margin-bottom: 3.33vw;
    display: flex;
    flex-direction: column;
    gap: 6.67vw;
  }

  .event-card__title {
    font-size: 5.00vw;
  }

  .event-card__meta {
    gap: 3.33vw;
    flex-direction: column;
    font-size: 4.44vw;
  }

  .event-card__type {
    font-size: 4.44vw;
    margin-bottom: 4.44vw;
  }

  .event-card__divider {
    margin: 0 0 4.44vw 0;
  }

  .event-card__desc {
    font-size: 5.00vw;
  }


  .btn-learn-more {
    width: 32.78vw;
    height: 11.11vw;
    border-radius: 5.56vw;
    font-size: 3.89vw;
    margin: 0 auto;
  }


  .filter-dropdown__icon {
    width: 4.11vw;
    height: 4.11vw;
    background: url("/resources/icon/ico_calender.svg") no-repeat center;
    background-size: 4.11vw 4.11vw;
    transition: initial;
  }


}
