/* MODAL GLOBAL */
.news-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* CONTENIDO */
.news-modal-content {
    width: 60%;
    max-height: 80%;
    overflow-y: auto;
    margin: 60px auto;
    padding: 25px;
    background: #0f0f0f;
    border: 3px solid #b99849; 
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0px 0px 30px rgba(255,165,0,0.3);
}

.news-close {
    float: right;
    font-size: 34px;
    cursor: pointer;
    color: #b99849;
    transition: 0.3s ease;
}
.news-close:hover {
    color: #fff;
    transform: scale(1.1);
}

/* IMAGEN */
.modal-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
    object-fit: cover;
}

/* TEXTO */
.modal-date {
    color: #b99849;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}
.news-modal-content p {
    line-height: 1.6;
}
