



/*---------------------AGENDA-------------*/
/* =========================
   AGENDA
========================= */
.agenda{
    max-width: 1200px;
    margin: 70px auto 120px;
    padding: 0 24px;
}

.agenda-head{
    text-align: center;
    margin-bottom: 22px;
}

.agenda-kicker{
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: .85;
    margin: 0 0 10px;
    font-size: 12px;
}

.agenda-title{
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
}

.agenda-subtitle{
    margin: 0 0 10px;
    opacity: .95;
    line-height: 1.45;
}

.agenda-host{
    margin: 0;
    opacity: .85;
    font-size: 14px;
    line-height: 1.45;
}

.agenda-legend{
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 22px 0 18px;
}

.legend-pill{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    font-size: 13px;
    opacity: .95;
}

.dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.10);
}

.dot-time{ background: #19c2ee; }
.dot-42{ background: rgba(255,255,255,0.85); }
.dot-s1{ background: rgba(25,194,238,0.65); }
.dot-s2{ background: rgba(57,195,240,0.45); }

.agenda-grid{
    display: grid;
    grid-template-columns: 160px 1.6fr 1fr 1fr;
    gap: 14px;
}

.a-cell{
    border: 2px solid rgba(255,255,255,0.28);
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    padding: 14px 14px;
}

.a-head{
    background: rgba(255,255,255,0.10);
    border-color: rgba(25,194,238,0.55);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.a-time{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-color: rgba(25,194,238,0.55);
    background: rgba(25,194,238,0.10);
    text-align: center;
}

.a-time-sub{
    opacity: .9;
}

.a-block h3{
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.a-block h4{
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    opacity: .95;
}

.a-block p{
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
    opacity: .95;
}

.a-goal{
    margin-top: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.20);
    background: rgba(0,0,0,0.12);
}

.a-goal-title{
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    margin-bottom: 8px;
    opacity: .9;
}

.a-goal ul{
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.5;
    opacity: .95;
}

.a-note{
    margin-top: 10px;
    font-size: 12px;
    opacity: .8;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 10px;
}

.a-muted{
    opacity: .75;
    font-size: 12px;
}

.a-mini{
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.5;
    opacity: .95;
}

.a-empty{
    background: rgba(255,255,255,0.03);
    border-style: dashed;
    opacity: .6;
}

/* span na 3 kolumny (piętro 42 + Sala1 + Sala2) */
.a-span-3{
    grid-column: 2 / 5;
}

.a-break{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    letter-spacing: .5px;
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
}

/* =========================
   AGENDA – RESPONSIVE
========================= */
@media (max-width: 980px){
    .agenda-grid{
        grid-template-columns: 1fr;
    }

    .a-head{
        display: none;
    }

    .a-time{
        justify-content: flex-start;
        padding: 12px 14px;
    }

    .a-span-3{
        grid-column: auto;
    }
}

