/**
 * Schedule Layout Styles
 * Minimal base styles - customize as needed
 */

.ga26-schedule {
    width: 100%;
    padding: 5% 10%;
}

.ga26-schedule__main-title {
    margin: 0 auto;
    padding-bottom: 50px;
    text-align: left;
    max-width: 790px;
    font-weight: 400 !important;
    font-size: 36px !important;
    letter-spacing: -1px;
}

/* Dynamic main title colors - DARK values */

.ga26-flexible-content[data-menu-color="blue"] .ga26-schedule__main-title {
    color: #0060af;
}

.ga26-flexible-content[data-menu-color="purple"] .ga26-schedule__main-title {
    color: #5c2e91;
}

.ga26-flexible-content[data-menu-color="red"] .ga26-schedule__main-title {
    color: #a92b31;
}

.ga26-flexible-content[data-menu-color="yellow"] .ga26-schedule__main-title {
    color: #dd5828;
}

.ga26-flexible-content[data-menu-color="green"] .ga26-schedule__main-title {
    color: #006b6b;
}

.ga26-schedule__days {
    max-width: 790px;
    margin: 0 auto;
}

.ga26-schedule__day {
    margin-bottom: 50px;
}

.ga26-schedule__day:last-child {
    margin-bottom: 0px;
}

.ga26-schedule__day-title {
    font-family: 'Grack', sans-serif !important;
    margin: 0 0 20px 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
}

/* Dynamic date colors - LIGHT values */

.ga26-flexible-content[data-menu-color="blue"] .ga26-schedule__day-title {
    color: #00aeef;
}

.ga26-flexible-content[data-menu-color="purple"] .ga26-schedule__day-title {
    color: #c6168d;
}

.ga26-flexible-content[data-menu-color="red"] .ga26-schedule__day-title {
    color: #f15922;
}

.ga26-flexible-content[data-menu-color="yellow"] .ga26-schedule__day-title {
    color: #fcaf17;
}

.ga26-flexible-content[data-menu-color="green"] .ga26-schedule__day-title {
    color: #20bdbe;
}

.ga26-schedule__events {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ga26-schedule__event {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 15px;
}

.ga26-schedule__event:last-child {
    border-bottom: none;
}

.ga26-schedule__time {
    font-family: 'Noto Serif', serif !important;
    flex: 0 0 auto;
    width: 200px;
    font-weight: 600;
    letter-spacing: -.25px;
    font-size: 18px;
}

.ga26-schedule__event-name {
    font-family: 'Noto Serif', serif;
    flex: 1;
}

.ga26-schedule__event-name p {
    margin: 0;
    font-family: 'Noto Serif' !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -.15px;
    color: #636466;
    line-height: 1.5em;
}

.ga26-schedule__event-name a {
    color: #636466 !important;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .ga26-schedule {
        padding: 40px 20px;
    }
    
    .ga26-schedule__event {
        flex-direction: column;
        gap: 5px;
    }
    
    .ga26-schedule__time {
        min-width: auto;
    }

    .ga26-schedule__time {
        font-size: 16px;
    }
}