/* CSS pour les effets TV sur les cartes d'articles */
.post-card-image-container.tv-effects {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: radial-gradient(circle at center, #444 0%, #111 100%);
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.post-card-image-container.tv-effects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 2;
    animation: scan 3s linear infinite;
}

.post-card-image-container.tv-effects .post-card-image {
    position: relative;
    z-index: 1;
    filter: contrast(1.1) brightness(0.9);
    transition: all 0.3s ease;
}

.post-card-image-container.tv-effects .post-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
    animation: glow 4s infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}
