/* ---------------------------------------------------
   PROGRAM – ZÁKLADNÍ STYL
--------------------------------------------------- */

.program-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.program-main-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
}

.program-day-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.program-day {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff7a00;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.program-day:hover {
    box-shadow: 0 0 28px rgba(255, 120, 0, 0.35);
}

.program-day h2 {
    text-align: center;
    color: #FF5E00;
    margin-bottom: 20px;
}

.program-day ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-day li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.program-day li:last-child {
    border-bottom: none;
}

.program-day span {
    color: #ff7a00;
    min-width: 130px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ---------------------------------------------------
   TABLET – BOXY STÁLE POD SEBOU, VĚTŠÍ PÍSMO
--------------------------------------------------- */
@media (min-width: 600px) and (max-width: 991px) {
    .program-day li {
        font-size: 20px;
    }
    .program-day span {
        min-width: 140px;
    }
}

/* ---------------------------------------------------
   PC – DVA BOXY VEDLE SEBE
--------------------------------------------------- */
@media (min-width: 992px) {
    .program-day-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .program-section .program-day-wrapper .program-day {
        flex: 1;
        max-width: 480px;
        margin-bottom: 0;
    }
}

/* ---------------------------------------------------
   MOBIL – KOMPAKTNĚ
--------------------------------------------------- */
@media (max-width: 599px) {
    .program-section {
        padding: 0 16px 20px;
    }

    .program-day {
        padding: 20px 16px;
    }

    .program-day li {
        font-size: 15px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
    }

    .program-day span {
        min-width: auto;
        font-size: 14px;
    }
}
