/* Premium Index Page Styles */

/* Path wrapper */
.path_wp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Event card */
.event_card {
    cursor: pointer;
}

/* Thumbnail background */
.pro_thum {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Status badge */


/* Event description */
.pro_his {
    height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* Status text colors */
.pro_sta .status-text-gray {
    color: #999;
}

.pro_sta .status-text-dark {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

/* Event status when no event */
.pro_sta.no-event {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    margin-top: 10px;
}

/* Empty state */
.empty-state {
    width: 100%;
    text-align: center;
    padding: 80px 0;
    color: #999;
}

.empty-state img {
    display: block;
    margin: 0 auto 10px;
    width: 50px;
    opacity: 0.5;
}

/* 찜 버튼 */
.pro_list_wp .sprod_one .pro_thum .wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pro_list_wp .sprod_one .pro_thum .wish-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pro_list_wp .sprod_one .pro_thum .wish-btn .wish-icon {
    font-size: 18px;
    color: #ccc;
    transition: all 0.3s ease;
}

.pro_list_wp .sprod_one .pro_thum .wish-btn.wished .wish-icon {
    color: #e74c3c;
}

.pro_list_wp .sprod_one .pro_thum .wish-btn:active {
    transform: scale(0.95);
}

@media only screen and (max-width: 1400px) {
	
}
@media only screen and (max-width: 1000px) {
.pro_his {
    height:auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
    color: #666;
    margin-bottom: 17px;
}
}
