/* ═══════════════════════════════════════════
   CAMERAS — unified retro chrome
   ═══════════════════════════════════════════ */

.cam-body {
    background: var(--blue);
    padding: var(--space-3);
}

.cam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
}

.cam-feed {
    border-radius: var(--radius-md);
    border: 3px solid var(--dark);
    box-shadow: var(--shadow-btn);
    overflow: hidden;
    position: relative;
    background: #cde;
    aspect-ratio: 4/3;
}

.cam-feed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cam-label {
    position: absolute;
    bottom: 6px;
    left: 8px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0 #000;
}

.cam-rec {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: red;
    border: 1.5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
    animation: blink 1s step-end infinite;
}
