/* =======================================================================
    7 Summits - Stránka Akcí CSS
    =======================================================================
    TABLE OF CONTENTS
    -----------------------------------------------------------------------
    1. Header (hlavička)
        1.1 Úvodní obrázek
        1.2 Základní styly
        1.3 Responzivita
    2. Nadpis akce
        2.1 Základní styly
        2.2 Responzivita
    3. Foto ikonka
        3.1 Základní styly
        3.2 Responzivita
    4. Content box
        4.1 Základní styly
        4.2 Filtr + nadpis
        4.3 Text, info boxy
        4.4 Responzivita
    5. Galerie
        5.1 Grid styly
        5.2 Lightbox
        5.3 Responzivita
    6. Popis akce
        6.1 Základní styly
        6.2 Responzivita
    7. Rámcový program
        7.1 Základní styly
        7.2 Responzivita
    8. Přepínač akcí
        8.1 Základní styly
        8.2 Responzivita
    =======================================================================
*/

.video-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: 100%;
    background: transparent;
    transform: translateX(-100%);
    overflow: hidden;
    visibility: hidden;
    transition: transform 0s linear 0.6s, visibility 0s linear 0.6s;
    will-change: transform, visibility;
    z-index: 10000;
}
.video-wrapper.active {
    transform: translateX(0);
    visibility: visible;
    transition: none;
}
.content-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-light-40);
    backdrop-filter: blur(4px);
    opacity: 0.4;
    transform: translateX(-100%);
    transition: transform 0.6s linear;
    will-change: transform;
}
.video-wrapper.active .content-overlay {
    transform: translateX(0);
}
.video-wrapper iframe {
    position: relative;
    width: 100%; height: 100%;
    border: none;
    object-fit: cover;
    transform: translateX(-100%);
    transition: transform 0.6s linear 0.4s;
    will-change: transform;
}
.video-wrapper.active iframe {
    transform: translateX(0);
    opacity: 1;
}
.video-wrapper .video-hide {
    position: absolute;
    display: grid;
    place-items: center;
    width: 50px; height: 50px;
    top: 80px; right: -25px;
    opacity: 0;
    color: var(--color-light-100);
    background-color: var(--color-accent-75);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.4s linear, background 0.3s linear, right 0.3s ease;
    will-change: opacity, background, right;
}
.video-wrapper .video-hide.show {
    opacity: 1;
}
.video-wrapper .video-hide:hover {
    right: -15px;
    background: var(--color-accent-100);
}
.video-wrapper .video-hide .icon {
    font-size: 1.5rem;
    margin-right: 13px;
}

/* 4. Content box ------------------------------------------------------- */
.souradnice-image-wrapper {
    position: absolute;
    width: auto;
    height: auto;
    top: 18px;
    right: 1%;
    z-index: -1;
}
.souradniceExpedice {
    width: clamp(240px, 16vw, 360px);
    height: auto;
}
.contentTextBox {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    width: 100%; height: auto;
    padding: 0 clamp(0.75rem, 1vw + 1rem, 2.5rem);
    margin-top: clamp(3.75rem, 1vw + 3.25rem, 5rem);
    gap: 10px;
}

/* 4.2 Filtr + nadpis */
.contentTextBox .filtr {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 40px;
    min-height: 360px;
    margin-right: clamp(1.25rem, 2vw + 1.25rem, 3.75rem);
    gap: 28px;
}
.contentTextBox .filtr::before {
    position: absolute;
    content: '';
    top: 0; left: 1px;
    width: 1px; height: 100%;
    background-color: var(--color-secondary-60);
}
.filtr-indicator {
    position: absolute;
    left: 0;
    width: 3px;
    border-radius: 2px;
    background-color: var(--color-primary-100);
    transition: top 0.4s ease, height 0.4s ease;
    will-change: top, height;
    z-index: 0;
}
.contentTextBox .filtr button {
    position: relative;
    font-size: clamp(1rem, 0.4vw + 0.875rem, 1.125rem);
    writing-mode: sideways-lr;
    padding: 12px 0 12px 8px;
    color: var(--color-primary-90);
    background-color: transparent;
    border: none; outline: none;
    transition: color .3s;
    will-change: color;
    cursor: pointer;
    user-select: none;
    z-index: 1;
}
.contentTextBox .filtr button:first-child {
    margin-top: 40px;
}
.contentTextBox .filtr button:hover {
    color: var(--color-accent-100);
}
.contentTextBox .textShrnuti { max-width: 720px; }
.contentTextBox .nadpis {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%; height: auto;
    margin: clamp(5rem, 1vw + 4.5rem, 6.25rem) 0 clamp(1.375rem, 0.5vw + 1.1rem, 1.875rem) 0;
}
.contentTextBox .nadpis p {
    font-size: clamp(0.875rem, 0.4vw + 0.75rem, 1rem);
    font-weight: 400;
    color: var(--color-primary-75);
    text-transform: uppercase;
    text-shadow: none;
}
.contentTextBox .nadpis h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.625rem, 0.8vw + 1.4rem, 2rem);
    font-weight: 500;
    color: var(--color-primary-90);
    text-transform: none;
}
.contentTextBox .akceText {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%; height: auto;
    margin-top: clamp(1.375rem, 0.5vw + 1.1rem, 1.875rem);
    font-size: clamp(0.875rem, 0.3vw + 0.8rem, 0.9375rem);
    font-weight: 400;
    text-align: justify;
    color: var(--color-primary-90);
}
.contentTextBox .textInformace {
    display: none;
    width: auto; height: auto;
}
.contentTextBox .textInformace img {
    position: absolute;
    width: 2.375rem; height: auto;
    aspect-ratio: 143 / 91;
    opacity: 0.25;
    user-select: none;
}
.contentTextBox .textInformace p {
    max-width: 900px;
    font-size: clamp(0.875rem, 0.3vw + 0.8rem, 0.9375rem);
    font-style: italic;
    color: var(--color-primary-90);
    text-align: justify;
    padding: 8px 0 0 8px;
}
@media screen and (max-width: 1000px) { .contentTextBox .akceText p { max-width: 750px; } }
@media screen and (max-width: 820px) { .souradniceExpedice { display: none; } }
@media screen and (max-width: 620px) { .contentTextBox .filtr { margin-right: 18px; } }
@media screen and (max-width: 480px) {
    .contentTextBox { flex-direction: column; width: 100%; height: auto; }
    .contentTextBox .filtr {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: auto; min-height: 0;
        margin-right: 0;
        gap: clamp(1.125rem, 0.6vw + 0.9rem, 1.75rem);
    }
    .contentTextBox .filtr::before { display: none; }
    .filtr-indicator {
        position: absolute;
        bottom: 100%;
        height: 3px;
        transition: left 0.4s ease, width 0.4s ease;
        will-change: left, width;
        z-index: 1;
    }
    .contentTextBox .filtr button {
        writing-mode: horizontal-tb;
        padding: 8px;
    }
    .contentTextBox .filtr button:first-child { margin-top: 0; }
    .contentTextBox .nadpis {
        margin: 28px 0 clamp(1.375rem, 0.5vw + 1.1rem, 1.875rem) 0;
    }
}
/* 5. Galerie ----------------------------------------------------------- */
.grid-wrapper {
    display: flex;
    width: 100%; height: auto;
    padding: 0;
    margin-top: clamp(3.75rem, 1vw + 3.25rem, 5rem);
}
.grid-wrapper .gallery-list {
    width: 100%; height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 8px;
    user-select: none;
}
.grid-wrapper .gallery-list .fotkaAkce {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: 100%;
    overflow: hidden;
    cursor: pointer;
}
.grid-wrapper .gallery-list .fotkaAkce:nth-child(1) { order: 1; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(2) { order: 2; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(3) { order: 3; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(4) { order: 4; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(5) { order: 5; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(6) { order: 6; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(7) { order: 7; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(8) { order: 8; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(9) { order: 9; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(10) { order: 10; }
.grid-wrapper .gallery-list .fotkaAkce:nth-child(11) { order: 11; }
.grid-wrapper .gallery-list .fotkaAkce.wide { grid-column: span 2; }
.grid-wrapper .gallery-list .fotkaAkce.tall { grid-row: span 2; }
.grid-wrapper .gallery-list .fotkaAkce figure {
    width: 100%; height: 100%;
}
.grid-wrapper .gallery-list .fotkaAkce figure img {
    width: 100%; height: 100%;
    max-height: 340px;
    vertical-align: middle;
    object-fit: cover;
    transition: transform .3s;
    will-change: transform;
}
.grid-wrapper .gallery-list .fotkaAkce:hover figure img { transform: scale(1.03); }
.grid-wrapper .gallery-list .fotkaAkce.respVyssi figure img,
.grid-wrapper .gallery-list .fotkaAkce.tall figure img { max-height: none; }
.grid-wrapper .gallery-list .fotkaAkce .overlay {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
    will-change: opacity, visibility;
    background: rgba(0, 0, 0, 0.25);
}
.grid-wrapper .gallery-list .fotkaAkce:hover .overlay { visibility: visible; opacity: 1; }
.grid-wrapper .gallery-list .fotkaAkce .icon {
    position: absolute;
    font-size: clamp(1.625rem, 1vw + 1.4rem, 2rem);
    font-weight: 200;
    color: var(--color-light-100);
    opacity: 0;
    transition: opacity .3s, transform .3s;
    will-change: opacity, transform;
}
.grid-wrapper .gallery-list .fotkaAkce:hover .icon { 
    opacity: 1;
    transform: scale(2);
}
/* 5.2 Lightbox */
.lightbox {
    position: fixed; 
    display: none; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    width: 100%; height: 100%; 
    top: 0;  left: 0; 
    background-color: var(--color-white);
    z-index: 10000; 
}
.lightbox .top {
    display: flex;
    justify-content: flex-end;
    width: 100%; height: 40px;
    padding: 0 clamp(0.75rem, 1vw + 1rem, 2.5rem);
    background-color: var(--color-white);
    z-index: 2;
}
.lightbox .top button {
    color: var(--color-primary-100);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform .3s ease, color .3s ease;
    will-change: transform, color;
}
.lightbox .top button:hover {
    transform: scale(1.1);
}
.lightbox .middle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: calc(100% - 100px);
}
.lightbox .middle img.lightbox-image {
    position: relative;
    width: auto; height: auto;
    max-width: 100%; max-height: 100%;
    object-fit: contain;
}
.lightbox .middle .popis-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%; max-width: 300px; height: 100%;
    bottom: 0; left: 0;
    padding: clamp(0.75rem, 1vw + 1rem, 2.5rem);
    color: var(--color-primary-100);
    background: var(--color-white);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .6s, visibility .6s;
    will-change: transform, visibility;
}
.lightbox .middle .popis-overlay.active {
    transform: translateX(0);
    visibility: visible;
}
.lightbox .middle .popis-overlay h4 {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.lightbox .middle .popis-overlay p {
    font-size: clamp(0.75rem, 0.5vw + 0.75rem, 0.875rem);
    font-weight: 400;
    text-align: justify;
}
.lightbox .bottom {
    display: flex;
    justify-content: space-between;
    width: 100%; height: 60px;
    padding: 0 clamp(0.75rem, 1vw + 1rem, 2.5rem);
    background-color: var(--color-white);
    z-index: 2;
}
.lightbox .bottom .photo-info {
    font-size: 0.75rem;
    color: var(--color-primary-90);
    align-self: center;
    border: none; outline: none;
    background-color: transparent;
    transition: transform .3s;
    will-change: transform;
    cursor: pointer;
}
.lightbox .bottom .photo-info:hover {
    transform: translateX(4px);
}
.lightbox .bottom .manual-controll {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto; height: 100%;
}
.lightbox .bottom .manual-controll .up {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
}
.lightbox .bottom .manual-controll .up button {
    border: none; outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.3s;
    will-change: transform;
}
.lightbox .bottom .manual-controll .up button:nth-child(1) { transform: translateX(-2px); }
.lightbox .bottom .manual-controll .up button:nth-child(2) { transform: translateX(2px); }
.lightbox .bottom .manual-controll .up button:nth-child(1):hover { transform: translateX(-4px); }
.lightbox .bottom .manual-controll .up button:nth-child(2):hover { transform: translateX(4px); }
.lightbox .bottom .manual-controll .up button span {
    font-size: clamp(1.125rem, 0.8vw + 0.9rem, 1.5rem);
    font-weight: 200;
    color: var(--color-primary-90);
}
.lightbox .bottom .manual-controll .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    padding: 0;
}
.lightbox .bottom .manual-controll .bottom .slider-position {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
    color: var(--color-primary-100);
    font-weight: 300;
}
.lightbox .bottom .manual-controll .bottom .slider-position .max-slides {
    font-size: clamp(0.625rem, 0.3vw + 0.55rem, 0.75rem);
    color: var(--color-secondary-90);
    font-weight: 200;
}
/* 5.3 Responzivita */
@media screen and (max-width: 1732px) { 
    .grid-wrapper .gallery-list { grid-template-columns: repeat(4, 1fr); }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(2) { order: 3; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(3) { order: 2; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(5) { order: 6; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(11) { order: 5; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(9) { order: 6; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(6) { order: 5; }
    .grid-wrapper .gallery-list .fotkaAkce.respVyssi { grid-row: span 2; }
}
@media screen and (max-width: 1400px) { 
    .grid-wrapper .gallery-list { grid-template-columns: repeat(3, 1fr); }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(2) { order: 2; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(3) { order: 3; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(10) { order: 8; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(8) { order: 10; }
    .grid-wrapper .gallery-list .fotkaAkce.respVyssi { grid-row: span 1; }
}
@media screen and (max-width: 1050px) { 
    .grid-wrapper .gallery-list { grid-template-columns: repeat(2, 1fr); }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(2) { order: 3; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(3) { order: 2; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(5) { order: 6; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(6) { order: 9; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(7) { order: 8; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(10) { order: 7; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(8) { display: none; }
}
@media screen and (max-width: 940px) {
    .grid-wrapper .gallery-list .fotkaAkce img { max-height: 300px; }
    .grid-wrapper .gallery-list .fotkaAkce.tall img { max-height: none; }
}
@media screen and (max-width: 610px) { 
    .grid-wrapper .gallery-list { grid-template-columns: 1fr; }
    .grid-wrapper .gallery-list .fotkaAkce  { grid-column: span 2; }
    .grid-wrapper .gallery-list .fotkaAkce.tall { grid-row: span 1; }
    .grid-wrapper .gallery-list .fotkaAkce figure img,
    .grid-wrapper .gallery-list .fotkaAkce.tall figure img { max-height: 400px; }
    .grid-wrapper .gallery-list .fotkaAkce:nth-child(8) { display: flex; }
}
/* --- Adaptace pro velmi široké obrazovky (nad 1920px) --- */
@media screen and (min-width: 2080px) {
    .grid-wrapper .gallery-list {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        grid-gap: 10px;
    }
    .grid-wrapper .gallery-list .fotkaAkce figure img { max-height: 380px; }
}
@media screen and (min-width: 2320px) {
    .grid-wrapper { max-width: 2520px; }
    .grid-wrapper .gallery-list {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        grid-gap: 12px;
    }
    .grid-wrapper .gallery-list .fotkaAkce figure img { max-height: 420px; }
}
/* 6. Popis akce -------------------------------------------------------- */
.informaceTextBox {
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%; height: auto;
    padding: 0 clamp(0.75rem, 1vw + 1rem, 2.5rem);
}
.informaceTextBox.planovane-akce {
    display: flex;
}
.informaceTextBox .details-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto; height: 100%;
    margin-left: calc(40px + clamp(1.25rem, 2vw + 1.25rem, 3.75rem));
    text-align: justify;
}
.informaceTextBox .details-content .informacni-text {
    font-size: clamp(0.875rem, 0.3vw + 0.8rem, 0.9375rem);
    font-weight: 400;
    text-align: justify;
    color: var(--color-primary-90);
    max-width: 740px;
    margin-bottom: clamp(1.75rem, 2vw + 1rem, 2.5rem);
}
.informaceTextBox .details-content img {
    width: 100%; height: auto;
    max-width: 740px;
    vertical-align: middle;
    object-fit: cover;
}
.informaceTextBox .schedule {
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: auto; height: auto;
    max-width: 480px; max-height: 640px;
    margin-top: 80px;
    gap: 40px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #bfbfbf var(--color-white);
}
/* WebKit (Chrome, Edge, Safari) */
.informaceTextBox .schedule::-webkit-scrollbar {
    width: 4px;
}
.informaceTextBox .schedule::-webkit-scrollbar-track {
    background: var(--color-white);
    border-radius: 10px;
}
.informaceTextBox .schedule::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #bfbfbf, #9b9b9b);
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}
.informaceTextBox .schedule::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9b9b9b, #7a7a7a);
}
.informaceTextBox .schedule::before {
    position: absolute;
    content: '';
    top: 0; right: 34px;
    width: 11px; height: 11px;
    background-color: var(--color-neutral-90);
    border-radius: 50%;
}
.informaceTextBox .schedule::after {
    position: absolute;
    content: '';
    top: 0; right: 39px;
    width: 1px; height: var(--line-height, 100%);
    background-color: var(--color-neutral-90);
}
.informaceTextBox .schedule .schedule-program {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%; height: auto;
    padding-right: 8px;
}
.informaceTextBox .schedule .schedule-program:first-of-type { margin-top: 60px; }
.informaceTextBox .schedule .schedule-program .schedule-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: calc(100% - 65px); height: auto;
    padding-right: 12px;
    gap: 8px;
}
.informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-title {
    font-size: clamp(0.875rem, 0.3vw + 0.8rem, 0.9375rem);
    font-weight: 500;
    color: var(--color-primary-90);
    text-align: right;
}
.informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-text {
    font-size: clamp(0.75rem, 0.3vw + 0.8rem, 0.875rem);
    font-weight: 400;
    color: var(--color-primary-75);
    text-align: justify;
    text-align-last: right;
}
.informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-text ul,
.informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-text ol {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.informaceTextBox .schedule .schedule-program .schedule-day {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 65px; height: 65px;
    border-radius: 50%;
    background-color: var(--color-neutral-90);
    z-index: 1;
}
.informaceTextBox .schedule .schedule-program .schedule-day p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary-90);
    text-align: center;
}
.informaceTextBox .schedule .schedule-program .schedule-day .schedule-day-number {
    font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1420px) {
    .informaceTextBox {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
    }
    .informaceTextBox .schedule {
        max-height: none;
        margin-top: 0;
        margin-left: calc(40px + clamp(1.25rem, 2vw + 1.25rem, 3.75rem));
        gap: 40px;
    }
    .informaceTextBox .schedule::before { left: 28px; }
    .informaceTextBox .schedule::after { left: 33px; }
    .informaceTextBox .schedule .schedule-program {
        flex-direction: row-reverse;
        padding-right: 0;
    }
    .informaceTextBox .schedule .schedule-program .schedule-text {
        align-items: flex-start;
        padding-right: 0;
        padding-left: 12px;
    }
    .informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-title { text-align: left; }
    .informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-text { text-align-last: left; }
    .informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-text ul,
    .informaceTextBox .schedule .schedule-program .schedule-text .schedule-program-text ol { align-items: flex-start; }
}
@media screen and (max-width: 720px) {
    .informaceTextBox { margin-top: 40px; }
    .informaceTextBox .details-content,
    .informaceTextBox .schedule {
        margin-left: 0;
    }
}
@media screen and (max-width: 580px) {
    .informaceTextBox .schedule::before { left: 22px; }
    .informaceTextBox .schedule::after { left: 27px; }
    .informaceTextBox .schedule .schedule-program:first-of-type { margin-top: 40px; }
    .informaceTextBox .schedule .schedule-program .schedule-day { width: 53px; height: 53px; }
    .informaceTextBox .schedule .schedule-program .schedule-day p { font-size: 0.75rem; }
}
/* 8. Přepínač akcí ----------------------------------------------------- */
.prepinacBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: calc(100% - (clamp(0.75rem, 1vw + 1rem, 2.5rem) * 2));
    padding-top: 12px;
    margin: clamp(40px, 7vw + 28px, 80px) 0 clamp(28px, 3vw + 16px, 40px) 0;
    border-top: 1px solid var(--color-secondary-40);
}
.prepinacBox a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: auto; height: auto;
    text-decoration: none;
    font-size: clamp(0.75rem, 0.5vw + 0.7rem, 0.875rem);
    font-weight: 300;
    color: var(--color-primary-90);
    transition: transform .3s, color .3s;
    will-change: transform, color;
    cursor: pointer;
}
.prepinacBox a .icon {
    font-size: clamp(1rem, 0.5vw + 0.7rem, 1.25rem);
    font-weight: 200;
}
.prepinacBox a:nth-child(2) .icon { transform: rotate(180deg); }
.prepinacBox a:nth-child(1):hover {
    transform: translateX(-4px);
    color: var(--color-primary-100);
}
.prepinacBox a:nth-child(2):hover {
    transform: translateX(4px);
    color: var(--color-primary-100);
}