/* .financial-statements-section .card {
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.financial-statements-section .card:hover {
    transform: scale(1.03);
    background-color: #174cc2;
    color: white;
}
.financial-statements-section .card:hover .card-title,
.financial-statements-section .card:hover .card-subtitle,
.financial-statements-section .card:hover .card-text {
    color: white !important;
}
.financial-statements-section .card:hover .btn-primary {
    background-color: white;
     color: #0d6efd;
    border-color: white;
}
.financial-statements-section .card:hover .btn-primary:hover {
    background-color: #f8f9fa;
} */

/*==========================================================================*/
.modal-comunicado {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.65);
            z-index: 99999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            }

            .modal-comunicado-box {
            position: relative;
            background: #fff;
            max-width: 520px;
            width: 100%;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,.35);
            animation: modalZoom .35s ease;
            }

            .modal-comunicado-img {
            width: 100%;
            display: block;
            }

            .modal-comunicado-content {
            padding: 25px;
            text-align: center;
            }

            .modal-comunicado-content span {
            color: #2575fc;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            }

            .modal-comunicado-content h3 {
            margin: 10px 0;
            color: #1f2d3d;
            }

            .modal-comunicado-content p {
            color: #555;
            margin-bottom: 20px;
            }

            .modal-comunicado-btn {
            display: inline-block;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            }

            .modal-comunicado-close {
            position: absolute;
            right: 12px;
            top: 10px;
            border: none;
            background: #fff;
            color: #333;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            font-size: 24px;
            line-height: 30px;
            cursor: pointer;
            z-index: 2;
            }

            @keyframes modalZoom {
            from { transform: scale(.85); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
            }

            /*----------------convocatoria----------*/
            .convocatoria-card {
                background: #fff;
                border: 1px solid #e5eaf0;
                border-radius: 22px;
                padding: 24px;
                box-shadow: 0 6px 18px rgba(0,0,0,.04);
            }

            .convocatoria-top {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: 18px;
            }

            .convocatoria-top span {
                background: #f2f4f7;
                padding: 8px 12px;
                border-radius: 4px;
            }

            .convocatoria-top b {
                color: #fff;
                padding: 8px 14px;
                border-radius: 5px;
            }

            .convocatoria-num {
                font-weight: 700;
                color: #666;
            }

            .convocatoria-card h3 {
                color: #0057b8;
                font-weight: 800;
                font-size: 22px;
            }

            .convocatoria-lugar i {
                color: #0057b8;
            }

            .convocatoria-resultados {
                background: #f3f4f6;
                border-radius: 12px;
                padding: 20px;
                margin: 18px 0 28px;
            }

            .convocatoria-resultados h5 {
                font-size: 14px;
                font-weight: 800;
                margin-bottom: 14px;
            }

            .convocatoria-resultados a {
                display: block;
                color: #777;
                margin-bottom: 8px;
            }

            .convocatoria-btn {
                display: inline-block;
                background: #ffa726;
                color: #000;
                padding: 14px 28px;
                border-radius: 8px;
                font-weight: 700;
            }

            .convocatoria-controls {
                display: flex;
                justify-content: center;
                gap: 12px;
                margin-top: 25px;
            }

            .convocatoria-controls button {
                width: 44px;
                height: 44px;
                border: none;
                border-radius: 50%;
                background: #0057b8;
                color: #fff;
            }

            @media (max-width: 575px) {
                .convocatoria-card {
                    padding: 18px;
                }

                .convocatoria-card h3 {
                    font-size: 18px;
                }

                .convocatoria-btn {
                    width: 100%;
                    text-align: center;
                }
            }
            .convocatoria-resultados {
                background: #f3f4f6;
                border-radius: 12px;
                padding: 20px;
                margin: 18px 0 28px;

                max-height: 210px;
                overflow-y: auto;
            }
            .convocatoria-resultados::-webkit-scrollbar {
                width: 6px;
            }

            .convocatoria-resultados::-webkit-scrollbar-thumb {
                background: #c5c5c5;
                border-radius: 10px;
            }