
/* Estilo base para página VerNoticias */

.VerNoticias .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 12px;
}

.VerNoticias h2 {
    font-size: 2rem;
    color: #006699;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.VerNoticias img {
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.VerNoticias .heading-section {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.VerNoticias .heading-section strong {
    color: #006699;
}

.VerNoticias .btn-primary {
    background-color: #006699;
    border-color: #006699;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}

.VerNoticias .btn-primary:hover {
    background-color: #006699;
    border-color: #006699;
}

/* Responsivo */
@media (max-width: 768px) {
    .VerNoticias h2 {
        font-size: 1.6rem;
    }

    .VerNoticias .btn-primary {
        width: 100%;
        display: block;
        text-align: center;
    }
}
