.equipodecanal {

    @media (max-width: 720px) { 
        width: 100% !important;
    }

    tr {
        display: grid;
        grid-template-columns: 245px 230px 1fr;
        grid-auto-flow: dense;
        gap: 0;

        /* Tablet / Pantalla mediana */
        @media (max-width: 720px) {
            width: 100%; 
            grid-template-columns: 230px 1fr;
            gap: 1.5rem;
            margin-bottom: 5rem;

            td {
                /* Usamos order aquí también para asegurar el cambio visual de fila/columna */
                &:nth-child(1) { grid-column: 2; order: 2; } 
                &:nth-child(2) { grid-column: 1; order: 1; } 
                &:nth-child(3) { grid-column: 1 / -1; order: 3; } 
            }
        }

        /* Móvil */
        @media (max-width: 480px) {
            grid-template-columns: 1fr; 
            gap: 1rem;

            td {
                grid-column: 1 / -1!important;
                &:nth-child(1) { order: 2; }
                &:nth-child(2) { order: 1; }
                &:nth-child(3) { order: 3; }
            }
        }
    }

    td {
        display: block;
        box-sizing: border-box;
        width: auto !important; 
    }
}