.more-btn {
    margin-top: 30px;
}

/* ===== Event Page ===== */
.event-page {
    padding: 50px 0px 50px;
}

/* 타이틀 (프랜차이즈 동일) */
.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #1e1e1e;
    letter-spacing: -0.72px;
    margin-bottom: 50px;
}

.dot-accent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #5ddfde;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: bottom;
    margin-bottom: 6px;
}

/* 탭 */
.event-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
}

.event-tab {
    flex: 1;
    text-align: center;
    padding: 20px 0 18px;
    font-size: 22px;
    font-weight: 400;
    color: #777;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    letter-spacing: -0.32px;
    transition: color 0.15s, border-color 0.15s;
}

.event-tab:hover {
    color: #555;
}

.event-tab.active {
    color: #111;
    font-weight: 600;
    border-bottom-color: #111;
}

/* 필터바 (건수 + 정렬) */
.event-filter-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 0;
}

.event-count {
    font-size: 18px;
    font-weight: 500;
    color: #1E1E1E;
}

.event-count strong {
    color: #EC1B23;
    font-weight: 600;
}


/* 그리드 */
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

.event-empty {
    grid-column: span 2;
    text-align: center;
    padding: 50px 0;
}

/* 카드 */
.ev-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ev-thumb {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 665 / 260;
    background: #f3f2ff;
    transition: all 0.3s ease;
}

.ev-card:hover .ev-thumb {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 15px 15px 0px;
}

.ev-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}


.ev-badge-active {
    background: rgba(255, 255, 255, 0.9);
    color: #356adb;
}

.ev-badge-end {
    background: rgba(0, 0, 0, 0.15);
    color: #666;
}


.ev-title {
    font-size: 20px;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 1.5;
    letter-spacing: -0.36px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ev-period {
    font-size: 16px;
    color: #666;
}

.pagination {
    padding: 50px 0;
}

/* ===== 모바일 ===== */
@media (max-width: 768px) {
    .event-page {
        padding: 45px 0px 60px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .event-tab {
        font-size: 14px;
    }

    .event-count {
        font-size: 16px;
    }

    .drop-menu {
        max-width: 150px;
    }

    .drop-menu-btn {
        padding: 0 10px 0 12px;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ev-card {
        gap: 12px;
    }

    .ev-thumb {
        aspect-ratio: 342 / 134;
    }

    .event-empty {
        grid-column: span 1;
    }

    .ev-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .ev-period {
        font-size: 14px;
    }

    .pagination {
        padding: 30px 0 0;
    }

}