main .hero-image {
    height: 22vh !important;
}

body main .hero-image .container .hero-text h1 {
    margin-top: 0vh !important;
}


/* LIVE REPORT */
.report-live-report {
    margin-top: 4rem;
    font-family: Arial, sans-serif;
}

.ambulance {
    margin: 12px; 
    border-radius: 7px;
    background-color: #e5383518;
}

.fire {
    margin: 12px; 
    border-radius: 7px;
    background-color: #f57b0015;
}

.police {
    margin: 12px; 
    border-radius: 7px;
    background-color: #1e88e511;
}

/* Live indicator */
.report-live-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #e53935;
    font-size: 15px;
    margin-bottom: 20px;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background-color: #e53935;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(229, 57, 53, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

/* Timeline */
.report-timeline {
    position: relative;
    border-left: 2px dotted #ccc;
}

.report-timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.report-timeline a {
    text-decoration: none !important;
    color: inherit;
}

.report-timeline a:hover .timeline-content .short-description {
    text-decoration: none !important;
}

.timeline-marker {
    position: absolute;
    left: -7px; /* helft van marker width min de helft van de lijn dikte */
    top: 0;
    width: 14px;
    height: 14px;
    background-color: #e53935;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.timeline-content {
    padding-left: 15px;
}

.timeline-content .time {
    font-size: 13px;
    font-weight: bold;
    color: #555;
    margin-bottom: 3px;
}

.timeline-content .short-description {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.timeline-content .description {
    font-size: 13px;
    font-style: italic;
    color: #777;
    margin-bottom: 0;
}

main .hero-image .container .hero-text {
    text-align: center;
}

.top-report-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
}

.left-this-report {
    margin-top: 2.5rem;
}

/* ===== Report Related Timeline (detailpagina) ===== */ 
.left-this-report .article-newest-items {
    margin-right: 2.5rem;
}

.report-meta {
    margin-top: 2rem;
}

.report-related-items {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 1.8rem;
    margin-top: 2.5rem;
}

/* Live melding */
.report-related-items .report-live-notice {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #153C54;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    margin-left: 15px;
}

.report-related-items .live-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e53935;
    margin-right: 8px;
    position: relative;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
    animation: report-pulse 1.5s infinite;
}

@keyframes report-pulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* Tijdlijn container */
.report-related-items .report-related-timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 3px solid #e0e6ed;
}

/* Tijdlijn item */
.report-related-items .report-timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 20px;
    left: 2px;
    transition: transform 0.2s ease, background 0.2s ease;
}

/* Marker */
.report-related-items .timeline-marker {
    position: absolute;
    left: -30px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: #005bbb;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #e0e6ed;
}

/* Content */
.report-related-items .timeline-content {
    background: #f9fafc;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background 0.2s ease;
}

.report-related-items .timeline-content .time {
    font-size: 0.9rem;
    color: #005bbb;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.report-related-items .timeline-content .short-description {
    font-weight: 600;
    color: #153C54;
    margin-bottom: 0.3rem;
}

.report-related-items .timeline-content .description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Link over hele item */
.report-related-items .report-related-timeline a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.report-related-items .report-related-timeline a:hover .timeline-content {
    background: #eef4fb;
}

/* Mobiel */
@media (max-width: 600px) {
    .report-related-items {
        padding: 1.2rem;
    }

    .report-related-items .report-related-timeline {
        margin-left: 10px;
        padding-left: 15px;
    }

    .report-related-items .timeline-marker {
        left: -25px;
        width: 12px;
        height: 12px;
    }

    .report-related-items .timeline-content {
        padding: 0.8rem 1rem;
    }

    /* live report responsive */
    .main-grid {
        display: block;
        margin-top: 2rem;
    }

    .report-live-report {
        margin: 2rem 1rem;
    }

    .top-report-grid {
        display: block;
    }

    .hero-image .container .hero-text h1 {
        font-size: 1.8rem !important;
    }

    .hero-image .container .hero-text {
        padding: 0 1rem;
    }
    
    .report-meta {
        margin-top: 1rem;
    }

    .report-related-items {
        margin-top: 1.5rem;
    }

    .report-related-items .report-related-timeline {
        margin-left: 10px;
        padding-left: 15px;
    }

    .report-meta p {
        font-size: 1.1rem;
    }
}

