.ce-concerts-section {
    padding: 100px 60px;
    background: var(--wp--preset--color--ce-black);
}

.ce-concerts-section__group {
    margin-bottom: 60px;
}

.ce-concerts-section__group:last-child {
    margin-bottom: 0;
}

.ce-concerts-section__group-title {
    font-family: var(--wp--preset--font-family--ce-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ce-concerts-section__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ce-concerts-section__dot--live {
    background: var(--wp--preset--color--ce-primary);
    box-shadow: 0 0 0 3px rgba(130, 9, 36, 0.3);
    animation: ce-pulse 2s infinite;
}

@keyframes ce-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(130, 9, 36, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(130, 9, 36, 0.1); }
}

.ce-concerts-timeline {
    display: flex;
    flex-direction: column;
}

.ce-concerts-timeline--past {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .ce-concerts-section {
        padding: 60px 24px;
    }

    .ce-concerts-section__group {
        margin-bottom: 40px;
    }
}
