
.dx-schedule-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.dx-hidden-schedule {
    display: none;
}

.dx-schedule-date-group {
    margin-bottom: 40px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dx-schedule-date-header {
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 18px;
    margin: 0 0 15px 0;
    display: inline-block; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dx-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 20px;
}

.dx-schedule-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: row;
    border: 1px solid #eee;
    height: 100%;
}

.dx-schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.dx-schedule-card-thumb {
    width: 40%;
    max-width: 150px;
    aspect-ratio: 4 / 5; 
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.dx-schedule-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    position: absolute; 
    top: 0;
    left: 0;
}

.dx-schedule-card:hover .dx-schedule-card-thumb img {
    transform: scale(1.05);
}

.dx-schedule-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dx-schedule-card-time-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.dx-schedule-time-badge {
    background: #FFD700;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.dx-schedule-timezone {
    font-size: 12px;
    color: #666;
    font-weight: bold;
    text-transform: uppercase;
}

.dx-schedule-card-program {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.dx-schedule-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #222;
    line-height: 1.3;
}

.dx-schedule-card-meta {
    margin-top: auto; 
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
    font-size: 13px;
    color: #555;
}

.dx-schedule-card-meta > div {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.dx-schedule-card-meta .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #999;
}

.dx-schedule-guest {
    color: #e6b800;
    font-weight: 500;
}

@media (max-width: 600px) {
    .dx-schedule-grid {
        grid-template-columns: 1fr; 
    }
    
    .dx-schedule-card-thumb {
        width: 35%;
        height: auto; 
    }
}
