/* SinEmbargo Lo Dice el Reportero CSS */
.lodice-reportero-widget {
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Header */
.reportero-header {
    text-align: left;
    margin-bottom: 20px;
}

.reportero-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

/* Carrusel Container */
.reportero-carousel-container {
    position: relative;
}

.reportero-carousel {
    margin: 0;
}

/* Items del carrusel */
.reportero-item {
    width: 100%;
    box-sizing: border-box;
}

/* Video */
.reportero-video {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.reportero-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Autor */
.reportero-author {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

/* Navegación */
.reportero-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.reportero-prev,
.reportero-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d5cacb;
    color: #d5cacb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reportero-prev:hover,
.reportero-next:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .reportero-video {
        height: 180px;
    }
    
    .reportero-title {
        font-size: 1.1rem;
    }
    
    .reportero-author {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .reportero-video {
        height: 160px;
    }
    
    .reportero-title {
        font-size: 1rem;
    }
}