/**
 * Timeline Block Styles
 */

.eicom-timeline {
    background-color: #ffffff;
}

/* Header */
.eicom-timeline .timeline-header {
    max-width: 700px;
    margin: 0 auto 64px;
}

.eicom-timeline .timeline-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.eicom-timeline .timeline-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #525252;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Items */
.eicom-timeline .timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting Line */
.eicom-timeline .timeline-items::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #61b01f 0%, #006b8c 100%);
    z-index: 0;
}

/* Timeline Item */
.eicom-timeline .timeline-item {
    position: relative;
    z-index: 1;
}

/* Timeline Marker */
.eicom-timeline .timeline-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #61b01f;
    border: 4px solid #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(97, 176, 31, 0.3);
}

/* Timeline Content */
.eicom-timeline .timeline-content {
    text-align: center;
}

.eicom-timeline .timeline-jaar {
    font-size: 1.5rem;
    font-weight: 800;
    color: #61b01f;
    margin-bottom: 8px;
}

.eicom-timeline .timeline-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.eicom-timeline .timeline-beschrijving {
    font-size: 0.9375rem;
    color: #525252;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .eicom-timeline .timeline-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }

    .eicom-timeline .timeline-items::before {
        display: none;
    }

    .eicom-timeline .timeline-marker {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .eicom-timeline .timeline-header {
        margin-bottom: 48px;
    }

    .eicom-timeline .timeline-items {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eicom-timeline .timeline-jaar {
        font-size: 1.25rem;
    }

    .eicom-timeline .timeline-label {
        font-size: 1rem;
    }

    .eicom-timeline .timeline-beschrijving {
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .eicom-timeline .timeline-header {
        margin-bottom: 40px;
    }

    .eicom-timeline .timeline-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .eicom-timeline .timeline-subtitle {
        font-size: 0.9375rem;
    }

    .eicom-timeline .timeline-items {
        gap: 32px;
    }

    .eicom-timeline .timeline-marker {
        width: 36px;
        height: 36px;
        margin-bottom: 16px;
    }
}
