
#scaletta-evento {
    --accent: #F5C518;
    --text: #F5F7FA;
    --muted: #B8C2CC;
    --card: #0f1115;
    --card-border: rgba(245,197,24,0.35);
    --btn-text: #0b0d10;
    color: var(--text);
    max-width: 70%;
    margin: 0 auto;
    padding: 16px;
}

#se-titolo {
    
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.2;
    margin: 0 0 14px 0;
    letter-spacing: 0.3px;
}

.se-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.se-lista {
    display: grid;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.se-item {
    background: linear-gradient(180deg, rgba(245,197,24,0.06), rgba(245,197,24,0.02)), var(--card);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.se-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    border-color: rgba(245,197,24,0.5);
}

.se-head {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: start;
    margin-bottom: 10px;
}

.se-time {
    background: rgba(245,197,24,0.12);
    border: 1px solid var(--card-border);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.se-title {
   
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin: 2px 0 0 0;
    line-height: 1.35;
    font-weight: 700;
}

.se-quote {
   
    quotes: "“" "”" "‘" "’";
    color: #ffffff;
}

.se-quote::before { content: open-quote; color: var(--accent); }
.se-quote::after  { content: close-quote; color: var(--accent); }

.se-body {
    
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.se-body strong {
    color: var(--text);
}

.se-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--btn-text);
    text-decoration: none;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 12px;
    border: 0;
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
    box-shadow: 0 6px 18px rgba(245,197,24,0.25);
}

.se-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(245,197,24,0.32);
}

.se-cta:active {
    transform: translateY(0);
    opacity: .9;
}

.se-item + .se-item {
    position: relative;
}

.se-item + .se-item::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,197,24,0.35), transparent);
}

#se-titolo {
    color: #ffffff;
}

@media (min-width: 700px) {
    .se-head {
    grid-template-columns: 180px 1fr;
    }

    .se-time {
    justify-self: start;
    }
}

.se-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.se-column {
    min-width: 0;
}

.se-day-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(245,197,24,0.35);
}

.se-empty {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (min-width: 900px) {
    .se-columns {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}