  /* Estilo del botón circular con la flecha exacta de tu captura */
    .style-circle-btn {
        width: 40px;
        height: 40px;
        background-color: #4db3b7; /* Color turquesa de tu captura */
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }
    
    .notice-card:hover .style-circle-btn {
        background-color: #005BAC; /* Cambio de color corporativo al pasar el cursor */
        transform: scale(1.05);
    }

    .notice-single-content.entry-content.text-secondary.fs-5.lh-base.pt-2 {
    max-width: 900px;
    margin: 0 auto;
} 

    /* Soporte responsivo para que la primera noticia se divida a la mitad en computadoras */
    @media (min-width: 768px) {
        .w-md-50 { width: 50% !important; }
        .flex-md-row { flex-direction: row !important; }
    }