/* css/noticia-detalle.css */

/* --- Cabecera y Título --- */
.article-header { margin-bottom: 2rem; }

.article-category {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary-deep-green);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-deep-green);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.95rem;
    color: var(--text-muted-custom);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.article-meta i { color: var(--accent-gold); margin-right: 0.5rem; }

/* --- Imagen Destacada --- */
.featured-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-medium);
}

/* --- Cuerpo del Texto --- */
.article-content { font-size: 1.1rem; line-height: 1.8; color: var(--text-dark); }
.article-content p { margin-bottom: 1.5rem; }
.article-content h3, .article-content h4 {
    color: var(--primary-deep-green);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Cita Destacada */
.article-blockquote {
    border-left: 5px solid var(--accent-gold);
    background-color: #f9fbf9;
    padding: 1.5rem 2rem;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--primary-deep-green);
    margin: 2rem 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* --- VIDEO CON LIGHTBOX (Estilos del botón Play) --- */
.video-trigger {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-trigger:hover { transform: translateY(-5px); }

.video-trigger img { transition: filter 0.3s ease; }

.video-trigger:hover img { filter: brightness(0.7); }

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 2.5rem;
    color: var(--primary-deep-green);
    margin-left: 5px; /* Ajuste óptico */
}

.video-trigger:hover .play-overlay {
    background-color: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-trigger:hover .play-overlay i { color: var(--primary-deep-green); }

/* --- GALERÍA GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-img {
    width: 100%; height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    transition: transform 0.3s ease, filter 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(0.9);
}

/* --- ADJUNTOS (Descargas) --- */
.attachments-box {
    background-color: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.attachments-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 10px;
}

.attachment-item {
    display: flex; align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text-dark);
}

.attachment-item:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-vibrant-green);
    transform: translateX(5px);
    color: var(--primary-deep-green);
}

.file-icon { font-size: 2rem; margin-right: 1rem; }
.file-info { display: flex; flex-direction: column; }
.file-name { font-weight: 600; }
.file-size { font-size: 0.8rem; color: var(--text-muted-custom); }

/* --- COMPARTIR --- */
.share-section {
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.share-buttons .btn-social {
    width: 45px; height: 45px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-right: 0.5rem;
    transition: all 0.3s ease; color: white; border: none;
}

.btn-whatsapp { background-color: #25D366; }
.btn-facebook { background-color: #1877F2; }
.btn-twitter { background-color: #1DA1F2; }
.btn-copy { background-color: var(--text-medium); }

.btn-social:hover { transform: translateY(-3px); opacity: 0.9; color: white; }

/* --- SIDEBAR --- */
.sidebar-sticky { position: sticky; top: 100px; }

.related-news-card {
    display: flex; gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.related-news-card img {
    width: 80px; height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.related-news-card h5 {
    font-size: 1rem; color: var(--primary-deep-green);
    margin-bottom: 0.3rem; line-height: 1.4; transition: color 0.3s;
}

.related-news-card:hover h5 { color: var(--primary-vibrant-green); }

/* Responsividad */
@media (max-width: 767.98px) {
    .article-title { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
