/* Layered Scene Viewer */
.scene-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0a0a12;
}
.scene-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease;
}
.scene-layer.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    border: 1px dashed #333;
}
.scene-layer.placeholder::after {
    content: attr(data-label);
}
/* Event image shown inline in news area */
.event-image {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
}
.event-image-placeholder {
    width: 100%;
    height: 80px;
    background: #1a1a2e;
    border: 1px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
}
