.title_div {
    display: none;
}
.inner {
    top: 18vh;
}
.main_event {
    background-color: #f9f9f9;
    overflow-y: auto;
    scrollbar-color: #c9c9c9 #f9f9f9;
    box-sizing: border-box;
    width: 100%;
    height: 82vh;
    background-color: #fff;
}
#sev_hhtml {
    overflow-y: auto;
    scrollbar-color: #c9c9c9 #f9f9f9;
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
}
#sev_hhtml img {
    width: 100%;
    height: auto;
}
.main_event_top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}
.main_event_top .main_event_subject {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
.main_event_top .main_event_tag {
    font-size: 0.9rem;
    color: #6b7280;
}
.main_event_top .main_event_date {
    font-size: 0.9rem;
    color: #6b7280;
}
.main_event_top svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.menu_event_bottom {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}
.menu_event_bottom .btn_event_back {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #05C3DD;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.event_item_category {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 50px 0 20px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 20px;
}
.event_item_category_title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.event_item_category ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.event_item_category ul li {
    padding: 8px 16px;
    background-color: #f3f4f6;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.event_item_category ul li.active {
    background-color: #05C3DD;
    color: #fff;
}
.category_item .swiper-container {
    padding-left: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
}
.event_item_slide {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 10px;
    padding-bottom: 15px;
}
.event_item_slide:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.event_item_slide .event_item_img {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
    width: 100%;
}
.event_item_slide .event_item_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.event_item_slide .event_item_img:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.event_item_slide .event_item_tit {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 15px;
}
.event_item_slide .event_item_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-size: 0.9rem;
    color: #05C3DD;
}
.event_item_slide .event_item_price .event_price_value {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .inner {
        height: calc(var(--vh, 1vh) * 82);
        top: calc(var(--vh, 1vh) * 18);
    }
    .main_event {
        height: calc(var(--vh, 1vh) * 82);
    }
    .event_item_slide .event_item_price {
        flex-direction: column;
        align-items: flex-start;
    }
    .event_item_slide .event_item_price {
        font-size: 0.8rem;
    }
    .event_item_slide .event_item_price .event_price_value {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .inner {
        height: calc(var(--vh, 1vh) * 83);
        top: calc(var(--vh, 1vh) * 17);
    }
    .main_event {
        height: calc(var(--vh, 1vh) * 83);
    }
}