/* public/css/noticias.css */

/* --- CONFIGURACIÓN GENERAL --- */
body {
    background-color: #f0f2f5;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #334155;
}

.text-brand {
    color: var(--brand-color) !important;
}

/* --- ESTRUCTURA DE CUADROS (TARJETAS INDEPENDIENTES) --- */
.news-main-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* --- TIPOGRAFÍA Y CONTENIDO EDITORIAL --- */
.article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.badge-cat {
    background-color: var(--brand-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 5px 12px;
}

.summary-quote {
    font-size: 1.25rem;
    border-left: 5px solid var(--brand-color);
    padding-left: 1.5rem;
    font-style: italic;
    color: #475569;
    margin: 2rem 0;
}

/* Cuadro de Conclusión Especial */
.conclusion-box {
    background-color: #f8fafc;
    border: 2px dashed var(--brand-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2.5rem;
}

/* --- BARRA SOCIAL (COMPARTIR + FAVORITOS) --- */
.social-share-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.share-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: none !important;
}

.btn-social-circle:hover {
    filter: brightness(1.1);
    transform: scale(1.1);
    color: white !important;
}

.btn-social-circle.btn-facebook {
    background-color: #1877F2 !important;
}

.btn-social-circle.btn-whatsapp {
    background-color: #25D366 !important;
}

.btn-social-circle.btn-x {
    background-color: #000000 !important;
}

.btn-social-circle.btn-linkedin {
    background-color: #0A66C2 !important;
}

.btn-social-circle.btn-telegram {
    background-color: #26A5E4 !important;
}

.divider-social {
    width: 1px;
    height: 25px;
    background-color: #dee2e6;
    margin: 0 5px;
}

@media (max-width: 576px) {
    .divider-social {
        display: none;
    }
    
    .btn-fav-star {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .share-icons {
        width: 100%;
        justify-content: space-between;
    }
}

/* BOTÓN FAVORITOS ACTUALIZADO (ESTRELLA) */
.btn-fav-star {
    border-radius: 50px;
    padding: 6px 22px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #dee2e6;
    background: white;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-fav-star:hover {
    border-color: #f1c40f;
    /* Color Dorado/Estrella */
    color: #f1c40f;
    background-color: #fef9e7;
    box-shadow: 0 2px 8px rgba(241, 196, 15, 0.15);
}

.btn-fav-star.active {
    background-color: #f1c40f;
    color: white;
    border-color: #f1c40f;
}

/* --- SIDEBAR: PESTAÑAS Y TAGS --- */
.sticky-sidebar {
    position: sticky;
    top: 110px;
}

/* Contenedor de Tags movido al Sidebar */
.sidebar-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.tag-badge {
    font-size: 0.65rem;
    background-color: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    font-weight: 600;
}

.tag-badge:hover {
    background-color: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

/* Pestañas Sidebar */
.nav-tabs-sidebar {
    border-bottom: 1px solid #e2e8f0;
    display: flex;
}

.nav-tabs-sidebar .nav-link {
    border: none;
    color: #94a3b8;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 12px;
    background: none;
    flex: 1;
}

.nav-tabs-sidebar .nav-link.active {
    color: var(--brand-color);
    border-bottom: 3px solid var(--brand-color);
    background-color: #ffffff;
}

.sidebar-item-small {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
}

.sidebar-item-small h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 0;
    flex: 1;
}

.sidebar-thumb-wrapper {
    position: relative;
    width: 90px;
    min-width: 90px;
    height: 60px;
}

.sidebar-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.sidebar-number-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #1e293b;
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    border: 2px solid white;
}