/* Kontener główny harmonogramu */
.hubx-schedule-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.hubx-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Pojedynczy wiersz wydarzenia */
.hubx-schedule-row {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f5f5f5;
}

.hubx-schedule-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Kolumna 1: Czas i Data */
.hubx-schedule-col-time {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
}

.hubx-schedule-time {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fafafa;
}

.hubx-schedule-time svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hubx-schedule-date {
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kolumna 2: Informacje o wydarzeniu */
.hubx-schedule-col-info {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hubx-schedule-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
}

.hubx-schedule-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Kolumna 3: Akcja (Zapisz się) */
.hubx-schedule-col-action {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-left: 1px solid #f0f0f0;
}

.hubx-schedule-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: 100%;
}

.hubx-schedule-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Responsywność */
@media (max-width: 768px) {
    .hubx-schedule-row {
        flex-direction: column;
    }
    
    .hubx-schedule-col-time {
        width: 100%;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .hubx-schedule-time, .hubx-schedule-date {
        flex: 1;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hubx-schedule-col-info {
        padding: 20px;
    }
    
    .hubx-schedule-col-action {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 20px;
    }
    
    .hubx-schedule-btn {
        width: 100%;
        max-width: 300px;
    }
}
