/* Main Container */
.wvp-listings-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Event Group Section */
.wvp-event-group {
    margin-bottom: 50px;
}

.wvp-event-group:last-child {
    margin-bottom: 30px;
}

/* Event Title */
.wvp-event-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #0c95f1;
}

/* Row Layout for Items */
.wvp-event-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* Individual Listing Item - Smaller Boxes */
.wvp-listing-item {
    flex: 0 0 calc(20% - 16px); /* 5 items per row */
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wvp-listing-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    border-color: #0c95f1;
}

/* Uniform Image Container */
.wvp-listing-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}

.wvp-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Content Area */
.wvp-listing-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wvp-listing-title {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    min-height: 2.6em; /* Ensures uniform height for 2 lines */
}

.wvp-listing-description {
    margin: 0 0 15px 0;
    color: #555555;
    font-size: 0.9em;
    line-height: 1.5;
    flex-grow: 1;
}

/* Video Button - Blue with White Text */
.wvp-video-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background: #0c95f1;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.wvp-video-btn:hover {
    background: #0a7ac9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(12, 149, 241, 0.3);
}

.wvp-video-btn:active {
    transform: translateY(0);
}

/* Empty State */
.wvp-no-listings {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
}

.wvp-no-listings p {
    font-size: 1.1em;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .wvp-listing-item {
        flex: 0 0 calc(25% - 15px); /* 4 items per row */
    }
}

@media (max-width: 1100px) {
    .wvp-listing-item {
        flex: 0 0 calc(33.333% - 14px); /* 3 items per row */
    }
}

@media (max-width: 768px) {
    .wvp-listings-container {
        padding: 20px 15px;
    }
    
    .wvp-event-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    
    .wvp-event-row {
        gap: 15px;
    }
    
    .wvp-listing-item {
        flex: 0 0 calc(50% - 8px); /* 2 items per row */
        min-width: 0;
    }
    
    .wvp-listing-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .wvp-listing-item {
        flex: 0 0 100%; /* 1 item per row */
    }
    
    .wvp-listing-image {
        height: 200px;
    }
    
    .wvp-listing-content {
        padding: 15px;
    }
    
    .wvp-listing-title {
        font-size: 1.15em;
        min-height: auto;
    }
}

/* Print Styles */
@media print {
    .wvp-listing-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .wvp-video-btn {
        display: none;
    }
}

