@media screen and (min-width: 769px) {
  #eventPage .filter-area .inner {
    width: 100%;
    margin: 0 auto;
  }
  #eventPage .filter-area .flex {
    justify-content: flex-start;
    align-items: center;
  }
  #eventPage .filter-area .section-title {
    margin-bottom: 0;
  }
  #eventPage .filter-area .filter-buttons {
    display: flex;
    gap: 10px;
    margin-left: 40px;
  }
  #eventPage .filter-area .filter-buttons .btn-filter {
    padding: 8px 24px;
    border: 2px solid #26C4A6;
    border-radius: 30px;
    background: #fff;
    color: #26C4A6;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
  }
  #eventPage .filter-area .filter-buttons .btn-filter.is-active {
    background: #26C4A6;
    color: #fff;
  }
  #eventPage .event-contents {
    margin-top: 60px;
  }
  #eventPage .event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
  }
  #eventPage .event-card {
    font-family: "Noto Sans", sans-serif;
  }
  #eventPage .event-card .img-wrap {
    position: relative;
    border-radius: 10px;
    aspect-ratio: 3/2;
  }
  #eventPage .event-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 10px;
  }
  #eventPage .event-card .img-wrap .status-tag {
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 4px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
  }
  #eventPage .event-card .img-wrap .status-tag.ongoing {
    background: #26C4A6;
  }
  #eventPage .event-card .img-wrap .status-tag.upcoming {
    background: #FF4B4B;
  }
  #eventPage .event-card .img-wrap .status-tag.ended {
    background: #999;
  }
  #eventPage .event-card:hover img {
    transform: scale(1.05);
  }
  #eventPage .event-card .text-wrap {
    margin-top: 15px;
  }
  #eventPage .event-card .text-wrap .card-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  #eventPage .event-card .text-wrap .card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }
  #eventPage .load-more {
    text-align: center;
    margin-top: 60px;
  }
  #eventPage .load-more .btn-more {
    display: inline-block;
    padding: 15px 80px;
    background: #26C4A6;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
  }
  #eventPage .load-more .btn-more:hover {
    opacity: 0.8;
  }
  #eventPage .calendar-banner {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 80px;
    height: 300px;
  }
  #eventPage .calendar-banner img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
  }
  #eventPage .calendar-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    width: 100%;
    text-align: center;
  }
  #eventPage .calendar-banner:hover img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 768px) {
  #eventPage .section {
    padding-bottom: 60px;
  }
  #eventPage .filter-area .flex {
    justify-content: flex-start;
  }
  #eventPage .filter-area .filter-buttons {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  #eventPage .filter-area .filter-buttons .btn-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 6px 16px;
    border: 2px solid #26C4A6;
    border-radius: 20px;
    color: #26C4A6;
    font-weight: bold;
  }
  #eventPage .filter-area .filter-buttons .btn-filter.is-active {
    background: #26C4A6;
    color: #fff;
  }
  #eventPage .event-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  #eventPage .event-card {
    font-family: "Noto Sans", sans-serif;
  }
  #eventPage .event-card .img-wrap {
    position: relative;
    border-radius: 10px;
  }
  #eventPage .event-card .img-wrap img {
    border-radius: 10px;
  }
  #eventPage .event-card .status-tag {
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
  }
  #eventPage .event-card .status-tag.ongoing {
    background: #26C4A6;
  }
  #eventPage .event-card .status-tag.upcoming {
    background: #FF4B4B;
  }
  #eventPage .event-card .status-tag.ended {
    background: #999;
  }
  #eventPage .event-card .text-wrap {
    margin-top: 10px;
  }
  #eventPage .event-card .text-wrap .card-title {
    font-size: 16px;
  }
  #eventPage .event-card .text-wrap .card-text {
    margin-top: 5px;
    font-size: 14px;
  }
  #eventPage .load-more {
    padding: 0 20px;
    margin-top: 40px;
  }
  #eventPage .load-more .btn-more {
    width: 100%;
    padding: 15px;
    background: #26C4A6;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
  }
  #eventPage .calendar-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 60px;
    display: block;
  }
  #eventPage .calendar-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    width: 100%;
    line-height: 1.8;
  }
}