.programm {
    border-radius: 22px;
    padding: 22px 22px 16px;
}

.programm h2 {
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2933;
}

.day-slider {
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 18px rgba(10, 46, 76, 0.08);
    margin-bottom: 18px;
}

.day {
    background: #f4f5f7;
    font-weight: 600;
    color: #233548;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s ease-out;
    border: none;
}

.day:hover {
    background: #233548;
    color: #fff;
    font-weight: 600;
}

.day.active {
    background: #233548;
    color: #fff;
    font-weight: 600;
}

.arrow {
    background: #233548;
    color: #fff;
    border: none;
    width: 36px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .15s ease-out;
}

.arrow:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.schedule-list {
    display: block;
}

.todays-shows {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
}

.todays-show {
    background: #fff;
    border: none;
    border-radius: 10px;
    display: flex;
    gap: 14px;
    padding: 12px 16px;
    align-items: flex-start;
    box-shadow: 0 4px 18px rgba(10, 46, 76, 0.08);
}

.todays-show-img {
    width: 64px;
    height: 96px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 64px;
}

.todays-show-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.todays-show-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.todays-show-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2933;
    line-height: 1.2;
}

.time-pill {
    background: #fff7ed;
    color: #c05621;
    border: 1px solid #ffedd5;
    border-radius: 9999px;
    padding: 4px 10px 3px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.time-pill small {
    font-weight: 400;
    opacity: .85;
}

.todays-show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.highlight-chip {
    background: #eef2ff;
    color: #4338ca;
    padding: 3px 10px 4px;
    border-radius: 9999px;
    font-size: .7rem;
    font-weight: 600;
}

.highlight-3d {
    background: #dbeafe;
    color: #1d4ed8;
}

.todays-show-time {
    font-size: .8rem;
    color: #4b5563;
}

.todays-show-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #f97316;
    color: #ea580c;
    border-radius: 9999px;
    padding: 5px 14px 5px;
    font-weight: 500;
    width: fit-content;
    transition: .12s;
}

/* .todays-show-link:hover {
    background: #fff7ed;
} */

@media (max-width: 640px) {
    .todays-show {
        flex-direction: row;
    }

    .todays-show-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .time-pill {
        margin-top: 4px;
    }
}


@media (max-width: 480px) {
    .todays-show-img {
        display: none;
    }
}
